stormbreaker
Active Members-
Posts
537 -
Joined
-
Last visited
stormbreaker's Achievements
-
Earthshine reacted to a post in a topic: Software written in AutoIt
-
Qwerty212 reacted to a post in a topic: Bluetooth Detector/Switching Script
-
stormbreaker reacted to a post in a topic: Forum behaviour
-
@weasel5i2, you need "remote desktop login" commands for that purpose. Google it and you'll get there for sure. As for lock screen ui process, i think, its not that easy, else no one would be using windows if you could merely login by closing a single process/application (since any account could be opened then) - you won't even call it hacking then...
-
stormbreaker reacted to a post in a topic: CommAPI - Serial and parallel communication with Windows API
-
Button click with command "ControlClick"
stormbreaker replied to bobbinmp's topic in AutoIt General Help and Support
Fire up the Au3Info.exe program (its in the same directory as autoit). Drag the finder tool on the position where your Archive button is present. If it is able to draw a rectangle (or maybe detect the text written there), then ControlClick can work for you, else I m afraid, you have to stick to the old method -
Sannie72 reacted to a post in a topic: Bluetooth Finder Tool - find Bluetooth devices near you
-
Hello everyone. Just made this one - represent a number as sum of powers of two: #AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w- 4 -w 5 -w 6 -w- 7 ; Returns number as sum of powers of two Func _GetPowersofTwo($mynum) $mynumseed = $mynum $i=0 Global $STRING while ($mynumseed <> 0) do $i+=1 until NOT ($mynumseed >= (2^$i)) $STRING &= 2^($i-1) $mynumseed = $mynumseed - (2^($i-1)) If $mynumseed <> 0 then $STRING &= "+" EndIf $i=0 wend msgbox(64, "", $STRING) EndFunc _GetPowersofTwo(45)
-
StringToByte DOESN'T returns what I want ?
stormbreaker replied to Rickname's topic in AutoIt General Help and Support
Take a look here: '?do=embed' frameborder='0' data-embedContent>> We had a nice discussion on this back then. -
MSDN is your friend. The AU3 documentation (help file) is the other friend. Google for that function and MSDN pages will be the top results.
-
Global $ARRAY[2] $ARRAY[0] = "Untitled - Notepad" $ARRAY[1] = "Untitled - Notepad" For $i = 0 to (Ubound($ARRAY)-1) ;We loop from 1st to last element of the array If WinExists($ARRAY[$i]) then WinClose($ARRAY[$i]) EndIf NextCan be an example of what ur looking for.
-
Send Keys to Forms (Panels) created in VB
stormbreaker replied to sathish's topic in AutoIt General Help and Support
We need to send Ctrl+S combination to the window. Using Send("^s") for this instead of ControlSend() could work. -
DllStructGetSize byte size
stormbreaker replied to FireFox's topic in AutoIt General Help and Support
Firefox, we need to use align here. Read help file for DllStructCreate() function FROM help file: DllStructCreate("short;int") ; structure is 8 bytes, the "int" is at offset 4 DllStructCreate("align 2;short;int") ; structure is 6 bytes, the "int" is at offset 2 Regards, MKISH- 2 replies
-
- DllStructGetSize
- byte
-
(and 2 more)
Tagged with:
-
nullschritt, there seems to be a problem after the GDI+ initialising part in your code which results in AutoIt crashing. I modified it (a lot) to check for the errors: ; *** Start added by AutoIt3Wrapper *** #include <GUIConstantsEx.au3> ; *** End added by AutoIt3Wrapper *** #Region ;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_Add_Constants=n #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI **** #include <GUIConstants.au3> #include <Webcam.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <StaticConstants.au3> #include <WinAPI.au3> #include <WindowsConstants.au3> #include <GDIPlus.au3> #include <Memory.au3> $gui = GUICreate("Webcam UDF Test",320,240) _WebcamInit() $camcontrol = _Webcam($gui,320,240,0,0) GUISetState(@SW_SHOW) Global $i = 1 While 1 $i = $i+1 Sleep(1000) _MyFunc() WEnd Func _MyFunc() $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then _WebcamStop() Exit EndIf _WebcamSnapShot(@ScriptDir & "\snap" & $i & ".bmp") EndFunc
-
Package Creation without Aut2Exe ?
stormbreaker replied to COD3369's topic in AutoIt General Help and Support
verma123, do you mean to include the INI file in your compiled AutoIt script? If so, then use FileInstall() function. EDIT: I see, thats what you probably wanted. -
Reading that documentation, I think this should work: RunWait(@ScriptDir & "\Epw.exe" & ' -run="' & $FILENAME & '"')
-
Wish I had time to translate this: http://emoacht.wordpress.com/2012/11/06/csharp-ssd/ Still I think someone shall be able to do it.
-
Teach me how to add a function my buttons
stormbreaker replied to Wombat's topic in AutoIt GUI Help and Support
I thought it gives us choice between the two.