Autoit Tutorials - Tool to run autoit scripts from button icons on desktop

Опубликовано: 01 Октябрь 2024
на канале: Autoitlauncher
9,052
2

https://www.autoitclipboardlauncher.com In this Autoit Tutorial you can see how to run autoit scripts from button icons on your desktop. Together with this tool you can speedup your computer movements.

This video does explain:
The differency between Autoit and Autoitlauncher.
How to Create Button Icons.
How to choose the pictures and sound files.
And how to write and run the autoit scripts.


Autoit software. is light and fast scripting programming languages that can automate keystroke combination, you can write the code in the editor and if you run that autoit script you will see a icon in the system tray on the taskbar from that point you ready to direct execute from your fisical keyboard, a part of that autoit code. For example press the keys ctrl + alt + c to run the application calc.exe

The power of Autoit. it need a very small cpu load and ram memory and you can send shortcut combination by command or transform a short text into a long text, for example ila into i like autoit. you can also simple remap a whole keyboard. and you can write or read the windows registry with a simple script.

Autoitlauncher software. is a graphical GUI interface where you can make fast a couple of 3d button icons on the desktop. this tool does have a main command editor where you can select these buttons and write the autoit script. save and restart autoitlauncher, and then you can push the buttons with your mouse or touch device, it will direct native execute that autoit script.
In this editor you can also write other scripting languages for example msdos .bat or .???

To use Autoitlauncher you will need first to install autoit software on your windows system. autoitlauncher is portable put it on ramdisk or disk and you can run the exe file.

for more info:

See Autoit website
https://www.autoitscript.com/

And for Autoitlauncher look at homepage
http://autoitclipboardlauncher.com/



And here you can find the most Populair autoit examples :



1 run any application

Local $iPID = ShellExecute ("calc.exe")




2 Go to any kind of URL website adress for example go to the manual site (the total list of commands for autoit freeware) :

Local $iPID = ShellExecute ("https://www.autoitscript.com/autoit3/...")




3 write the windows registry :

send ("^c")
sleep (150)
local $a1=clipget()
sleep (150)
RegWrite ("HKEY_CURRENT_USER\software\AutoIt\clipboard 1\KeyHintText","1","REG_SZ",$a1) ; set copy 1




4 read the windows registry :

local $OutputVar = RegRead("HKEY_CURRENT_USER\software\AutoIt\clipboard 1\KeyHintText","1") ; read copy 1
clipput($OutputVar)
send ("^v") ; send paste 1



5 hotkey function :

; press the key F7 on your fisical keyboard and it will copy the text into clipboard memory.
HotKeySet(“{F7}”, “Copy”)l

Func Copy()
send (“^c”)
EndFunc


autoit tutorials
autoit download
autohotkey vs autoit
autoit examples
autoit toolbars
autoit launcher
autoit creator
autoit maker
autoit documentation
autoit wiki
autoit recorder
autoit vs autohotkey