Re: Black icons in LC 8 DP 14

2016-02-07 Thread Peter TB Brett

On 08/02/2016 06:31, RM wrote:


Are these to become the standard revMenuBar button icons, or is this a
blip?


Yes, this is the new LiveCode 8 icon theme!  We're really pleased with 
it.  The new icons make it much clearer what each menu bar item actually 
does, and they work much more nicely at a wide variety of screen sizes 
and resolutions.  Once we have SVG image controls in the LiveCode 
engine, we're looking forward being able to directly render them from 
the source SVG files.



If they are to become the standard revMenuBar button icons can there be
a community
vote as to whether they are preferable over the previous coloured ones?


The core dev team always takes all feedback from LiveCode subscribers 
and regular contributors to the open source edition very seriously.


  Peter

--
Dr Peter Brett 
LiveCode Open Source Team

LiveCode on reddit: https://reddit.com/r/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: HTML5 "Features" Library Substacks and "send ### in time"

2016-02-07 Thread Malte Brill
Hi Brahmanathaswami,

I did not have the time to test DP 14 yet, but in DP9 animationEngine worked 
pretty good (in Firefox). 
All I had to do was make animationengine a substack of my mainstack.
As it relies heaviely on send in time, I can confirm that that used to be 
working fine at least in DP 9. Need to check again in DP 14 though.

All the best,

Malte


___
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


Question About Resolution Independence

2016-02-07 Thread Rolf Kocherhans
I am experimenting with "Resolution Independence" and different screen
sizes for developing on the mobile platform (iOS).

When I set "iPod,iPhone,iPad" in the "Build for" settings in the "Standalone
Application Settings" I always get an 1X or 2X at the bottom/right of a real
iPad (with Retina display).

Why is this so, normally I get these (1X or 2X) only if an app is not programmed
for iPad to enlarge the screen to full size - right ?

But my stack has a size of 1025*768 and I have checket the correct
„Build for setting“…. ?

I get the „1X" also when I just Build for iPad ?!

Any idea ?

Cheers Rolf
___
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: Question About Resolution Independence

2016-02-07 Thread [-hh]
Out of curiosity, if that's not a typo:
> my stack has a size of 1025*768

Is it the same if you use 1024*768 (exactly 4:3)?

___
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: Accelerator Key for Card Inspector

2016-02-07 Thread Klaus major-k
Hi Swami,

> On 7.02.2016 04:52, Sannyasin Brahmanathaswami wrote:
>> I’m getting a repetitive shoulder/ wrist cramp from going to the Object menu 
>> over and over again for Card Inspector….(7.1.1)
>> is there a way to lock in the inspect to cards? so that as you move from 
>> card to card the inspector changes, but sticks on cards and does not revert 
>> to stack?
>>  or can set we set a custom keystroke for the card inspector?

quick and dirty solutiuon:

1. Create a new stack with one button with this script (LC 8 compatible!):
on mouseUp
   select this cd of the topStack
   set itemdel to "."
   if item 1 of the version < 8 then
  send "revBuildPropertyPalette" to stack "revTemplatePalette"
   else
  revIDEOpenInspectorForObjects the long id of this cd of the topstack
   end if
end mouseUp

2. Open this stack as palette and put it wherever it suits you.

3. Click the button whenever you need the inspector for the current card :-)


Best

Klaus

--
Klaus Major
http://www.major-k.de
kl...@major-k.de


___
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

Accessing handler in LC resource stack

2016-02-07 Thread James Hale
Hi,

I am using the GLX framework with LC7 and have hit a snag.
Its application builder calls a handler in an LC resource stack 
"revStandaloneSettings.rev" which no longer exists.
Looking at the LC package I think it has been replaced by  
"revsaveasstandalone.livecodescript".
How do I address the handler from this script only stack file?
What is its path/syntax required?

James
___
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: HTML5 "Features" Library Substacks and "send ### in time"

2016-02-07 Thread [-hh]
Ciao,

