Jump to content

Pieter

Active Members
  • Posts

    89
  • Joined

  • Last visited

About Pieter

  • Birthday 05/05/1991

Profile Information

  • Location
    The Dutch-speaking part of Belgium, Europe
  • WWW
    http://www.pieterdedecker.be/

Pieter's Achievements

Wayfarer

Wayfarer (2/7)

0

Reputation

  1. Right now, this is what it looks like: With 'transparent', I mean something like this (manipulated screenshot): How can I accomplish this?
  2. This doesn't do what I thought it would do. I need the transparent part to have the color of the GUI. Is there a way to fetch the GUI background color string? (I don't want the window to look ugly if people don't use the default XP theme.)
  3. And changing the background color to whiteGUICtrlSetBkColor($status_icon, 0xFFFFFF)doesn't work either.
  4. Is there a way to hide the GUI from the task bar? I'm trying to make a popup window without a border, so I don't want the window to show up there.
  5. I want to display a GIF image (see attachment) that uses transparency. However, the transparent part of the image has been replaced with the color black. I tried to fix this like so (as described in the manual): $status_icon = GUICtrlCreatePic("img_src\iPodCALsync_aboutico.gif", 8, 8, 65, 64, BitOR($SS_NOTIFY,$WS_GROUP)) GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT)Unfortunately, this code doesn't fix the problem. Is there anything else I should try?
  6. You're absolutely right. Thanks!
  7. Darn. It appears to be an overlapping problem. I'll have to look into that myself.
  8. I tried to embed a picture in a GUI, but it didn't work. I don't see the picture. $options_logobg = GUICtrlCreatePic("C:\WINDOWS\system32\ntimage.gif", 0, 0, 433, 65, BitOR($SS_NOTIFY,$WS_GROUP)) I have verified that the picture exists (this picture is available on every Windows XP installation). Any idea what else could be wrong?
  9. You mean that the Scite GUI generator is Koda? I'm probably using an old version then.
  10. Update: I found it; http://www.autoitscript.com/fileman/users/lookfar/formdesign.html was the tool I was looking for.
  11. Where's that AutoIt GUI generator that was posted somewhere on the forums? I can't find it. I think the name started with a 'K'.
  12. Then somebody has to move this topic to the Idea section.
  13. The thing about the SplashImage is that you can easily bypass it using the Windows key. Try it. It's easy. Alternatively, you can use a screensaver that's protected with a password. Let your application fill that in automatically for you when you insert the USB stick again.
  14. Fixed. I declare my program hereby for finished!
  15. Simple example: $dir = StringTrimRight(@AutoItExe, 8) FileChangeDir($dir) FileInstall("chimes.wav", "chimes_sound.wav") SoundPlay("chimes_sound.wav") Sleep(6000) FileDelete("chimes_sound.wav")For some reason, it won't delete 'chimes_sound.wav'. Why? (Chimes.wav can of course be found in C:\Windows\Media)
×
×
  • Create New...