Jump to content

Welsh

Members
  • Posts

    14
  • Joined

  • Last visited

Everything posted by Welsh

  1. Well, I knew what I wanted to do, but not how to do it. But as soon as you said ClipPut I found ClipGet which helps me do exactly what I want to do! Thanks Alot
  2. Hey All, Just a quick question regarding FileWrite, I was wondering if it would be possible to use whatever I've just copied from a command window, and then using FileWrite, write that to a file (I guess flush out the copy/paste buffer to the file). Right now I have I have a script that is just copy and pasting to a notepad file from a command window but was wondering if I could skip that step and just write it directly to a file. Not sure if it is possible but thought I'd ask, did a quick search but didn't find anything. Thanks, Welsh
  3. well the script is a jumble and in parts right now.... Is there coding that pauses the script untill the button is pushed? Like right now im keeping my gui interace open with: GuiSetState() While GuiGetMsg() <> $GUI_EVENT_CLOSE WEnd i know what i want to do but im having trouble finding the exact words.
  4. Yet again another question but hey im learing. I got a GUI interface where the user enters: name, password, etc. Now as soon as u open the au3 the interace comes up and you enter the info. how do i set the button to that you when click it, it continues on with the rest of the script?
  5. thanks for the help, its grealty appreciated.
  6. hey, i got 2 radio buttons. im trying to put it so that if i select say slot1 that $x = 100 and $y = 200 and if you select slot 2 that $x = 300 and $y = 400. i think what ive done below is right but i have no clue. i remember some stuff about when i used vb like a year ago to make something for a project. im not sure what to put for when the radio button is selected right now i put true. thinking that if its no then its false but if it is then its true. below is the code ;the group with the 2 radio buttons GuiCtrlCreateGroup("Character Selection", 200, 55, 180, 140) $slot1 = GuiCtrlCreateRadio("Slot 1", 210, 75, 80, 20) $slot2 = GuiCtrlCreateRadio("Slot 2", 300, 75, 75, 20) ;the if...then statements(probally doesnt work) If $slot1 = true Then $x = 100, $y = 200 EndIf If $slot2 = true Then $x = 300, $y = 400 EndIf ;what i want the variables that changed to effect. MouseClick ("left", $x, $y, 1, 15) (does what i said above make any sense?)
  7. what the program do for diablo? clone hunter?
  8. thanks, after posting it i found it in the help file, but thanks anyway.
  9. hey, once again another quick question. I have an input box but i want to save what the user puts in the box as a variable. how would i do that?
  10. doesnt matter know worked around it. actually made it easier.
  11. yes, i just tried that and it works great. thanks for the help. But i cant get a script to run without compiling it to an exe.
  12. thank, the loop part worked great. but i cant get the secondary script to run i keep getting errors. so i compiled the secondary script to an exe. and that works. but when i try to run more than 1 secondary script they all run at once.
  13. hey, im new to using AutoIt and i just have 2 very quick questions. 1) how to make a section of script to loop a certain # of times. 2) how to make a main script run a secondary script.
×
×
  • Create New...