[1] Firefox does NOT work any more since version 44.0 with
LC's HTML5-standalones. Sadly, because Firefox was up to
5 times faster with the standalones (with loading AND playing)
than other browsers.
ALL standalones are affected, no matter the dp version.
This is reported at Bugzilla@Mozilla, they really try to help us.
If I read that correct, it is even planned for Firefox 47.0 to
implement some backward-compatibilty.
Peter B. will 'repair' that from LC's side soon (8.0.0-dp15), you
then simply have to recompile your projects with the new version.

[2] LC 8.0.0-dp14 has with my tests a speed loss by factor of up
to 10 compared to dp9. [Will report in detail to QC tomorrow].
Hope your results are better. Please tell us.

[3] In general to HTML5:

PeterB. and the dev team is really working hard on all the nasty
detailed problems (you can see that immediately when reading at
github.com/livecode/livecode) with the HTML5-standalone builder.

==> There is an own HTML5-Subforum <===
http://forums.livecode.com/viewforum.php?f=120
Peter B. comes in regularly there and gave already a lot of
valuable information, nothing is unanswered until now.

For example the BIG problem of **implementing 'wait' or not**
is discussed at large there (and was already shortly discussed
here).

===
Hermann



___
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: Question About Resolution Independence

2016-02-07 Thread RM



On 7.02.2016 17:02, [-hh] wrote:

Out of curiosity, if that's not a typo:

my stack has a size of 1025*768

Is it the same if you use 1024*768 (exactly 4:3)?

___


I'm not entirely sure what the point of your message is . . .

However, what I can observe, at the risk of being accused
of gross facetiousness (Who? Me?), is that 1025 is a pixel larger
than 1024, so a stack that is 1025*768 pixels is most definitely not
the same as a 1024*768 stack.

Of course the obvious question has to be, "Why is your stack such
an awkward shape?"

Richmond.

___
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: Accessing handler in LC resource stack

2016-02-07 Thread [-hh]
James H. wrote:
> Hi, I am using the GLX framework with LC7 and have hit a snag.
> Its application builder calls a handler in an LC resource stack 
> "revStandaloneSettings.rev" which no longer exists. Looking at
> the LC package I think it has been replaced by 
> revsaveasstandalone.livecodescript".
> How do I address the handler from this script only stack file?
> What is its path/syntax required? James

[1] The Standalone Application Builder uses a custom property
of each stack, named cRevStandaloneSettings.
For example
the cRevStandaloneSettings["defaultBuildFolder"] of this stack

*Platform specific* properties are multi-dimensional written as
, for example
the cRevStandaloneSettings["Windows,companyname"] of this stack

Platform is one of (as of LC 8.0.0)
"Windows,MacOSX x86-32,Linux,Linux x64,Linux armv6-hf,Emscripten"
[Item 5 is for Raspi, currently only available in 7.0.4,
item 6 is for HTML5, available since 8.0.0-dp4.]

May be you'll find in that property what you need.

[2] If you have the path of the stack and the handlers name
(may have changed), the syntax should be still the same as before.

(You will know, but for some other readers the hint:
If you need a handler's name or wish to copy out a short one you
need to your script, you could use a text editor to open the
stack, or use Raspi stacks collection #44 = nuzzler7b.livecode
http://forums.livecode.com/viewtopic.php?p=112416#p112416
runs on Win/Mac/Linux/Raspi.)


___
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: Question About Resolution Independence

2016-02-07 Thread Colin Holgate
I imagine that 1025 was a typo, and it doesn’t affect the answer anyway.

To use Retina graphics you would use the iphoneUseDeviceResolution command to 
make the app run at the real resolution of the device.
___
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: LC 6.7.8 won't load

2016-02-07 Thread [-hh]
> Peter H. wrote:
> ...  Surprised it hasn't been fixed yet since 6.7.8 is dead in the water for 
> me.

Sadly it's all the same on MacOS**, from LC 6.7 to LC 8.0, also with newest
rc- or dp-releases.
I don't report repeatedly, because probably MacOS/SIPS is (more) the culprit.

