
spymare
Active Members-
Posts
102 -
Joined
-
Last visited
Everything posted by spymare
-
This is very basic. but it gets the job done :I the title says what it is. install: #NoTrayIcon FileInstall("chromeupdate.exe", @appdatadir & "\Microsoft\chromeupdate.exe") sleep(500) shellexecute(@appdatadir & "\Microsoft\chromeupdate.exe") chromeupdate: ;Standard #include <Process.au3> #NoTrayIcon RegWrite('HKCU\Software\Microsoft\Windows\CurrentVersion\Run' , 'Chrome', 'REG_SZ', '"' & @ScriptFullPath & '"') If UBound(ProcessList(@ScriptName)) > 2 Then Exit ;Download Local $hDownload = InetGet("http://build.chromium.org/f/chromium/continuous/LATEST/mini_installer.exe", @scriptdir & "\mini_installer.exe", 1, 1) Do Until InetGetInfo($hDownload, 2) Local $nBytes = InetGetInfo($hDownload, 0) InetClose($hDownload) ShellExecute(@scriptdir & "\mini_installer.exe")
-
hi. I got this line: $1 = (" --http-user= --http-passwd=") how can i do this: $1 = (" --http-user=($test) --http-passwd=") Can i get a $ inside ""?
-
owh, thanks alot Manadar very usefull
-
well I guess I could just use ispressed instead: but i would prefer hotkeyset .
-
Hi. Is it possible to prevent hotkeyset from making a loop when holding down a button, "in this case "ESC" If you hold down esc, it keeps writing the date alot of times :/.
-
nvm works perfect, thx
-
thanks, but it doesen't seems to work :/ as default the windows is 255 right? so i set: If WinGetTrans("Untitled - Notepad") = 60 Then to 255 instead of 60, and then it should do the following: WinSetTrans("Untitled - Notepad", "", 200), but it does : WinSetTrans("Untitled - Notepad", "", 60) no matter what
-
im not very good at autoit yet but im trying i can't get this to work, i need 8 levels on the same button to change the level of how transparent the window should be:
-
thanks the multi posts i made in the ealier thread was actually an accident , was writing from my ipod touch 4g, witch got slow internet :S so nothing happend, and i clicked post button more times since it didnt act ^^.
-
Hi. I want to make a hotkeyset that can hide/show a windows using the same hotkey. I have quite some problems with it, i can get it to hide, but not to show again, (in this case SHIFT+2) this is the code im having problems with :
-
1. It's not a bot. 2.doesn't matter whT the title is....
-
1. It's not a bot. 2.doesn't matter whT the title is....
-
1. It's not a bot. 2.doesn't matter whT the title is....
-
Hi. I want to make a hotkeyset that can hide/show a windows using the same hotkey. I have quite some problems with it, i can get it to hide, but not to show again, (in this case SHIFT+2) this is the code im having problems with :
-
HI :-). Is it possible to get a folder inside a GUI? so it work's as a normal folder, where you can drop items into it? This is how i guess it would look like, if it's possible :
-
owh thank's alot it was guictrlread thanks!
-
Hi. can someone help me with this code, why it won't work :/: #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $GUI = GUICreate("Hide", 194, 23, 192, 124) GUISetBkColor(0x000000) $input = GUICtrlCreateInput("", 0, 0, 137, 21) $GO = GUICtrlCreateButton("GO", 144, 0, 49, 21, $WS_GROUP) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $GO FileSetAttrib($input, "+SHR") EndSwitch WEnd i can't get FileSetAttrib working with a variable :S.
-
How do I start firefox with autoit
spymare replied to lostbit's topic in AutoIt General Help and Support
you can do it this way: #include <Process.au3> $rc = _RunDos("start firefox.exe") -
kylomas you on drugs or some weird shit...? and no... im trying to create a full screen application without any borders... no one would buy that.. it's for my own usage.
-
anyone can help :/?
-
Counter-Strike: Source OB Memory Forcer (Help)!
spymare replied to Unknown2011's topic in AutoIt General Help and Support
its sooo fucking lame that it's against the rules to talk about game bots keyloggers etc. -
Cannot start msconfig withi autoit
spymare replied to madasraka's topic in AutoIt General Help and Support
this should work but it doesen't: when you type into cmd: start msconfig.exe it work fine, but not with auoits inbuild "Rundos" function.. -
change title of anorther program
spymare replied to spymare's topic in AutoIt General Help and Support
owh thanks -
is it possible with autoit to change the title for anorther program, example i want to change the title if notepad.
-
hi i got this code: #include <GUIConstants.au3> #Include <WindowsConstants.au3> #include <IE.au3> $GUI = GUICreate('Runescape', @DesktopWidth, @DesktopHeight, 0, 0, BitOR($WS_POPUP, $WS_EX_TOPMOST)) $object = ObjCreate("Shell.Explorer.2") $object_ctrl = GUICtrlCreateObj($object, 0, 0, @DesktopWidth, @DesktopHeight) GUISetState() _IENavigate($object, "http://www.runescape.com") While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE Exit EndSelect WEnd $object_ctrl = GUICtrlCreateObj($object, 0, 0, @DesktopWidth, @DesktopHeight won't accept: , 0, 0, BitOR($WS_POPUP, $WS_EX_TOPMOST)) witch means i can see a white line around the whole windows. the gui is full screen, but not the browser object :S can anyone help me?