Jump to content

Letis

Members
  • Posts

    9
  • Joined

  • Last visited

Everything posted by Letis

  1. Hi I have a background with external picture $picture = GUICtrlCreatePic("C\:background.jpg",0,0,210,80) Is there any way how to give into background the picture from internet? example: something like this doesnt work why? $picture = GUICtrlCreatePic("http://www.autoitscript.com/background.jpg",0,0,210,80)
  2. thanks to all
  3. Hi i have one question: How can i delete tray icon of my script(I dont want this all in tray...
  4. man i am trying to do it but it is hard for me.. there is my NOT complete script sleep(2000) PixelSearch(886,150,887,150,0xFFFFFF) if @error then do sleep(20000) PixelSearch(886,150,887,150,0xFFFFFF)until Here i need to specify pixel colour but i dont know how.. EndIf MsgBox(0,"Download","Download complete!")Please help i am not genius :-D
  5. oh i am absolute beginner and i dont know how to use it.. please write me this script it shouldnt be hard..
  6. where can i find it?
  7. Hello i want to do easy program what turn down the PC if downloading is complete..(i use opera browser) there is screen and my plan:D http://img444.imageshack.us/img444/8017/operasb6.jpg so if the file is downloading in the pixel X2 is colour other from the colour in pixel X1.. in X1 is colour ffffff and my plan is that.. it will search in the point X2 for colour FFFFFF (this colour is here when the file is downloaded..-you can see it in first file) And if that pixel get this colour(file is downloaded)turn down the computer.. ..the pixel in what i want to search is X: 741 Y: 150 and please give me an Au3 file not exe:) many thx if anybody help me.. ..Sorry for my english
  8. thx men:) i am noob in auto it:D i am learning it now...
  9. Hello i did program which click right or left button on mouse - x-times - you write number of clicks into a white space.. i dont know why it has got problem with -> If $nMsg = $right2 Then If ^ ERROR there is the code.. #include <GUIConstants.au3> HotKeySet("{F11}", "exit2") GUICreate("Clicker", 210, 80) GUISetBkColor(0xF52412) $Label = GUICtrlCreateLabel("Write a number of clicks->click on a button", 5, 10) $left2 = GUICtrlCreateButton("Left", 10, 50, 50, 20) $right2 = GUICtrlCreateButton("Right", 80, 50, 50, 20) $space2 = GUICtrlCreateInput("", 82, 25, 45, 21) $exit = GUICtrlCreateButton("Exit", 150, 50, 50, 20) GUISetState() ; display the GUI $inp = 50 While 1 If $nMsg = $right2 Then $i = 0 $inp = GUICtrlRead($space2) If $inp >= 1 Then Do Sleep(300) MouseClick("right") $i = $i + 1 Until $i = $inp MsgBox(0, "Clicker", " Complete") EndIf EndIf If $nMsg = $left2 Then $i = 0 $inp = GUICtrlRead($space2) If $inp >= 1 Then Do Sleep(300) MouseClick("left") $i = $i + 1 Until $i = $inp MsgBox(0, "Clicker", "Complete") EndIf EndIf WEnd Func exit2 () Exit EndFunc Can you help me?
×
×
  • Create New...