Jump to content

BlackEvil

Active Members
  • Posts

    29
  • Joined

  • Last visited

About BlackEvil

  • Birthday June 22

BlackEvil's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. I just realized by seeing my own question previously that my hobby project is lying untouched for quite some time and I have to make this functionality my own... 😋😒
  2. How do I pause and restart the scrolling? I am trying to implement a tele promptor using this UDF.
  3. Hi All, Is there any UDF available for converting RAW image format to PNG format? Thanks BlackEvil
  4. Hi there ... Does AutoIT support Windows CE 6 applications and Flash lite? Where can I find some samples? Does any body know any other automation tools that support Wndows CE and flash lite for an embedded project? Thanks BlackEvil
  5. Wow .. that's pretty fast! Thank you M23!
  6. Hi there.. I want to work on a image review tool. The basic idea of this tool is to review some GUI applications (developed in any language) and give comments to the developer with reference to the part of the GUI, I am making comment on. The final report with comments needs to be in MS Excel. My idea is first run the application under review and get the GUI. Then using AutoIT place a transperant layer over it (could be on whole of the desktop size also) then mark a rectangle with a cross mouse icon on interested area, get the image of that area from the GUI beneath the transparent layer. After that get a text box or something where I can put down my comment about the croped area. Finally save those comments and croped images in excel file. My questions are: 1. Is it possible to get a transparent layer over the GUI using Autoit? 2. Where to find some examples to start with? 3. How do I get the marked image from the desktop? Thanks in advance
  7. Wow! Thanks ... this was what I was looking for.
  8. Hi I would like to have a script which will pull out data from the Outlook calendar (I need to get appointment/meeting list from the calendar) and show in a semitransparent window in decent manner (possibly with always on top [optional ofcourse]) Can anybody point me where to start?
  9. yes pops up the message for seccond ip here MsgBox(0, "Error", "Failed to upload " & $SourcePath & " at \\" & $server)
  10. I am doing a script for FTP to different IP's using AutoIT I may have multiple files and ofcource multiple IPS I have done this script and it always fails to put file into the second IP. Where I am wrong? Func TransferFile() GetGuiData() $Open = _FTP_Open('MyFTP') For $Idx = 0 To $ipCount - 1 Local $server = $IPlist[$Idx] $Conn = _FTP_Connect($Open, $server, $UserName, $Password, 1) ConsoleWrite("Total Files - " & $FileCount & @CRLF) If Not @error Then ConsoleWrite("Current IP is - " & $server & @CRLF) For $Idy = 0 To $FileCount - 1 ConsoleWrite("Current Source file is - " & $SourceFile[$Idy] & @CRLF) _FTP_FileDelete($Conn, $DestinationPath & $SourceFile[$Idy]) $Ftpp = _FTP_FilePut($Conn, $SourcePath[$Idy], $DestinationPath & $SourceFile[$Idy]) $percent = _FTP_ProgressUpload($Conn, $SourcePath[$Idy], $DestinationPath) ConsoleWrite('$Ftpp = ' & $Ftpp & @CRLF) If Not $Ftpp Then ConsoleWrite("Failed to upload " & $SourcePath & " at \\" & $server & @CRLF) MsgBox(0, "Error", "Failed to upload " & $SourcePath & " at \\" & $server) $Ftpc = _FTP_Close($Open) ConsoleWrite("_FTP_Close" & @CRLF) ExitLoop EndIf Next $Ftpc = _FTP_Close($Open) if $Ftpc Then ConsoleWrite("Close current FTP @ - " & $IPlist[$Idx] & @CRLF) Else MsgBox(0, "Error", "Connection Error at \\" & $server) $Ftpc = _FTP_Close($Open) ContinueLoop EndIf Next EndFunc ;==>TransferFile
  11. any help for me?
  12. Solved the second question: (parent child issue) by giving the main gui handle to About window.
  13. @billo. Thank you for the help extended. I updated the code sections like this Func On_Exit() $msg = $GUI_EVENT_CLOSE EndFunc ;==>On_Exit and While 1 Select Case $msg = $GUI_EVENT_CLOSE OR $msg = $hButton ;Exit ExitLoop EndSelect $msg = GUIGetMsg() WEnd GUIDelete($hGUI) GUIRegisterMsg($WM_NCHITTEST, "") It works fine. But now i notice another issue. I have the same progress bar as in about window in main GUI. It does not appear if i view "about" and then close it. Everything else works fine. @zorphnog: thanks for the update. Do i have to Unregister the $WM_NCHITTEST message when you exit the About? I added it after GUI delete. But my issue doesnot solve. My second question is : I need the about window blocking. how to do it?
×
×
  • Create New...