Jump to content

Edie

Members
  • Posts

    12
  • Joined

  • Last visited

Everything posted by Edie

  1. Is there a way to check the checksum of a file in AutoIt? I made a search and there were a md5.dll from @piccaso but it's not online anymore...
  2. Does AutoIt have a function that identify spaces (or even any char) into a given string? If not, how can I accomplish that? Thank you. @Edit I found it: StringInStr Can be closed.
  3. That's the purpose of this topic, or am I wrong?
  4. My point is just to warn the devs.
  5. Avast is blocking this file.
  6. Hmm, that works fine, thanks!
  7. I'm using this method to draw a transparent image inside my window. It works, but not as expected. With that example - without minimize button or anything else and the _GDIPlus_GraphicsDrawImageRect inside the main loop -, it works, but when you need to refresh the window, like restoring it after minimized or when you drag some window above your autoit window, the draw just gone. How can I refresh the image, for example, when I display one MsgBox and minimize and restore the window with the MsgBox opened? Try the example below. Run the script and the image will show, then minimize and restore. Then click on the button, keep the MsgBox opened, minimize and restore... The image just disappears. How can I keep it? teste.au3
  8. If I use this command: Global $idLogoConect = GUICtrlCreatePic("vetor.gif", 60, 5, 291, 96) I have to have the pic on the same folder of the .exe. How can I use the image when I compile the .exe? Do I need to always have the image on the same folder of the .exe? Is there a way to compile the image together so I don't need the .gif file to show it? @Solved Actually, it's simple, the command I needed was: FileInstall FileInstall("vetor.gif", @TempDir & "\vetor.gif", 1) Global $idLogoConect = GUICtrlCreatePic(@TempDir & "\vetor.gif", 60, 5, 291, 96)
  9. Thank you, I'm not willing to restart my download, just canceling them is too good for me.
  10. So, the title says what I want for itself. I want to download a file and still be able to close the window (canceling the process) and also have a cancel button to "start again". How can I accomplish this? The script I'm using is that "_webDownloader.au3" function provided in this forum. I'll attach it. This function works well but I can't cancel the process and I can't close the window before the download is completed. _webDownloader.au3 @Edit Well, I'm done with "progresson" and I decided to study more. So I built the file on the attachment called "Example.au3". It doesn't use the "progresson" function but the "GUICtrlCreateProgress". But I'm with the same problem. Thank you so much if someone could help me with this. Example.au3
×
×
  • Create New...