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 there are several
> > things I don't like about the IDE browser.  However, I'm thinking there
> are
> > probably other browser alternatives out there - Anyone?
>
> Jerry Daniels wrote an experimental alternative Application Browser as
> part of
> glx2. I've separated it out more or less into its own plugin stack. It's
> now
> open-source and part of the package at
>
> http://bitbucket.org/mwieder/glx2
>
> in the VAB (Visual Application Browser) stack. I don't use it myself and
> haven't
> put any work into refactoring the code, but it's probably got usable stuff
> in
> there you might want to mine for ideas or use as a framework to build on.
> HTH.
>
> --
>  Mark Wieder
>  mwie...@ahsoftware.net
>
>
>
>
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 there - Anyone?

Jerry Daniels wrote an experimental alternative Application Browser as part of
glx2. I've separated it out more or less into its own plugin stack. It's now
open-source and part of the package at

http://bitbucket.org/mwieder/glx2

in the VAB (Visual Application Browser) stack. I don't use it myself and haven't
put any work into refactoring the code, but it's probably got usable stuff in
there you might want to mine for ideas or use as a framework to build on. HTH.

-- 
 Mark Wieder
 mwie...@ahsoftware.net





___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 alternatives out there - Anyone?

Pete
lcSQL Software 



On Sun, Jul 15, 2012 at 10:02 PM, Mark Wieder wrote:

> 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
>
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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
>   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 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
> > > lcSQL Software 
> > > ___
> > > use-livecode mailing list
> > > use-livecode@lists.runrev.com 
> > > Please visit this url to subscribe, unsubscribe and manage your
> > > subscription preferences:
> > > http://lists.runrev.com/mailman/listinfo/use-livecode
> > >
> >
> >
> > --
> > Chipp Walters
> > CEO, Altuit, Inc.
> > ___
> > use-livecode mailing list
> > use-livecode@lists.runrev.com
> > Please visit this url to subscribe, unsubscribe and manage your
> > subscription preferences:
> > http://lists.runrev.com/mailman/listinfo/use-livecode
> >
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>



-- 
Chipp Walters
CEO, Altuit, Inc.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 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
> > lcSQL Software 
> > ___
> > use-livecode mailing list
> > use-livecode@lists.runrev.com 
> > Please visit this url to subscribe, unsubscribe and manage your
> > subscription preferences:
> > http://lists.runrev.com/mailman/listinfo/use-livecode
> >
>
>
> --
> Chipp Walters
> CEO, Altuit, Inc.
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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
> lcSQL Software 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com 
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>


-- 
Chipp Walters
CEO, Altuit, Inc.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode