Re: starting the Project Browser

2018-10-26 Thread J. Landman Gay via use-livecode
It's referring to all engine messages that contain either "open" or "close", so: preOpenStack preOpenBackground preOpenCard ...etc openStack openBackground openCard ...etc closeStack closeBackground closeCard ...etc I understand why this is necessary now, but it is pretty instrusive, is going

RE: starting the Project Browser

2018-10-26 Thread Douglas Ruisaard via use-livecode
Thanks, Jacqueline. I have not had any issues with using the StandAlone builder but then I am using LC v8.1.9. on Windows 7. I did put Panos's code into my app ... made no apparent difference but good to have there anyway. I'm a bit confused about the reference to "Similar in all other

RE: starting the Project Browser

2018-10-25 Thread J. Landman Gay via use-livecode
You may also need to implement the workaround that accounts for a recent change in the standalone builder. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software |

Re: starting the Project Browser

2018-10-25 Thread Douglas Ruisaard via use-livecode
Brilliant!!! ... works perfectly when combined with a "set loc" and "set rect" call. Doesn't touch the standalone settings! Thanks so much! Douglas Ruisaard Trilogy Software (250) 573-3935 > > Hi, > > does this help? > > revIDETogglePalette "Project Browser" > > you can test if the

RE: starting the Project Browser

2018-10-25 Thread Douglas Ruisaard via use-livecode
thanks for the reply... as I mentioned, the location/sizing thing was the less important issue. I didn't explain the standalone issue well enough. I had the call to the rev-stack within a "if environment is development" condition, so a standalone compile would have ignored the goto ... it was

Re: starting the Project Browser

2018-10-24 Thread Niggemann, Bernd via use-livecode
Hi, does this help? revIDETogglePalette "Project Browser" you can test if the Project Browser is visible put revIDEPaletteIsVisible("project browser") Kind regards Bernd ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this

Re: starting the Project Browser

2018-10-23 Thread Mark Wieder via use-livecode
On 10/23/2018 11:52 AM, Klaus major-k via use-livecode wrote: Hi Douglas, Am 23.10.2018 um 20:31 schrieb Douglas Ruisaard via use-livecode : Is there a way to start/open the "Project Browser" (from the main LC Tools menu) using a script command for LC v8 and above? this works, go figure

Re: starting the Project Browser

2018-10-23 Thread Klaus major-k via use-livecode
Hi Douglas, > Am 23.10.2018 um 20:31 schrieb Douglas Ruisaard via use-livecode > : > > Is there a way to start/open the "Project Browser" (from the main LC Tools > menu) using a script command for LC v8 and above? this works, go figure :-D ... go stack "revIDEProjectBrowser" ... > ... > >