ezzetabi Posted October 14, 2004 Author Share Posted October 14, 2004 The command !cmd is already there for you. It starts the console from the point where you write as argument. E.g. !cmd c:\windows\system32 will start cmd from system32 folder. Link to comment Share on other sites More sharing options...
ezzetabi Posted October 14, 2004 Author Share Posted October 14, 2004 (edited) About the {Tab} problem here the new version: I solved it brutally, sending a {end} to the control just after update it, it is quite ugly. But it works. (How often a developer make a new version so fast just for you? ) Do you think Run! shoulds play a sound when the user calls !vup or !vdown ? For download go in the last or first post. Edited October 15, 2004 by ezzetabi Link to comment Share on other sites More sharing options...
upnorth Posted October 14, 2004 Share Posted October 14, 2004 GUISendMsg ( controlid , 0x00B1 , 0 , -1 )This is the code in NotePage to Select all...if you need it Link to comment Share on other sites More sharing options...
ezzetabi Posted October 14, 2004 Author Share Posted October 14, 2004 The point Up_NORTH was DE select all... Link to comment Share on other sites More sharing options...
BasicOs Posted October 14, 2004 Share Posted October 14, 2004 WHERE IS THE LINK FOR THE DOWNLOAD , PLEASEEEEEEE Autoit.es - Foro Autoit en Español Word visitors Image Clustrmap image: - Football Spanish team - Spanish team: Casillas, Iniesta, Villa, Xavi, Puyol, Campdevilla, etc..Programando en Autoit+Html - Coding Autoit-Html - Arranca programas desde Internet - Preprocesador de Autoit a http Link to comment Share on other sites More sharing options...
ezzetabi Posted October 15, 2004 Author Share Posted October 15, 2004 (edited) A new version again, until I have no feedback I can't improve much, but now I just added a sound that let you listen the variation of volume after !vup and !vdown commands. Also added a download link also in the first post. Run! have its home page now. Go in it for downloading. Edited October 15, 2004 by ezzetabi Link to comment Share on other sites More sharing options...
MHz Posted October 15, 2004 Share Posted October 15, 2004 Nice homepage ezzetabi. Shall let you know if any problems with !run. Link to comment Share on other sites More sharing options...
ezzetabi Posted October 16, 2004 Author Share Posted October 16, 2004 New version! 2.1.3 Link to comment Share on other sites More sharing options...
ezzetabi Posted October 16, 2004 Author Share Posted October 16, 2004 Do you think that should add also F1 to F11 hotkeys? Link to comment Share on other sites More sharing options...
ezzetabi Posted October 17, 2004 Author Share Posted October 17, 2004 (edited) Thanks for answers... New version. This time I separed not only settings, but also custom hotkeys and !commands for every user. Added commands !delfiles and !delfolder. A part of the obious they can delete also in use file using pendingrenameoperations or wininit.ini file. Edit: typo. Edited October 18, 2004 by ezzetabi Link to comment Share on other sites More sharing options...
ezzetabi Posted October 18, 2004 Author Share Posted October 18, 2004 Run! is on ShellCity! www.shellcity.net Link to comment Share on other sites More sharing options...
this-is-me Posted October 18, 2004 Share Posted October 18, 2004 (edited) I saw that earlier, but didn't click on the link. Good job, ezze. EDIT: You DEFINATELY need a readme and some info on how to use it inside the zip file. Edited October 18, 2004 by this-is-me Who else would I be? Link to comment Share on other sites More sharing options...
ezzetabi Posted October 18, 2004 Author Share Posted October 18, 2004 (edited) Ok, updating... Edit: updated. But the !help command was not enough? Edited October 18, 2004 by ezzetabi Link to comment Share on other sites More sharing options...
this-is-me Posted October 18, 2004 Share Posted October 18, 2004 (edited) !help is perfect, but people like to get help before running a program. EDIT: Suggestions: Moveable bar (top/bottom/left/right) Customizable shortcuts for internal commands better than just ctrl+shift+ whatever key; What about ctrl+alt+some key, or win+alt+some key or Win+key all user customizable. For personal preference, I would like to have a simple win+key to allow easy access. For floppy portability, please have an option to NOT have individual folders for each user, but one folder for ALL users !command that sends a hotkey? I use winamp with global hotkeys and would like to be able to do !play to send ctrl+alt+home (winamp's play hotkey) Edited October 18, 2004 by this-is-me Who else would I be? Link to comment Share on other sites More sharing options...
ezzetabi Posted October 18, 2004 Author Share Posted October 18, 2004 (edited) Moveable bar. I can allow the user select the position from an option, since the type of win I used is not moveable. About CTRL+SHIFT+x it is a pain to change, but I'll see what can I do. I added the separed settings in one of the last versions... Sigh... Ok. About the !commands for hotkeys, I like it! I'll see what can I do. (probably as first job) I think I'll add a option is the .ini files for !commands, so they can be read as hotkeyset instead of normal commands. Edited October 18, 2004 by ezzetabi Link to comment Share on other sites More sharing options...
this-is-me Posted October 18, 2004 Share Posted October 18, 2004 For the moveable window, here is some cod that could be hacked together:format of dllcall using sendmessage:dllcall("user32.dll","int","SendMessage","hWnd",$hwnd,"int",0x0147,"int", 0,"int", 0)vb code to allow draggable windows without titlebar:Const WM_NCLBUTTONDOWN = &HA1 Declare Sub ReleaseCapture Lib "user32" () Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Integer, ByVal lParam As Long) As Long Public Sub FormDrag(TheForm As Form) ReleaseCapture Call SendMessage(TheForm.hwnd, &HA1, 2, 0&) End Subsepared settingsI don't mean completely remove them, just give an option to disable them and do the old style. Who else would I be? Link to comment Share on other sites More sharing options...
this-is-me Posted October 18, 2004 Share Posted October 18, 2004 I got it to work.. I'm happy. #include <guiconstants.au3> $HTCAPTION = 2 $WM_NCLBUTTONDOWN = 0xA1 $winttl = "Test" $guihndl = GUICreate($winttl, 500, 300, -1, -1) GUISetState() While 1 $msg = GUIGetMsg(1) Select Case $GUI_EVENT_PRIMARYDOWN = $msg[0] dllcall("user32.dll","int","ReleaseCapture") dllcall("user32.dll","int","SendMessage","hWnd", $guihndl,"int",$WM_NCLBUTTONDOWN,"int", $HTCAPTION,"int", 0) EndSelect Wend Try dragging the window using the mouse in the body. Who else would I be? Link to comment Share on other sites More sharing options...
Josbe Posted October 18, 2004 Share Posted October 18, 2004 I got it to work.. I'm happy.#include <guiconstants.au3> $HTCAPTION = 2 $WM_NCLBUTTONDOWN = 0xA1 $winttl = "Test" $guihndl = GUICreate($winttl, 500, 300, -1, -1) GUISetState() While 1 $msg = GUIGetMsg(1) Select Case $GUI_EVENT_PRIMARYDOWN = $msg[0] dllcall("user32.dll","int","ReleaseCapture") dllcall("user32.dll","int","SendMessage","hWnd", $guihndl,"int",$WM_NCLBUTTONDOWN,"int", $HTCAPTION,"int", 0) EndSelect WendTry dragging the window using the mouse in the body.<{POST_SNAPBACK}>Nice. (Like Winamp) • AUTOIT > AutoIt docs / Beta folder - AutoIt latest beta Link to comment Share on other sites More sharing options...
this-is-me Posted October 18, 2004 Share Posted October 18, 2004 Update for those who don't want to use the guimsg loop (like me): #include <guiconstants.au3> Opt("GuiOnEventMode", 1) $HTCAPTION = 2 $WM_NCLBUTTONDOWN = 0xA1 $winttl = "Test" $guihndl = GUICreate($winttl, 500, 300, -1, -1) GUISetOnEvent($GUI_EVENT_PRIMARYDOWN, "captureit") GUISetState(@SW_SHOW) Sleep(50000) func captureit() dllcall("user32.dll","int","ReleaseCapture") dllcall("user32.dll","int","SendMessage","hWnd", $guihndl,"int",$WM_NCLBUTTONDOWN,"int", $HTCAPTION,"int", 0) EndFunc Who else would I be? Link to comment Share on other sites More sharing options...
ezzetabi Posted October 19, 2004 Author Share Posted October 19, 2004 Thanks for this code, now Run! can be moved. And it saves its position for every resolution, so passing from a huge 1920x1440 to a 640x480 won't hide Run! somewhere away in the desktop... But before uploading the new version, I'll implement the !commands for hotkeys. Link to comment Share on other sites More sharing options...
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