Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

Skin computer icon troubles ....


2 replies to this topic

Silverlay

Silverlay
  • Members
  • 68 posts

Posted 13 March 2005 - 12:58

On any dialog by default on the right-middle area is computer icon ...
it's set by the string @10550,10551;1;0;;0,128,128 on the main image area

where @10550 and 10551 it's resource id i think. 1 icon index
0 - huh.gif
0 - huh.gif
128,128 - icon size

where can i find this icon group or how can i add my icon there?

Bonum initium est dimidium facti

Perotin

Perotin
  • Full Members
  • 407 posts

Posted 14 March 2005 - 10:02

maybe you can get some info from the DialogSetInfo function help.

seems to be like the syntax used in IS 5.x long ago smile.gif

- parameters are separated by ';'
- parameter are:
1. name of bitmap(s), separated by ',' (internal like '@10550' or exteranl like 'SRCDIR ^ "bitmap.bmp"' - or it may be [SRCDIR]bitmap.bmp in the version you use ...)
2. '1' if there is a transparent color, '0' if not
3. '1' if there is a frame displayed around the bitmap, '0' if not
4. color of the frame (like '0,128,128' which is default; if not defined, do not write anything between the ;; separators)
5. transparent color (defalt is '255,0,255' )

this is in your case:
1: use internal bitmaps 10550 and 10551 (maybe different resolution?)
2: there is a transparent color
3: paint no frame
4: no frame color defined
5: use a blueish color (a dark cyan) as transparent color

does that make any sense?

Gruß / regards
Thomas

Silverlay

Silverlay
  • Members
  • 68 posts

Posted 14 March 2005 - 10:06

Thanks you were right. It's exactly you discribed ...
Bonum initium est dimidium facti