on edit script - auto bring top and highlite on mouseUp
Moderator: Klaus
-
- Posts: 1201
- Joined: Sun Apr 24, 2011 2:17 am
on edit script - auto bring top and highlite on mouseUp
Hi all,
When I rightClick Edit script on a button
is there a way to find the on MouseUp event
bring it to the top of the script editor in the IDE and hightlight it?
When I rightClick Edit script on a button
is there a way to find the on MouseUp event
bring it to the top of the script editor in the IDE and hightlight it?
All my best,
Barry G. Sumpter
Deving on WinXP sp3-32 bit. LC 5.5 Professional Build 1477
Android/iOS/Server Add Ons. OmegaBundle 2011 value ROCKS!
2 HTC HD2 Latest DorimanX Roms
Might have to reconsider LiveCode iOS Developer Program.
Barry G. Sumpter
Deving on WinXP sp3-32 bit. LC 5.5 Professional Build 1477
Android/iOS/Server Add Ons. OmegaBundle 2011 value ROCKS!
2 HTC HD2 Latest DorimanX Roms
Might have to reconsider LiveCode iOS Developer Program.
Re: on edit script - auto bring top and highlite on mouseUp
Just click on the mouseUp handler on handler list of Script Editor.
-
- Posts: 1201
- Joined: Sun Apr 24, 2011 2:17 am
Re: on edit script - auto bring top and highlite on mouseUp
I want the IDE to do this automatically.
It's distracting and I loose my focus having to chase it down every time.
It's distracting and I loose my focus having to chase it down every time.
All my best,
Barry G. Sumpter
Deving on WinXP sp3-32 bit. LC 5.5 Professional Build 1477
Android/iOS/Server Add Ons. OmegaBundle 2011 value ROCKS!
2 HTC HD2 Latest DorimanX Roms
Might have to reconsider LiveCode iOS Developer Program.
Barry G. Sumpter
Deving on WinXP sp3-32 bit. LC 5.5 Professional Build 1477
Android/iOS/Server Add Ons. OmegaBundle 2011 value ROCKS!
2 HTC HD2 Latest DorimanX Roms
Might have to reconsider LiveCode iOS Developer Program.
Re: on edit script - auto bring top and highlite on mouseUp
I'm not sure how the IDE could know which handler you want to display.
You can type "on mouseup" into the search box (type Cmd/Cntrl-F if it isn't showing) and do a one-time search. After that, Cmd-G will find it again until you change it.
You can type "on mouseup" into the search box (type Cmd/Cntrl-F if it isn't showing) and do a one-time search. After that, Cmd-G will find it again until you change it.
Jacqueline Landman Gay | jacque at hyperactivesw dot com
HyperActive Software | http://www.hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
Re: on edit script - auto bring top and highlite on mouseUp
As Jacque says, how could the program know which handler in a script you are targeting?
What I do is place the handlers or functions that I am currently working one at the top. Invariably, I am returning to one or two of these over and over again as I work through some aspect of a project. Just relocate them above all the others, and they will be ready when you return to the script editor.
Craig Newman
What I do is place the handlers or functions that I am currently working one at the top. Invariably, I am returning to one or two of these over and over again as I work through some aspect of a project. Just relocate them above all the others, and they will be ready when you return to the script editor.
Craig Newman
-
- Posts: 1201
- Joined: Sun Apr 24, 2011 2:17 am
Re: on edit script - auto bring top and highlite on mouseUp
If anyone has a script that will allow me to access the IDE script editor
would you please post it?
I'll have a look around and see what trouble I can get into.
would you please post it?
I'll have a look around and see what trouble I can get into.
All my best,
Barry G. Sumpter
Deving on WinXP sp3-32 bit. LC 5.5 Professional Build 1477
Android/iOS/Server Add Ons. OmegaBundle 2011 value ROCKS!
2 HTC HD2 Latest DorimanX Roms
Might have to reconsider LiveCode iOS Developer Program.
Barry G. Sumpter
Deving on WinXP sp3-32 bit. LC 5.5 Professional Build 1477
Android/iOS/Server Add Ons. OmegaBundle 2011 value ROCKS!
2 HTC HD2 Latest DorimanX Roms
Might have to reconsider LiveCode iOS Developer Program.
Re: on edit script - auto bring top and highlite on mouseUp
edit the script of objectName
Marek
[snm]
Marek
[snm]
Re: on edit script - auto bring top and highlite on mouseUp
and then with the line number of "on mouseUp" in tLine
Code: Select all
send "goLine" && tLine, "position", (1, -1) to group "Editor" of stack "revNewScriptEditor 1"