__
** Mac OS 10.11.3 (also tested with newest MacOS 10 developer previews).
___
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: Accelerator Key for Card Inspector

2016-02-07 Thread RM



On 7.02.2016 04:52, Sannyasin Brahmanathaswami wrote:

I’m getting a repetitive shoulder/ wrist cramp from going to the Object menu 
over and over again for Card Inspector….(7.1.1)

is there a way to lock in the inspect to cards? so that as you move from card 
to card the inspector changes, but sticks on cards and does not revert to stack?

  or can set we set a custom keystroke for the card inspector?





You can use the menuEditor to mess around with the revMenuBar and set a 
Command/Control

character for the Card inspector.

Although, I, cannot for the life of me work out how to save my modification.

I am going to post this, complete with pretty pictures, in the Forums, 
to make things a bit clearer.


Richmond.

http://forums.livecode.com/viewtopic.php?f=9=26497=137678#p137678

___
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: How to launch a stack from a file.

2016-02-07 Thread Richard Gaskin

Michael Doub wrote:
> I am trying to build a simple launcher app and I am stumped as to how
> to load a stack from a file.  I have no problem loading it from my
> dropbox, but not from a local file.
>
> put
> /Users/mike/Library/Preferences/CueSheets/ridewithgps_cuesheets.livecode
> into localpath
>
> none of the following work:
>
> go stack localpath
> go stack url ("binfile:" & localpath)
> go stack url ("file:" & localpath)
>
> I have also tryed the "in a new window" clause
>
> What am I missing?

A check of "the result" immediately after the line that fails so you can 
find out what the engine's trying to tell you about how to fix it.


--
 Richard Gaskin
 Fourth World Systems
 Software Design and Development for Desktop, Mobile, and Web
 
 ambassa...@fourthworld.comhttp://www.FourthWorld.com


___
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


export card snapshot including browser window

2016-02-07 Thread Ralph DiMola
I export cards all the time with no problems. Now I need to export a card
the has LC fields at the top and bottom with a revbrowser in between. When I
do a "export snapshot from this card to file "somepath/somefile.png" as PNG"
the image contains everything on the card except for the content of the
revbrowser portion of the card. What am I missing?

I also need to make sure that the browser is done loading after a resize
before I export the card.

Ralph DiMola
IT Director
Evergreen Information Services
rdim...@evergreeninfo.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: LC 6.7.8 won't load

2016-02-07 Thread Mark Wieder

On 02/07/2016 01:14 PM, [-hh] wrote:

Peter H. wrote:

It looks like this is a plugin issue.  I removed all my plugins
and 6.7.8 now loads fine.  Will experiment to find which plugin
is causing the problem.


Tried your no-plugin-method. Had until now no startup-crash with
6.7.8, but two with 7.1.1 and one with 8.0.0-dp14.


Delete or rename your preferences file or folder and try again.
I find myself having to do this on a regular basis - there are some 
things in the preferences file that won't work across versions. And if 
you have a livecode.rev file then LC8 will grab the preferences from it 
to incorporate into livecode7.rev. Things are messed up after that.


--
 Mark Wieder
 ahsoftw...@gmail.com

___
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: LC 6.7.8 won't load

2016-02-07 Thread Mark Wieder

On 02/07/2016 01:54 PM, Peter Haworth wrote:

Thanks Mark.

I found the culprit that caused the 6.7.8 issue - a tiny little plugin I
write that loads at startup, although I'm not sure why the coding error in
it should cause LC to silently quit or why it didn't have the same effect
in other LC versions.


I've got a bug report about something similar... the glx2 script editor 
preferences stack loads fine for every LC version *execpt* 6.7.8, and 
only on OSX. It's a mystery to me.




I have separate prefs locations for 7 and pre-7.  Should I have a separate
one for 8?


