
Rasmus
Members-
Posts
13 -
Joined
-
Last visited
Everything posted by Rasmus
-
man, dont anyone know how to make the background color tranparent?
-
i have same problem, my "text" background on my selectable radio's is just the normal background color, i need it to be transparent, please help.
-
Background pic stopping combo box working
Rasmus replied to vickerps's topic in AutoIt GUI Help and Support
i think i have the same problem, i have a GUI with some options, and a Background picture, but the picture blocks/disabble's the buttons/radio's/ up/down what can i change ? i have this script: #include <GuiConstants.au3> $GuiHeight = 297 $GuiWidth = 125 ; GUI GuiCreate("Shutdown", $Guiwidth,$GuiHeight,-1,-1,$WS_OVERLAPPED) GuiSetIcon(@SystemDir & "\power.ico", 0) GUISetBkColor(999999) GUICtrlCreatePic (@SystemDir & "\bg.BMP", 0, 0, 125, 277) ; GROUP WITH RADIO BUTTONS GuiCtrlCreateGroup("Options", 5, 5, 110, 120) $shutdown = GuiCtrlCreateRadio("Shutdown", 15, 20, 80) $standby = GuiCtrlCreateRadio("Standby", 15, 40, 80) $logoff = GuiCtrlCreateRadio("Log off", 15, 60, 80) $hibernate = GuiCtrlCreateRadio("Hibernate", 15, 80, 80) $reboot = GuiCtrlCreateRadio("Reboot", 15, 100, 80) GUICtrlCreateGroup ("",-99,-99,1,1) ;close group ;clock groupe GuiCtrlCreateGroup("Timing", 5, 135, 110, 65) ; UPDOWN GuiCtrlCreateLabel("Hours Minutes", 20, 150) $hours = GuiCtrlCreateInput("0", 20, 167, 40, 20) GuiCtrlCreateUpDown(-1) $minutes = GuiCtrlCreateInput("0", 65, 167, 40, 20) GuiCtrlCreateUpDown(-1) ; BUTTON $ok = GuiCtrlCreateButton("OK", 5, 210, 55, 30) $cancel = GuiCtrlCreateButton("Cancel", 60, 210, 55, 30) $minimize = GUICtrlCreateButton("Minimize", 5, 240, 110, 20) ; Variabler $kommando = 0 $tid = 0 ; GUI MESSAGE LOOP GuiSetState() While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = $cancel ExitLoop Case $msg = $minimize GUISetState(@SW_MINIMIZE) Case $msg = $shutdown And BitAND(GUICtrlRead($shutdown), $GUI_CHECKED) = $GUI_CHECKED $kommando = 5 Case $msg = $standby And BitAND(GUICtrlRead($standby), $GUI_CHECKED) = $GUI_CHECKED $kommando = 32 Case $msg = $logoff And BitAND(GUICtrlRead($logoff), $GUI_CHECKED) = $GUI_CHECKED $kommando = 4 Case $msg = $hibernate And BitAND(GUICtrlRead($hibernate), $GUI_CHECKED) = $GUI_CHECKED $kommando = 64 Case $msg = $reboot And BitAND(GUICtrlRead($reboot), $GUI_CHECKED) = $GUI_CHECKED $kommando = 6 Case $msg = $ok SplashTextOn("Prepare..", "Window will hide in 3 seconds. made by. puls and Jakob", 220, 45, 0, 0) sleep(1000) SplashOff() SplashTextOn("Prepare..", "Window will hide in 2 seconds. made by. puls and Jakob", 220, 45, 0, 0) sleep(1000) SplashOff() SplashTextOn("Prepare..", "Window will hide in 1 seconds. made by. puls and Jakob", 220, 45, 0, 0) sleep(1000) SplashOff() GUISetState(@SW_MINIMIZE) $tid = GUICtrlRead($hours) * 1000 * 60 * 60 $tid = $tid + GUICtrlRead($minutes) * 1000 * 60 sleep($tid) Shutdown($kommando) EndSelect WEnd -
but it looks like this now, is there anyway to make all the "gray" color to tranparent? is says: Picture controls have always a transparent color. what is this transparent color code? , oh and btw, i cant press any of the buttons now, why that ?
-
ok, but wich code shall i use to set a picture to backgruond in my GUI / window ?
-
will it all be taken together if i just make img path and then combine to exe?
-
i have made a little application, and i wont a splash image to pop up, at the start. but how do i insert a image to the script without have a picture file located on my computer, i mean so it still only have to be an exe and no extra files. the splash pics, 1st. 2nd. the code for now: #include <GuiConstants.au3> ; GUI GuiCreate("Shutdown", 125, 277,-1,-1,$WS_OVERLAPPED) GuiSetIcon(@SystemDir & "\power.ico", 0) ; GROUP WITH RADIO BUTTONS GuiCtrlCreateGroup("Options", 5, 5, 110, 120) $shutdown = GuiCtrlCreateRadio("Shutdown", 15, 20, 80) $standby = GuiCtrlCreateRadio("Standby", 15, 40, 80) $logoff = GuiCtrlCreateRadio("Log off", 15, 60, 80) $hibernate = GuiCtrlCreateRadio("Hibernate", 15, 80, 80) $reboot = GuiCtrlCreateRadio("Reboot", 15, 100, 80) GUICtrlCreateGroup ("",-99,-99,1,1) ;close group ;clock groupe GuiCtrlCreateGroup("Timing", 5, 135, 110, 65) ; UPDOWN GuiCtrlCreateLabel("Hours Minutes", 20, 150) $hours = GuiCtrlCreateInput("0", 20, 167, 40, 20) GuiCtrlCreateUpDown(-1) $minutes = GuiCtrlCreateInput("0", 65, 167, 40, 20) GuiCtrlCreateUpDown(-1) ; BUTTON $ok = GuiCtrlCreateButton("OK", 5, 210, 55, 30) $cancel = GuiCtrlCreateButton("Cancel", 60, 210, 55, 30) ; Variabler $kommando = 0 $tid = 0 ; GUI MESSAGE LOOP GuiSetState() While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = $cancel ExitLoop Case $msg = $shutdown And BitAND(GUICtrlRead($shutdown), $GUI_CHECKED) = $GUI_CHECKED $kommando = 5 Case $msg = $standby And BitAND(GUICtrlRead($standby), $GUI_CHECKED) = $GUI_CHECKED $kommando = 36 Case $msg = $logoff And BitAND(GUICtrlRead($logoff), $GUI_CHECKED) = $GUI_CHECKED $kommando = 4 Case $msg = $hibernate And BitAND(GUICtrlRead($hibernate), $GUI_CHECKED) = $GUI_CHECKED $kommando = 68 Case $msg = $reboot And BitAND(GUICtrlRead($reboot), $GUI_CHECKED) = $GUI_CHECKED $kommando = 6 Case $msg = $ok $tid = GUICtrlRead($hours) * 1000 * 60 * 60 $tid = $tid + GUICtrlRead($minutes) * 1000 * 60 sleep($tid) Shutdown($kommando) EndSelect WEnd
-
worked for me, just could'nt sign in, but i dont guess thats a probem your app makes ;D thx usefull, and unpointless
-
Runescape smart-autominer help..
Rasmus replied to Cadeon's topic in AutoIt General Help and Support
can i please try your bots? ;D it sound too good to be true, i've been seaching alldaylong just to find working bots. i'll pm you too, ;D -
wow ty so much for this extreamly great work! may i add a idear? im not that good au3 programmer yet so i dont know how to do ;D i just dont understand how drop thingy works. ;( but this HYBERMINER v2.2 could it just be a part of a final rs bot software? i mean when you run "the ultimate final" what ever it could come with a list: what do you wanna "bot" [auto mine] [auto fight] [auto fish] [auto wood cut] if you would do that you dosent need to do so much just cupy the script and insert Menu>Options>wood fidner>yew/willow/normal whaat ever or menu Menu>options>monsterfinder>goblin/chicken/cow/blackknigt what ever and Menu>options>monster's drops taker>colo by scr or what ever so i can pikc up the etc. gold dropped by choosen monster but this is the best rs bot software i ever seen plz also add: login script or auto (non lougout) it could be random click within 1min from last click or sdometing plz pm if you need any help or anything. but i think that you ar the best of us
-
i will try to make it self, its going to be an updated version of an older diablo II lod bot
-
hello, i have a ini document and i want to send some of the information in it to some where i can find it on the internet (where only i can see it) how do i do? plz come witha n example. i need to get the Reg_Key send to some cind of server. how do i do? (it have to be an extern script that i can set into another) and if key is accepted i will run the program) i need to get the Reg_Key send to some cind of server. how do i do? (it have to be an extern script that i can set into another) and if key is accepted i will run the program)
-
hi, im making a bot, dont worry not an E-mail spam F**ker bot. just a game bot. but the game (java)screen is moving so i cant just click same spot all the time, cus the wanted stop moves. the spot haves a color, and i knew that i can make it clicking on a wanted color i just cant found out how it will be in the script plz help me. this is the script (UNTIL NOW)