Jump to content

Arnie

Members
  • Posts

    16
  • Joined

  • Last visited

Profile Information

  • Location
    Netherlands

Arnie's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Hi, Anyone knows how to remove an autoit.exe? Vista keeps telling me that I am not allowed to delete, although I am the administrator, and properties of the exe are set accordingly. Thanks in advance, Arnie
  2. Hi all, Is there a way to capture/grab the last used URL? TIA Arnie
  3. Hi all, I want to send the full contents of my clipboard: 'test', but I only get the first caracter 't' This is what I did. Dim $clip $clip=GetClip() Send("{"& $clip &"}") TIA Arnie
  4. How can I disable or hide the close button of a window. TIA Arnie
  5. Why not elegant, it is just what I want. The way you recall (ctrl-#) limits the number of scripts to 9. I use the Zipscript (freeware) plugin instead. This plugin fires a script asa the field is left (and the contents has changed). In my filemaker script I have to give focus to the field before I trigger AutoIt. The last two lines of my AutoIt script enters a number in the FMP field and tabs to the next field. The FMP script will be triggered accordingly. What we realy need is a piece of code here like the VBS code that opens the FMP script. Thx. Arnie
  6. Run("notepad") WinWait("Untitled - Notepad") $calcHwnd = WinGetHandle("Untitled - Notepad") Global Const $SC_CLOSE = 0xF060 Global Const $SC_MINIMIZE = 0xF020 Global Const $SC_MAXIMIZE = 0xF030; $menu = DllCall("user32.dll","hwnd","GetSystemMenu","hwnd", $calcHwnd, "int",0) DllCall("user32.dll", "int", "RemoveMenu", "hwnd", $menu[0] , "int", $SC_MINIMIZE, "int", 0x0) DllCall("user32.dll", "int", "RemoveMenu", "hwnd", $menu[0] , "int", $SC_MAXIMIZE, "int", 0x0) DllCall("user32.dll", "int", "RemoveMenu", "hwnd", $menu[0] , "int", $SC_CLOSE, "int", 0x0) I can't get @CyberSlug's above code to work. All buttons are functional.
  7. Dunno if it is possible to disable the close button of a window, e.g. from notepad.
  8. Sorry it does'nt work I get an error (exitcode: 0). I hope you or someone else can get this code to work because it is rather important for me to get some kind of interaction after FMP triggers an AutoIt script. I start with a (first) FMP script which fires an AutoIt script and when finished AutoIt will ''tell" FMP it can continue with the (second) FMP script. TIA
  9. IS it possible to run a filemaker script by AutoIt, like VBScript can?
  10. Thanks a lot randallc.
  11. Thank you very much Mhz, this one works like a charm.
  12. Thanks MHz.Unfortunately this does'nt work either. I get (translated) message: can't find documentpath. Anymore suggestions?
  13. The following vb script: I want to do the same with AutoIt.My code up till now is: How do I call the ''ShowMessage'' script in FMP? Or can I use the VBS in AutoIt. TIA
  14. Thanks for the help guys (BTW: great response). Next code opens a new Word document, not the text.doc.: I used also: @DesktopCommonDir Anyone?
  15. OK, now Winword is booting, and I can boot the doc if it is located in C:\My code: Run("C:\program files\microsoft office\office10\winword.exe C:\textexample.doc") Question is what is the computer/user - independent path to the desktop?
×
×
  • Create New...