Jump to content

How to add a shortcut to SciTE


 Share

Recommended Posts

Hi all,

I am playing with SciTE to add a shortcut for one of my exe file. I saw a FAQ file in interent and did what they say. But nothing happens. This is what i tried in au3Properties file.

# Includer shortcut
command.name.35.*.properties=
command.35.*.properties=cmd /c echo $("D:\AutoIt Works\EXEs\Includer_2.exe")
user.shortcuts=\
Ctrl+Y|1135|

And this is the screenshot of that FAQ page. 

 

000105.jpg

Edited by kcvinu
Spoiler

My Contributions

Glance GUI Library - A gui library based on Windows api functions. Written in Nim programming language.

UDF Link Viewer   --- A tool to visit the links of some most important UDFs 

 Includer_2  ----- A tool to type the #include statement automatically 

 Digits To Date  ----- date from 3 integer values

PrintList ----- prints arrays into console for testing.

 Alert  ------ An alternative for MsgBox 

 MousePosition ------- A simple tooltip display of mouse position

GRM Helper -------- A littile tool to help writing code with GUIRegisterMsg function

Access_UDF  -------- An UDF for working with access database files. (.*accdb only)

 

Link to comment
Share on other sites

  • 2 weeks later...

 

Use SciTEUser.properties instead of au3Properties file and add this :

 

# 40 Includer shortcut
command.40.*="D:\AutoIt Works\EXEs\Includer_2.exe"
command.name.40.*=Includer shortcut
command.shortcut.40.*=Ctrl+Y

 

In my case, I need to use "40" but search for a command number who is not already used for you.

 

Edited by wakillon

AutoIt 3.3.14.2 X86 - SciTE 3.6.0WIN 8.1 X64 - Other Example Scripts

Link to comment
Share on other sites

  • Developers

replace the word properties with he file extension you want this command to be active.

Not sure why you are using cmd and echo, but assume that is for testing.

# Includer shortcut
command.name.35.*.au3=
command.35.*.au3="D:\AutoIt Works\EXEs\Includer_2.exe"
user.shortcuts=\
Ctrl+Y|1135|

 

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.
  :)

Link to comment
Share on other sites

Thanks @wakillon And @Jos . Let me try. :)

Spoiler

My Contributions

Glance GUI Library - A gui library based on Windows api functions. Written in Nim programming language.

UDF Link Viewer   --- A tool to visit the links of some most important UDFs 

 Includer_2  ----- A tool to type the #include statement automatically 

 Digits To Date  ----- date from 3 integer values

PrintList ----- prints arrays into console for testing.

 Alert  ------ An alternative for MsgBox 

 MousePosition ------- A simple tooltip display of mouse position

GRM Helper -------- A littile tool to help writing code with GUIRegisterMsg function

Access_UDF  -------- An UDF for working with access database files. (.*accdb only)

 

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...