Jump to content

Rapide

Members
  • Posts

    10
  • Joined

  • Last visited

Everything posted by Rapide

  1. Is there any other way? Making GUI sounds like a long and even slightly difficult alternative for new people like me. As I said earlier, I am already running several scripts directly and don't want to terminate it, and start over everything again. I wonder if its possible to make another script to get Consolewrite() value or a variable value of the previous running script?
  2. Is there any way to see Consolewrite output when script is opened directly and not executed from editor? Curious. Edit: I am running a script and I want to see the consolewrite output of it (without terminating it ofcourse)😱
  3. Removed filepath and site on purpose, the downloading part (inetget) works but the main thing I want to know - how to get the source of flash file on a URL site before inetget
  4. this is the code but it only works when the flash file itself is mentioned further in the URL and thats little slow procedure so i am seeking for an alternative as said above HotKeySet("{printscreen}","myexit") #include <InetConstants.au3> #include <MsgBoxConstants.au3> #include <WinAPIFiles.au3> example1() Func example1() Local $sFilePath = " " Local $hDownload = InetGet(' ', $sFilePath, $INET_FORCERELOAD, $INET_DOWNLOADBACKGROUND) Do Sleep(250) Until InetGetInfo($hDownload, $INET_DOWNLOADCOMPLETE) EndFunc GUI:
  5. I am another noob at autoit and I dont understand how to detect plus download the embedded flash file on a site. So this is how my program will work- I give the URL and even download location as inputs, and download the flash/swf file as output. I want the program to detect the flash file in the whole site automatically by itself. My friend told me I will have to use Inetget and stringregexp, I understood Inetget but not stringregexp so I need a simple example program, thank you😃
  6. How to generate single digit numbers without repeating? I have wrote this much so far : $min=1 $max=9 $result = Consolewrite(Random($min,$max,1)) $temp = $result I do not know what to do next. To be more specific, the numbers should repeat, but should not repeat (same number) one after the other. The new result (number) should always be not equal to previous result. Example: 1 2 9 9 ❌ 1 9 2 9 ✔️ Thank you^^
  7. Edit: I hope you get my question and problem this time.*
  8. My script is very long and full of automations like clicks, drags, etc. And I use it for an online game in Chrome, so when the automations happen, I want it to stay in the front always even after clicks,drags,etc and stuff and not go hide behind the Chrome in the background, I hope you get my question and answer this time. Is there any way to keep the script editor open (foreground) until I press the hotkey or something? Regards
  9. My script includes some actions like clicking out of the window and lot of others, obviously so i just wanted the window to be overlapped resting somewhere in the corner
  10. Basically I want to make/see "logs" (basically consolewrite outputs) but the window gets hidden everytime, how to keep SciTE editor overlapped, is it possible? Regards
×
×
  • Create New...