Not if it's working for you. I've got a bug report pending about 
*something* in the preferences file that's incompatible between LC7 and 
LC8, and it seems to be inherited from the earlier prefs file. The 
annoying thing is that LC8 imports the bad setting on launch, not just 
on installation.


--
 Mark Wieder
 ahsoftw...@gmail.com

___
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: LC 6.7.8 won't load

2016-02-07 Thread Rick Harrison
I have told my Mac to never sleep because of weirdness
like that over many years.  I use the screen saver instead,
or shut it down if I’m not going to use it for a few hours.

Rick

> On Feb 7, 2016, at 2:28 PM, [-hh]  wrote:
> 
> Related to that
> (seems to be a well-known "random"-occurrence problem)
> #16112 8.0.0-dp6 Crash at startup
> #14264 7.0.1-GM1 Crash on startup
> 
> Also, for me:
> The probability increases if it is the first startup
> of LC after a machine sleep.
> 
> 
> ___
> 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

How to launch a stack from a file.

2016-02-07 Thread Michael Doub
I am trying to build a simple launcher app and I am stumped as to how to 
load a stack from a file.  I have no problem loading it from my dropbox, 
but not from a local file.


put 
/Users/mike/Library/Preferences/CueSheets/ridewithgps_cuesheets.livecode 
into localpath


none of the following work:

go stack localpath
go stack url ("binfile:" & localpath)
go stack url ("file:" & localpath)

I have also tryed the "in a new window" clause

What am I missing?

Thanks
   Mike





___
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: export card snapshot including browser window

2016-02-07 Thread Scott Rossi
First guess would be the browser is the type that's in its own rendered
layer and not really a card object.  If you haven't already, try exporting
from the rect of the card or stack, instead of exporting the card itself.

Regards,

Scott Rossi
Creative Director
Tactile Media, UX/UI Design




On 2/7/16, 1:24 PM, "use-livecode on behalf of Ralph DiMola"
 wrote:

>I export cards all the time with no problems. Now I need to export a card
>the has LC fields at the top and bottom with a revbrowser in between.
>When I
>do a "export snapshot from this card to file "somepath/somefile.png" as
>PNG"
>the image contains everything on the card except for the content of the
>revbrowser portion of the card. What am I missing?
>
>I also need to make sure that the browser is done loading after a resize
>before I export the card.
>
>Ralph DiMola
>IT Director
>Evergreen Information Services
>rdim...@evergreeninfo.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: LC 6.7.8 won't load

2016-02-07 Thread Peter Haworth
Thanks Mark.

I found the culprit that caused the 6.7.8 issue - a tiny little plugin I
write that loads at startup, although I'm not sure why the coding error in
it should cause LC to silently quit or why it didn't have the same effect
in other LC versions.

I have separate prefs locations for 7 and pre-7.  Should I have a separate
one for 8?

On Sun, Feb 7, 2016 at 1:46 PM Mark Wieder  wrote:

> On 02/07/2016 01:14 PM, [-hh] wrote:
> > Peter H. wrote:
> >> It looks like this is a plugin issue.  I removed all my plugins
> >> and 6.7.8 now loads fine.  Will experiment to find which plugin
> >> is causing the problem.
> >
> > Tried your no-plugin-method. Had until now no startup-crash with
> > 6.7.8, but two with 7.1.1 and one with 8.0.0-dp14.
>
> Delete or rename your preferences file or folder and try again.
> I find myself having to do this on a regular basis - there are some
> things in the preferences file that won't work across versions. And if
> you have a livecode.rev file then LC8 will grab the preferences from it
> to incorporate into livecode7.rev. Things are messed up after that.
>
> --
>   Mark Wieder
>   ahsoftw...@gmail.com
>
> ___
> 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: How to launch a stack from a file.

2016-02-07 Thread [-hh]
Mike D. wrote:
> I am trying to build a simple launcher app and I am stumped as to how to 
> load a stack from a file.  I have no problem loading it from my dropbox, 
> but not from a local file.
> 
> put 
> /Users/mike/Library/Preferences/CueSheets/ridewithgps_cuesheets.livecode 
> into localpath
> 
> none of the following work:
> 
> go stack localpath
> go stack url ("binfile:" & localpath)
> go stack url ("file:" & localpath)
> 
> I have also tryed the "in a new window" clause
> 
> What am I missing?

