Jump to content

Dtvscrotes

Active Members
  • Posts

    35
  • Joined

  • Last visited

Dtvscrotes's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. I currently have a Listview in my GUI and when i click on one of the Listviewitems I hit a button called Display and a picture is displayed corresponding with the listview item. I would like to remove the display button from the situation so when I just click on the Listviewitem in my GUI it displays the pic right away. Also the listviewitems are names of files on my pc. I would also like to have the file opened when the listviewitem is doubleclicked. I already have an openfile button that opens the file but a double click feature would be better. Thanks. Im looking into this stuff right now #include <GuiListView.au3> I'm thinking thats the right place to look in the help file.
  2. Thanks Yashied. Method 2 worked perfect for me. I may try method 1 later and see what I like better even though method 2 was perfect.
  3. I am moving 700mb .avi video files with FileMove. Currently that part of my script goes msgbox says please wait for a msg filemove complete Filemove - moves the avi Msgbox File Move Complete. It takes around 15 - 20 seconds for the second popup to occur. Is there any way to use a progressbar to track how long it will take to move the avi file? Like when you copy paste files in windows it shows the progress bar.
  4. I solved my problem and this is how it works. $counter = 0 Dim $array[3] = ["first","second","third"] Do msgbox(1,"Hello","This should be the " & $array[$counter] & " message") $counter = $counter+1 Until $counter = 3 If i make the array contain more variables then this code could count messages all day and it works for my situation thanks guys for the comments.
  5. cool 2 replies in like 5 minutes. thanks.
  6. I need some code that will loop with do and until. I want the variable inside of do and until to change each loop. Example. $1 = 1 $2 = 2 $endloop = 0 do msgbox(1,"A","1 +" & $1 & "=" & 1+$1) $endloop = $endloop + 1 until $endloop = 2 When i run this code a msgbox appears saying 1+1=1. The second time around(in the loop) I want it to use $2 instead of $1. Then it would repeat but with a new msgbox saying 1+2 = 3. I could go on with 1+3=4 etc. I use the $endloop variable to end the loop once it loops for the second time. I want $2 to be used the second time around. I was thinking maybe like a rotating variable that each time it is called upon it would change to a second state. I looked into arrays and couldn't figure how they work but that may be the solution. I know i could type out the second loop and not use do/until but in my case I may want this to go through the process 1000 times or more so I don't want to copy/paste the msgbox line 1000 times and changing the variable each line.
  7. So I want my do until to continue until i hit escape or anyother key can u give me an example.
  8. $count= 0 do send("yes") sleep(5000) $count+ 1 = $count until $count=5oÝ÷ Ù«­¢+ØÀÌØí½Õ¹ÐôÀ)¼(%͹ ÅÕ½ÐíåÌÅÕ½Ðì¤(%ͱÀ ÔÀÀÀ¤($ÀÌØí½Õ¹ÐôÀÌØí½Õ¹Ð¬Ä)չѥ°ÀÌØí½Õ¹ÐôÔ Both these dont work it should start with $count as 0 then add 1 until it equals 5 reply a solution plz
  9. $age=Inputbox("age","how old r u") msgbox(4096,"","u are" $age) why doesnt this work. can someone tell me how to do this. i dont want it to right " u are" in note pad i like msgbox better.
  10. This is a bit closea but still not sure hotkeyset("r","pressr") While 1 Sleep(10) WEnd func pressr() send ("a"); active untitled notepad sleep(50) ;<-------------------------------------------------this helps alot(add sleep, send/sleep/controlsend) AutoItSetOption("WinTitleMatchMode", 4) $handle = WinGetHandle("classname=Notepad", "") ControlSend($handle, "", "Edit1", "logger") Endfunc
  11. I'm trying to set it up so i can type in two separate programs at the same time. hotkeyset("r","pressr") func pressr() send ("r"); active untitled notepad controlsend("Different-notepad","","edit1","r") endfunc thats what i got but it doesnt work for me plz help
  12. i want autoit to do something if i press a keycombo or just a key. I cant figure out hotkeyset. $click= ("{alt}+{d}") If $click _ispressed then msgbox(0,"title","you pressed alt d ") i want to do something like that
  13. Malu your thermo prime sript ended up being abunch of messed up letters in SCite and i dont know how to fix that. Could you Just copy paste script??? Could you help??
×
×
  • Create New...