Displaying the Inspector and Script Editor by script

2012-07-15 Thread Peter Haworth
Hoping there's someone out there who has figured out how to programmatically display the Inspector palette and Script Editor window for a give object and is willing to share that info. Pete lcSQL Software ___ use-livecode mailing li

Re: Displaying the Inspector and Script Editor by script

2012-07-15 Thread Chipp Walters
Script editor is easy-- edit script of object On Sunday, July 15, 2012, Peter Haworth wrote: > Hoping there's someone out there who has figured out how to > programmatically display the Inspector palette and Script Editor window for > a give object and is willing to share that info. > Pete > lcS

Re: Displaying the Inspector and Script Editor by script

2012-07-15 Thread Mike Bonner
To display the inspector I think you can do this... on mouseUp put the long id of whateverobjecttoinspect into tInspect send "revBuildPropertyPalette tInspect" to stack "revTemplatePalette" pass mouseUp end mouseUp On Sun, Jul 15, 2012 at 9:46 PM, Chipp Walters wrote: > Script editor is

Re: Displaying the Inspector and Script Editor by script

2012-07-15 Thread Chipp Walters
try in msg put the selObj into tOb j; send "revBuildPropertyPalette tObj" to stack "revTemplatePalette" On Sun, Jul 15, 2012 at 10:55 PM, Mike Bonner wrote: > To display the inspector I think you can do this... > > on mouseUp >put the long id of whateverobjecttoinspect into tInspect > sen

Re: Displaying the Inspector and Script Editor by script

2012-07-15 Thread Mark Wieder
Chipp- Sunday, July 15, 2012, 8:58:10 PM, you wrote: > try in msg > put the selObj into tOb j; send "revBuildPropertyPalette tObj" to stack > "revTemplatePalette" Ick. So much for natural language processing. -- -Mark Wieder mwie...@ahsoftware.net __

Re: Displaying the Inspector and Script Editor by script

2012-07-16 Thread Peter Haworth
Thanks Chipp and Mike for the answers. Here's the context for the question. In my copious spare time, I'm putting a little work into an application browser plugin since there are several things I don't like about the IDE browser. However, I'm thinking there are probably other browser alternative

Re: Displaying the Inspector and Script Editor by script

2012-07-16 Thread Mark Wieder
Peter Haworth writes: > Here's the context for the question. In my copious spare time, I'm putting > a little work into an application browser plugin since there are several > things I don't like about the IDE browser. However, I'm thinking there are > probably other browser alternatives out th

Re: Displaying the Inspector and Script Editor by script

2012-07-16 Thread Peter Haworth
Thanks Mark, I'll take a look. Pete lcSQL Software On Mon, Jul 16, 2012 at 10:18 AM, Mark Wieder wrote: > Peter Haworth writes: > > > Here's the context for the question. In my copious spare time, I'm > putting > > a little work into an application browser plugin since