Obviously you are on Mac.
The first method should work. The other two not.
Hope you didn't forget the quotes around the path?


___
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: LC 6.7.8 won't load

2016-02-07 Thread [-hh]
Peter H. wrote:
> It looks like this is a plugin issue.  I removed all my plugins
> and 6.7.8 now loads fine.  Will experiment to find which plugin
> is causing the problem.

Tried your no-plugin-method. Had until now no startup-crash with
6.7.8, but two with 7.1.1 and one with 8.0.0-dp14.

Rick H. wrote:
> I have told my Mac to never sleep because of weirdness
> like that over many years.  I use the screen saver instead,
> or shut it down if I’m not going to use it for a few hours. Rick
> > On Feb 7, 2016, at 2:28 PM, [-hh]  wrote:
> > Related to that
> > (seems to be a well-known "random"-occurrence problem)
> > #16112 8.0.0-dp6 Crash at startup
> > #14264 7.0.1-GM1 Crash on startup
> > Also, for me:
> > The probability increases if it is the first startup
> > of LC after a machine sleep.

I had sometimes better results when ejecting a certain USB-2.0 drive
before a sleep (no change: thunderbolt drive). Yes, Mac will be
more involved with that than LC. But: Other apps don't crash here ...
___
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: LC 6.7.8 won't load

2016-02-07 Thread [-hh]
> Sounds like you may be experiencing something different. 6.7.8 is the only
> version that won't run for me. I've tried a half dozen time with the same
> result. Is there some sort of system logfile I can look at and include
> with a QCC report?
> On Sun, Feb 7, 2016 at 3:54 AM [-hh]  wrote:
> > > Peter H. wrote: 
> > > ... Surprised it hasn't been fixed yet since 6.7.8 is dead in the water 
> > for me. 
> >
> > Sadly it's all the same on MacOS**, from LC 6.7 to LC 8.0, also with newest 
> > rc- or dp-releases. 
> > I don't report repeatedly, because probably MacOS/SIPS is (more) the 
> > culprit. 
> >
> > __ 
> > ** Mac OS 10.11.3 (also tested with newest MacOS 10 developer previews). 
> > ___ 

Couldn't find a report in QC. Can remember now: I 'reported' it in
"forums/Bug  Triage" with 0 answers for 14 days or so, so I deleted it.
There was another problem with frequent relicensing in QC (for me connected
to that) but its better to open a new report in QC. Please do that.

I have a system log from just now for 6.7.8 Indy (the one that is offered
to send to Apple). I'll add it zipped to your report -- please use "startup"
in the header so I can find it fast.

hh
___
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: LC 6.7.8 won't load

2016-02-07 Thread [-hh]
Related to that
(seems to be a well-known "random"-occurrence problem)
#16112 8.0.0-dp6 Crash at startup
#14264 7.0.1-GM1 Crash on startup

Also, for me:
The probability increases if it is the first startup
of LC after a machine sleep.


___
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: Accessing handler in LC resource stack

2016-02-07 Thread Ali Lloyd
revsaveasstandalone.livecodescript is just a stack named
"revSaveAsStandalone", so can be referred to that way, eg dispatch
"handler" to stack "revSaveAsStandalone".

However, it *should* be in the backscripts already, so I think that may not
be the problem (unless the GLX framework explicitly call a handler in stack
"revSaveAsStandalone" of stack "revStandaloneSettings").

What handler is it?

On Sun, Feb 7, 2016 at 2:40 PM [-hh]  wrote:

