nadah Posted October 31, 2008 Posted October 31, 2008 I just want to press ALT+CTRL+DEL but it doesnt seem to be working when i try with Send() or ControlSend() can anyone help ??
Developers Jos Posted October 31, 2008 Developers Posted October 31, 2008 N.B. Windows does not allow the simulation of the "CTRL-ALT-DEL" combination! SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
nadah Posted October 31, 2008 Author Posted October 31, 2008 (edited) windows does not allow any of the Hotkeys simulation ?? thas sad :-( i actually wanna do a ALT+CTRL+SHIFT+F5 Edited October 31, 2008 by nadah
Developers Jos Posted October 31, 2008 Developers Posted October 31, 2008 windows does not allow any of the Hotkeys simulation ?? thas sad :-(This statement is valid for Ctrl+Alt+Delete, not for Hotkeys in general. SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
mistersquirrle Posted October 31, 2008 Posted October 31, 2008 (edited) From the AutoIt help file: Example of how to pause a script Global $Paused HotKeySet("{PAUSE}", "TogglePause") Func TogglePause() $Paused = NOT $Paused While $Paused sleep(100) ToolTip('Script is "Paused"',0,0) WEnd ToolTip("") EndFunc Look through the help file for more information and for more key stroke information. Edited October 31, 2008 by mistersquirrle We ought not to misbehave, but we should look as though we could.
FaT3oYCG Posted October 31, 2008 Posted October 31, 2008 i think he specifically wanted to open the taskmanager by sending the key combination not setting it as a hotkey, althou you say ctrl + alt + del wont work, on my windows ctrl + shift + esc opens the taskmanager aswell. Interpreters have great power!Although they live in the shadow of compiled programming languages an interpreter can do anything that a compiled language can do, you just have to code it right.
mistersquirrle Posted October 31, 2008 Posted October 31, 2008 i actually wanna do a ALT+CTRL+SHIFT+F5 I just tried making a script to send that command, but task manager doesn't start. normally it does but I don't think you can launch task manager using send you could do Send("#r") WinWaitActive("Run") Send("taskmgr.exe{Enter}") We ought not to misbehave, but we should look as though we could.
Richard Robertson Posted October 31, 2008 Posted October 31, 2008 That is kinda stupid. Just Run("taskmgr.exe").
trancexx Posted October 31, 2008 Posted October 31, 2008 That is kinda stupid. Just Run("taskmgr.exe").I just started writting and saw this post.Man, you are fast ♡♡♡ . eMyvnE
FaT3oYCG Posted October 31, 2008 Posted October 31, 2008 well maybe you should test before you say as that does not work i tried it before and just now aswell. Interpreters have great power!Although they live in the shadow of compiled programming languages an interpreter can do anything that a compiled language can do, you just have to code it right.
trancexx Posted November 1, 2008 Posted November 1, 2008 well maybe you should test before you say as that does not work i tried it before and just now aswell.Your OS? ♡♡♡ . eMyvnE
FaT3oYCG Posted November 1, 2008 Posted November 1, 2008 (edited) Windows XP Proffesional SP3 Edited November 1, 2008 by FaT3oYCG Interpreters have great power!Although they live in the shadow of compiled programming languages an interpreter can do anything that a compiled language can do, you just have to code it right.
trancexx Posted November 1, 2008 Posted November 1, 2008 Windows XP Proffesional SP3 That is because you have very strange PID. No, I'm kidding. Unless you get message out of taskmgr.exe saying that your administrator disbled it for you, your system is not acting as it should. You might check AV logs or whatever. ♡♡♡ . eMyvnE
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now