Jump to content

spymare

Active Members
  • Posts

    102
  • Joined

  • Last visited

Everything posted by spymare

  1. 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")
  2. 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 ""?
  3. owh, thanks alot Manadar very usefull
  4. well I guess I could just use ispressed instead: but i would prefer hotkeyset .
  5. 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 :/.
  6. nvm works perfect, thx
  7. 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
  8. 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:
  9. 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 ^^.
  10. 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 :
  11. 1. It's not a bot. 2.doesn't matter whT the title is....
  12. 1. It's not a bot. 2.doesn't matter whT the title is....
  13. 1. It's not a bot. 2.doesn't matter whT the title is....
  14. 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 :
  15. 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 :
  16. owh thank's alot it was guictrlread thanks!
  17. 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.
  18. you can do it this way: #include <Process.au3> $rc = _RunDos("start firefox.exe")
  19. 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.
  20. anyone can help :/?
  21. its sooo fucking lame that it's against the rules to talk about game bots keyloggers etc.
  22. 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..
  23. is it possible with autoit to change the title for anorther program, example i want to change the title if notepad.
  24. 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?
×
×
  • Create New...