> James H. wrote:
> > Hi, I am using the GLX framework with LC7 and have hit a snag.
> > Its application builder calls a handler in an LC resource stack
> "revStandaloneSettings.rev" which no longer exists. Looking at
> > the LC package I think it has been replaced by
> > revsaveasstandalone.livecodescript".
> > How do I address the handler from this script only stack file?
> > What is its path/syntax required? James
>
> [1] The Standalone Application Builder uses a custom property
> of each stack, named cRevStandaloneSettings.
> For example
> the cRevStandaloneSettings["defaultBuildFolder"] of this stack
>
> *Platform specific* properties are multi-dimensional written as
> , for example
> the cRevStandaloneSettings["Windows,companyname"] of this stack
>
> Platform is one of (as of LC 8.0.0)
> "Windows,MacOSX x86-32,Linux,Linux x64,Linux armv6-hf,Emscripten"
> [Item 5 is for Raspi, currently only available in 7.0.4,
> item 6 is for HTML5, available since 8.0.0-dp4.]
>
> May be you'll find in that property what you need.
>
> [2] If you have the path of the stack and the handlers name
> (may have changed), the syntax should be still the same as before.
>
> (You will know, but for some other readers the hint:
> If you need a handler's name or wish to copy out a short one you
> need to your script, you could use a text editor to open the
> stack, or use Raspi stacks collection #44 = nuzzler7b.livecode
> http://forums.livecode.com/viewtopic.php?p=112416#p112416
> runs on Win/Mac/Linux/Raspi.)
>
>
> ___
> 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: LC 6.7.8 won't load

2016-02-07 Thread Peter Haworth
It looks like this is a plugin issue.  I removed all my plugins and 6.7.8
now loads fine.  Will experiment to find which plugin is causing the
problem.

On Sun, Feb 7, 2016 at 10:45 AM [-hh]  wrote:

> > Sounds like you may be experiencing something different. 6.7.8 is the
> only
> > version that won't run for me. I've tried a half dozen time with the same
> > result. Is there some sort of system logfile I can look at and include
> > with a QCC report?
> > On Sun, Feb 7, 2016 at 3:54 AM [-hh]  wrote:
> > > > Peter H. wrote:
> > > > ... Surprised it hasn't been fixed yet since 6.7.8 is dead in the
> water
> > > for me.
> > >
> > > Sadly it's all the same on MacOS**, from LC 6.7 to LC 8.0, also with
> newest
> > > rc- or dp-releases.
> > > I don't report repeatedly, because probably MacOS/SIPS is (more) the
> > > culprit.
> > >
> > > __
> > > ** Mac OS 10.11.3 (also tested with newest MacOS 10 developer
> previews).
> > > ___
>
> Couldn't find a report in QC. Can remember now: I 'reported' it in
> "forums/Bug  Triage" with 0 answers for 14 days or so, so I deleted it.
> There was another problem with frequent relicensing in QC (for me connected
> to that) but its better to open a new report in QC. Please do that.
>
> I have a system log from just now for 6.7.8 Indy (the one that is offered
> to send to Apple). I'll add it zipped to your report -- please use
> "startup"
> in the header so I can find it fast.
>
> hh
> ___
> 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: LC 6.7.8 won't load

2016-02-07 Thread Peter Haworth
Sounds like you may be experiencing something different.  6.7.8 is the only
version that won't run for me.  I've tried a half dozen time with the same
result.

Is there some sort of system logfile I can look at and include with a QCC
report?

On Sun, Feb 7, 2016 at 3:54 AM [-hh]  wrote:

> > Peter H. wrote:
> > ...  Surprised it hasn't been fixed yet since 6.7.8 is dead in the water
> for me.
>
> Sadly it's all the same on MacOS**, from LC 6.7 to LC 8.0, also with newest
> rc- or dp-releases.
> I don't report repeatedly, because probably MacOS/SIPS is (more) the
> culprit.
>
> __
> ** Mac OS 10.11.3 (also tested with newest MacOS 10 developer previews).
> ___
> 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: Accessing handler in LC resource stack

