Valuater Posted February 20, 2010 Author Posted February 20, 2010 I like this, I really do =] And I was also hoping, is it possible that you can make this launch on start-up? Put it (or a shortcut to it) in the startup folder. It already has a short-cut creator built-in.... If @Compiled = 1 And Not FileExists(@StartupCommonDir & "\MousePass.lnk") Then FileCreateShortcut(@ScriptDir & "\MousePass.exe", @StartupCommonDir & "\MousePass.lnk", @ScriptDir, "", "This is a <-MousePass-> link", "", "", "", @SW_SHOWNORMAL) EndIf 8)
somdcomputerguy Posted February 20, 2010 Posted February 20, 2010 Ha, seems like I've been blindly leading the blind.. - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change.
ptrex Posted February 22, 2010 Posted February 22, 2010 @Valuater This is brilliant by its simplicity ! Rgds ptrex Contributions :Firewall Log Analyzer for XP - Creating COM objects without a need of DLL's - UPnP support in AU3Crystal Reports Viewer - PDFCreator in AutoIT - Duplicate File FinderSQLite3 Database functionality - USB Monitoring - Reading Excel using SQLRun Au3 as a Windows Service - File Monitor - Embedded Flash PlayerDynamic Functions - Control Panel Applets - Digital Signing Code - Excel Grid In AutoIT - Constants for Special Folders in WindowsRead data from Any Windows Edit Control - SOAP and Web Services in AutoIT - Barcode Printing Using PS - AU3 on LightTD WebserverMS LogParser SQL Engine in AutoIT - ImageMagick Image Processing - Converter @ Dec - Hex - Bin -Email Address Encoder - MSI Editor - SNMP - MIB ProtocolFinancial Functions UDF - Set ACL Permissions - Syntax HighLighter for AU3ADOR.RecordSet approach - Real OCR - HTTP Disk - PDF Reader Personal Worldclock - MS Indexing Engine - Printing ControlsGuiListView - Navigation (break the 4000 Limit barrier) - Registration Free COM DLL Distribution - Update - WinRM SMART Analysis - COM Object Browser - Excel PivotTable Object - VLC Media Player - Windows LogOnOff Gui -Extract Data from Outlook to Word & Excel - Analyze Event ID 4226 - DotNet Compiler Wrapper - Powershell_COM - New
Valuater Posted February 28, 2010 Author Posted February 28, 2010 @ValuaterThis is brilliant by its simplicity ! RgdsptrexThanks ptrex, after all of you additions to Autoit, a compliment from you has real value.Thanks again8)
Valuater Posted September 26, 2011 Author Posted September 26, 2011 I was looking for this for a friend and wow, Last Post: Feb 2010, Where the hell has time gone!?! 8)
lixperry Posted December 6, 2011 Posted December 6, 2011 I know this is an old topic, but this is such a simple and useful script. Windows should have this built in to it. my contribution is for supporting 2 monitors. change the following code: From: $Height = @DesktopHeight - 1 $Width = @DesktopWidth - 1 To: $array = WinGetClientSize('[TITLE:Program Manager;CLASS:Progman]') $Height = $array[1] - 1 $Width = $array[0] - 1 Basically gets the entire virtual desktop area.
Valuater Posted December 11, 2011 Author Posted December 11, 2011 ... but this is such a simple and useful script. Windows should have this built in to it....Thanks... 8)
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