Thread: [TEC] KzS Notepad
View Single Post
Old 09-27-15, 07:09 AM   #33
Tycho
Sonar Guy
 
Join Date: Oct 2009
Location: Sofia, Bg
Posts: 384
Downloads: 264
Uploads: 1


Default

Quote:
Originally Posted by areo16 View Post
No need to yell budd.
Did I yell? I just try to answer your questions.

Quote:
Originally Posted by areo16 View Post
When it opens the edit box with one click where does the cursor go if there is multiple lines of text in the text edit box? on first click?
The cursor always goes in the end of the text.


Quote:
Originally Posted by Anvar1061 View Post
SSS
How to disable the keyboard shortcuts ?
You need to edit "Commands_en.cfg".
One example:

Code:
[Cmd67]
Name=Toggle_hydrophone_view
Ctxt=1
Key0=0x48,,"H"
Now, you added ; before Key0=, and there will not be key command "H".
;Key0=0x48,,"H"
Code:
[Cmd67]
Name=Toggle_hydrophone_view
Ctxt=1
;Key0=0x48,,"H"
Or, you want this key command, but to be with Shift or Ctrl.
Then add "s" for Shift, or "c" for Ctrl here, between commas:
Key0=0x48,s,"H"
Code:
[Cmd67]
Name=Toggle_hydrophone_view
Ctxt=1
Key0=0x48,s,"H"
__________________
If you ride like lightning, you're gonna crash like thunder.
Tycho is offline   Reply With Quote