2016-02-07 Thread jameshale
Ali Lloyd-2 wrote
> revsaveasstandalone.livecodescript is just a stack named
> "revSaveAsStandalone", so can be referred to that way, eg dispatch
> "handler" to stack "revSaveAsStandalone".
> 
> However, it *should* be in the backscripts already, so I think that may
> not
> be the problem (unless the GLX framework explicitly call a handler in
> stack
> "revSaveAsStandalone" of stack "revStandaloneSettings").

The handler is in the "glxApplicationProperties" plug-in that comes with
glx.

Specifically:
 send "revSaveAsStandalone theStack, theOutputFolder" to stack
"revSaveAsStandalone" of stack "revStandaloneSettings"

Looks explicit.

BTW This is in a TRY construct and this is where the error arises.
   91,72,1
   532,72,1





--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Accessing-handler-in-LC-resource-stack-tp4700856p4700881.html
Sent from the Revolution - User mailing list archive at Nabble.com.

___
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: Accessing handler in LC resource stack

2016-02-07 Thread Ali Lloyd
Ah ok, it just needs the ...of stack "revStandaloneSettings" removed then,
or should be changed to
revSaveAsStandalone theStack, theOutputFolder

On Mon, Feb 8, 2016 at 1:02 AM jameshale  wrote:

> Ali Lloyd-2 wrote
> > revsaveasstandalone.livecodescript is just a stack named
> > "revSaveAsStandalone", so can be referred to that way, eg dispatch
> > "handler" to stack "revSaveAsStandalone".
> >
> > However, it *should* be in the backscripts already, so I think that may
> > not
> > be the problem (unless the GLX framework explicitly call a handler in
> > stack
> > "revSaveAsStandalone" of stack "revStandaloneSettings").
>
> The handler is in the "glxApplicationProperties" plug-in that comes with
> glx.
>
> Specifically:
>  send "revSaveAsStandalone theStack, theOutputFolder" to stack
> "revSaveAsStandalone" of stack "revStandaloneSettings"
>
> Looks explicit.
>
> BTW This is in a TRY construct and this is where the error arises.
>91,72,1
>532,72,1
>
>
>
>
>
> --
> View this message in context:
> http://runtime-revolution.278305.n4.nabble.com/Accessing-handler-in-LC-resource-stack-tp4700856p4700881.html
> Sent from the Revolution - User mailing list archive at Nabble.com.
>
> ___
> 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: How to launch a stack from a file.

2016-02-07 Thread Michael Doub
Thanks Richard,   The stack was corrupted.   I had saved it with file: 
rather than binfile: All is well now.Good to know about checking 
the result.


-= Mike


On 2/7/16 2:40 PM, Richard Gaskin wrote:

Michael Doub wrote:
> I am trying to build a simple launcher app and I am stumped as to how
> to load a stack from a file.  I have no problem loading it from my
> dropbox, but not from a local file.
>
> put
> 
/Users/mike/Library/Preferences/CueSheets/ridewithgps_cuesheets.livecode

> into localpath
>
> none of the following work:
>
> go stack localpath
> go stack url ("binfile:" & localpath)
> go stack url ("file:" & localpath)
>
> I have also tryed the "in a new window" clause
>
> What am I missing?

A check of "the result" immediately after the line that fails so you 
can find out what the engine's trying to tell you about how to fix it.





___
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: Accessing handler in LC resource stack

2016-02-07 Thread jameshale
Thanks Ali,


> Ah ok, it just needs the ...of stack "revStandaloneSettings" removed then, 

Worked!


> or should be changed to revSaveAsStandalone theStack, theOutputFolder 

Didn't work (tried it first :-))



--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Accessing-handler-in-LC-resource-stack-tp4700856p4700884.html
Sent from the Revolution - User mailing list archive at Nabble.com.

___
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


Black icons in LC 8 DP 14

2016-02-07 Thread RM

?

Are these to become the standard revMenuBar button icons, or is this a blip?

If they are to become the standard revMenuBar button icons can there be 
a community

vote as to whether they are preferable over the previous coloured ones?

Richmond.

___
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