Jump to content

Tsongkie

Active Members
  • Posts

    35
  • Joined

  • Last visited

Tsongkie's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. any way you can do this with an ip check?
  2. Is there a way to find out and get the country of the user running my script?
  3. I'm sure this has been done before but I'm trying to extract the results from wordpress: http://en.search.wordpress.com/?q=philippines I'm trying to extract the results on the first page and the 2nd page. Help?
  4. why wouldn't it work in x64?
  5. The error that Im getting is cannot find aut2exe.
  6. #Region;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_icon=..\..\..\Desktop\free_icons\Garfield2.ico #EndRegion;**** Directives created by AutoIt3Wrapper_GUI **** #RequireAdmin ShellExecute("Aut2exe.exe",'/in "/BIN/prog.au3" /out "../THISISnewprogram.exe" /comp 2 /pack /icon "/BIN/icon.ico" /Bin "/BIN/AutoItSC.BIN" ',@ScriptDir) Ok whats wrong with this code? The actual code compiles in windows xp but not in windows vista. Thanks autoit Gurus
  7. Or Maybe there's an IeGetobjectbytype?
  8. Hi, I'm working with different forms on different web pages, and each form has an edit box. Now can I use _IEFormElementGetCollection to get a handle on that editbox? the problem is I can't use the index instance option for every form has a diferent index for that editbox.. So basically i need to identify the editbox handle in that form. Thanks a lot in advance
  9. here's what my software does: it compiles on the end user's system, i added aut2exe,upx andautoitsc.bin and make it compile on their end. Works great in windows xp but when it is trying to compile under a vista os, it doesnt produce the final executable. I'm thinking it might be a problem with the compiler or ShellExecute in Vista. Any ideas?
  10. I see. Well the question is would the compiler work using vista 64? Or do you still need to use the 64bit compiler? Because the probem I am having is that my current programs does not compile under vista.
  11. Do you use a different command line if you use windows vista 64 to compile your au3 scripts?
  12. Say I have a file c:\text.txt and I just want text.xt without the path, how do i do this? and the same with http://www.domain.com/abc.txt I just want to extract abc.text
  13. Ok is there a way to: say i saved a text file as a resource or included it using fileinstall() in my 1st program and i want my 2nd program to edit the content of that text file and update the 1st program with the new text file. Is there a way?
  14. Case $Button1 $addfile = FileOpenDialog("Add A File","","All (*.*)") if $addfile <> 1 Then _GUICtrlListBox_AddString ($List1,$addfile) EndIf Case $Button2 $DATA = "" $NUM = _GUICtrlListBox_GetCount($List1)-1 For $INDEX = 0 To $NUM $DATA &= _GUICtrlListBox_GetText($List1,$INDEX) & @CRLF Next $bboy= FileOpen("bin\bboy.txt",2) FileWrite($bboy,$DATA) FileClose($bboy) That's just it..
  15. yes the bin directory exists..
×
×
  • Create New...