Re: Vertically aligning text in a field

2014-12-17 Thread Terence Heaford
Have Runrev been requested to provide vertically aligned text as part of LC as 
I presume they have ALL the dimensional information available to calculate this?

All the best

Terry


> On 16 Dec 2014, at 11:04, Mark Schonewille  
> wrote:
> 
> Hi Terry,
> 
> There's a long discussion about this on the forum. I believe I did a good 
> attempt, but Bernd's solution was probably the most reliable.
> 
> --
> Best regards,
> 
> Mark Schonewille
> 
> Economy-x-Talk Consulting and Software Engineering
> Homepage: http://economy-x-talk.com
> Twitter: http://twitter.com/xtalkprogrammer
> KvK: 50277553
> 
> Installer Maker for LiveCode:
> http://qery.us/468
> 
> Buy my new book "Programming LiveCode for the Real Beginner" 
> http://qery.us/3fi
> 
> LiveCode on Facebook:
> https://www.facebook.com/groups/runrev/
> 
> On 12/16/2014 11:54, Terence Heaford wrote:
>> Is there a definitive calculation that correctly sets the position of text 
>> vertically in a field?
>> 
>> I am using LC 6.7.
>> 
>> I have come across a few ideas like the one below that all appear to use an 
>> arbitrary offset to the margins, is there a method to calculate this 
>> accurately?
>> 
>>put the effective textSize of fld id tID into tTextSize
>>--   put round (((tTextSize - 22) * 1/3)) into tOffset
>>put round (((tTextSize - 24) * 1/3)) into tOffset
>>put the formattedheight of char 1 to - 1 of fld id tID into 
>> tFormattedHeight
>>put round((the height of fld id tID - tFormattedHeight) / 2) into 
>> tVerticalMargins
>>put tVerticalMargins - tOffset into tTopMargin
>>put tVerticalMargins + tOffset into tBottomMargin
>>set the margins of fld id tID to 8,tTopMargin,8,tBottomMargin
>> 
>> All the best
>> 
>> Terry
> 
> 
> ___
> 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: revBrowserAddJavaScriptHandler

2014-12-17 Thread Andrew Kluthe
John,

From what I see in the summerschool example and the release notes that you
posted, this feature does the inverse of what you are wanting. I'm not sure
how to do it the other way.

Andrew

On Wed, Dec 17, 2014 at 1:14 PM, Bob Sneidar 
wrote:
>
> Probably not helpful to you, since this is a web server issue, but on a
> Mac in the IDE I was able to tell Applescript to tell Acrobat to run a
> javascript. It’s a bit convoluted, but it works. It’s how I get the
> structure of a PDF form so I can fill it later. I wish I could figure out
> how to do that in Windows as well. Otherwise it’s  a Mac Only feature.
>
> Bob S
>
>
> > On Dec 17, 2014, at 09:26 , John Dixon  wrote:
> >
> >
> >
> >> Date: Wed, 17 Dec 2014 09:59:13 -0700
> >> Subject: Re: revBrowserAddJavaScriptHandler
> >> From: bonnm...@gmail.com
> >> To: use-livecode@lists.runrev.com
> >>
> >> You might look here:
> http://summerschool.livecode.com/index.php/sneak-peek
> >> theres a very simple, straightforward example a little ways down that
> page.
> >>
> > Thanks Mike... though I was hoping that there would be a few examples
> particuarly showing how to employ javaScript functions with it...
> >
> > Be well,
> >
> > Dixie
> >
> > ___
> > 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
>


-- 
Regards,

Andrew Kluthe
and...@ctech.me
___
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 Server Unable To Retrieve File From DropBox?

2014-12-17 Thread Scott Rossi
Thanks for the suggestion.  Based on the test below, there does seem to be a 
problem with accessing DropBox.

New script:

put url "https://dl.dropbox.com/s/6fpl18ihvt7ffbl/test-image.zip"; into file1
put the length of file1 into L1
put url "http://www.tactilemedia.com/download/test-image.zip"; into file2
put the length of file2 into L2
put "dropbox " & L1 & "" & "generic " & L2

The result I get here still shows the DropBox file to have a length of 0, yet 
the test file downloads as expected when accessed via a browser.

dropbox 0
generic 483575

Any other suggestions?

Thanks & Regards,

Scott Rossi 
Creative Director 
Tactile Media, UX/UI Design 

On Dec 17, 2014, at 3:55 PM, Alex Tweedly  wrote:

> 
> Scott,
> 
> you could try accessing some (any) other https: url to see if that works from 
> your server.
> 
> Might help you narrow down what to look at next :-)
> Sorry I can't come up with any better help.
> -- Alex.
> 
> On 17/12/2014 22:17, Scott Rossi wrote:
>> Hi Simon:
>> 
>> Well, I'm glad it works somewhere, but since it's not likely that I'll be 
>> using your LC server, this doesn't help me much.
>> 
>> I wonder if maybe the edition makes a difference.  Are you using the 
>> Commercial or Community edition?
>> 
>> Thanks & Regards,
>> 
>> Scott Rossi
>> Creative Director
>> Tactile Media UX/UI Design
>> 
>>> On Dec 17, 2014, at 1:15 PM, Simon Smith  wrote:
>>> 
>>> Hi Scott
>>> 
>>> Tried your script on my server - seems to work perfectly.
>>> 
>>> Outputs: 483575
>>> 
>>> Kind Regards
>>> Simon
>>> 
>>> On Wed, Dec 17, 2014 at 10:14 PM, Scott Rossi 
>>> wrote:
 Hi List:
 
 I¹m wondering if anyone has been using LC Server to serve files from
 DropBox.  Since updating LC Server to 6.7 on my host (DreamHost), it now
 seems to be unable to retrieve files from DropBox.
 
 With the following script:
 
 put url "https://dl.dropbox.com/s/6fpl18ihvt7ffbl/test-image.zip"; into
 theFile
put the length of theFile
 
 
 On a desktop system, this works as expected in the message box.
 
 On LC Server I get a value of 0.
 
 What am I missing here?  Is this perhaps some kind of cross-domain
 limitation?  Any way to make this work?
 
 Thanks & Regards,
 
 Scott Rossi
 Creative Director
 Tactile Media, UX/UI Design
 
 
 
 ___
 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
>> ___
>> 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


___
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 Server Unable To Retrieve File From DropBox?

2014-12-17 Thread Alex Tweedly


Scott,

you could try accessing some (any) other https: url to see if that works 
from your server.


Might help you narrow down what to look at next :-)
Sorry I can't come up with any better help.
-- Alex.

On 17/12/2014 22:17, Scott Rossi wrote:

Hi Simon:

Well, I'm glad it works somewhere, but since it's not likely that I'll be using 
your LC server, this doesn't help me much.

I wonder if maybe the edition makes a difference.  Are you using the Commercial 
or Community edition?

Thanks & Regards,

Scott Rossi
Creative Director
Tactile Media UX/UI Design


On Dec 17, 2014, at 1:15 PM, Simon Smith  wrote:

Hi Scott

Tried your script on my server - seems to work perfectly.

Outputs: 483575

Kind Regards
Simon

On Wed, Dec 17, 2014 at 10:14 PM, Scott Rossi 
wrote:

Hi List:

I¹m wondering if anyone has been using LC Server to serve files from
DropBox.  Since updating LC Server to 6.7 on my host (DreamHost), it now
seems to be unable to retrieve files from DropBox.

With the following script:

put url "https://dl.dropbox.com/s/6fpl18ihvt7ffbl/test-image.zip"; into
theFile
put the length of theFile


On a desktop system, this works as expected in the message box.

On LC Server I get a value of 0.

What am I missing here?  Is this perhaps some kind of cross-domain
limitation?  Any way to make this work?

Thanks & Regards,

Scott Rossi
Creative Director
Tactile Media, UX/UI Design



___
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

___
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 Server Unable To Retrieve File From DropBox?

2014-12-17 Thread Simon Smith
Hi

:)

I am running the community edition, version 6.5.2 if I remember correctly.

Kind Regards
Simon

On Thu, Dec 18, 2014 at 12:17 AM, Scott Rossi 
wrote:
>
> Hi Simon:
>
> Well, I'm glad it works somewhere, but since it's not likely that I'll be
> using your LC server, this doesn't help me much.
>
> I wonder if maybe the edition makes a difference.  Are you using the
> Commercial or Community edition?
>
> Thanks & Regards,
>
> Scott Rossi
> Creative Director
> Tactile Media UX/UI Design
>
> > On Dec 17, 2014, at 1:15 PM, Simon Smith  wrote:
> >
> > Hi Scott
> >
> > Tried your script on my server - seems to work perfectly.
> >
> > Outputs: 483575
> >
> > Kind Regards
> > Simon
> >
> > On Wed, Dec 17, 2014 at 10:14 PM, Scott Rossi 
> > wrote:
> >>
> >> Hi List:
> >>
> >> I¹m wondering if anyone has been using LC Server to serve files from
> >> DropBox.  Since updating LC Server to 6.7 on my host (DreamHost), it now
> >> seems to be unable to retrieve files from DropBox.
> >>
> >> With the following script:
> >>
> >> put url "https://dl.dropbox.com/s/6fpl18ihvt7ffbl/test-image.zip"; into
> >> theFile
> >>put the length of theFile
> >>
> >>
> >> On a desktop system, this works as expected in the message box.
> >>
> >> On LC Server I get a value of 0.
> >>
> >> What am I missing here?  Is this perhaps some kind of cross-domain
> >> limitation?  Any way to make this work?
> >>
> >> Thanks & Regards,
> >>
> >> Scott Rossi
> >> Creative Director
> >> Tactile Media, UX/UI Design
> >>
> >>
> >>
> >> ___
> >> 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
>
> ___
> 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
>


-- 

*Simon Smith*
*seo, online marketing, web development*

w. http://www.simonsmith.co
m. +27 83 306 7862
___
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 Server Unable To Retrieve File From DropBox?

2014-12-17 Thread Scott Rossi
Hi Simon:

Well, I'm glad it works somewhere, but since it's not likely that I'll be using 
your LC server, this doesn't help me much.

I wonder if maybe the edition makes a difference.  Are you using the Commercial 
or Community edition?

Thanks & Regards,

Scott Rossi
Creative Director
Tactile Media UX/UI Design

> On Dec 17, 2014, at 1:15 PM, Simon Smith  wrote:
> 
> Hi Scott
> 
> Tried your script on my server - seems to work perfectly.
> 
> Outputs: 483575
> 
> Kind Regards
> Simon
> 
> On Wed, Dec 17, 2014 at 10:14 PM, Scott Rossi 
> wrote:
>> 
>> Hi List:
>> 
>> I¹m wondering if anyone has been using LC Server to serve files from
>> DropBox.  Since updating LC Server to 6.7 on my host (DreamHost), it now
>> seems to be unable to retrieve files from DropBox.
>> 
>> With the following script:
>> 
>> put url "https://dl.dropbox.com/s/6fpl18ihvt7ffbl/test-image.zip"; into
>> theFile
>>put the length of theFile
>> 
>> 
>> On a desktop system, this works as expected in the message box.
>> 
>> On LC Server I get a value of 0.
>> 
>> What am I missing here?  Is this perhaps some kind of cross-domain
>> limitation?  Any way to make this work?
>> 
>> Thanks & Regards,
>> 
>> Scott Rossi
>> Creative Director
>> Tactile Media, UX/UI Design
>> 
>> 
>> 
>> ___
>> 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

___
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: Andre Garcia's FacebookLib

2014-12-17 Thread Gerry
Andre has responded. So hopefully the issue will be sorted out soon.

Gerry


On Thu, 18 Dec 2014 at 7:15 am, Gerry  wrote:

> Bob, it's not a LiveCode version problem. Facebook has changed something
> in the way they do authentication. Andre needs to update the library.
>
> Gerry
> On Thu, 18 Dec 2014 at 7:11 am, Kevin Miller  wrote:
>
>> We do monitor this list. However as ever our focus has to be on
>> ³actionable intelligence², I.e. bug reports filed in the QA center with a
>> recipe. We¹re extremely active responding on there.
>>
>> Kind regards,
>>
>> Kevin
>>
>> Kevin Miller ~ ke...@livecode.com ~ http://www.livecode.com/
>> LiveCode: Everyone can create apps
>>
>>
>>
>>
>> On 17/12/2014 19:19, "Bob Sneidar"  wrote:
>>
>> >Mine experience has been good as well. And I *really* like Livecode, so I
>> >try to refrain from openly criticizing their work, and cringe when I see
>> >others doing so. I think what they have produced is nothing short of
>> >spectacular. I am not a ³software developer² by *any* means, and yet I
>> >have produced at least two functional apps for use internally that both
>> >have promise if I decide to commercially distribute them.
>> >
>> >Bob S
>> >
>> >
>> >> On Dec 17, 2014, at 08:39 , Dave Kilroy 
>> >>wrote:
>> >>
>> >> Bob, I certainly hope not! My experience of customer support from
>> >>RunRev is
>> >> that is has been uniformly excellent and their helpfulness compares
>> very
>> >> well with most other companies...
>> >>
>> >>
>> >> Bob Sneidar-2 wrote
>> >>> Thank goodness the software engineers do *NOT* monitor this list. They
>> >>> would likely have become severely depressed by the criticism here, and
>> >>>all
>> >>> given up out of despair and depression. They would probably be in
>> >>>therapy
>> >>> by now.
>> >>
>> >>
>> >>
>> >>
>> >>
>> >> -
>> >> "Some are born coders, some achieve coding, and some have coding thrust
>> >>upon them." - William Shakespeare & Hugh Senior
>> >>
>> >> --
>> >> View this message in context:
>> >>http://runtime-revolution.278305.n4.nabble.com/Andre-Garci
>> a-s-FacebookLib
>> >>-tp4686859p4686886.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
>>
>>
>>
>> ___
>> 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 Server Unable To Retrieve File From DropBox?

2014-12-17 Thread Simon Smith
Hi Scott

Tried your script on my server - seems to work perfectly.

Outputs: 483575

Kind Regards
Simon

On Wed, Dec 17, 2014 at 10:14 PM, Scott Rossi 
wrote:
>
> Hi List:
>
> I¹m wondering if anyone has been using LC Server to serve files from
> DropBox.  Since updating LC Server to 6.7 on my host (DreamHost), it now
> seems to be unable to retrieve files from DropBox.
>
> With the following script:
>
> put url "https://dl.dropbox.com/s/6fpl18ihvt7ffbl/test-image.zip"; into
> theFile
> put the length of theFile
>
>
> On a desktop system, this works as expected in the message box.
>
> On LC Server I get a value of 0.
>
> What am I missing here?  Is this perhaps some kind of cross-domain
> limitation?  Any way to make this work?
>
> Thanks & Regards,
>
> Scott Rossi
> Creative Director
> Tactile Media, UX/UI Design
>
>
>
> ___
> 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: Andre Garcia's FacebookLib

2014-12-17 Thread Gerry
Bob, it's not a LiveCode version problem. Facebook has changed something in
the way they do authentication. Andre needs to update the library.

Gerry
On Thu, 18 Dec 2014 at 7:11 am, Kevin Miller  wrote:

> We do monitor this list. However as ever our focus has to be on
> ³actionable intelligence², I.e. bug reports filed in the QA center with a
> recipe. We¹re extremely active responding on there.
>
> Kind regards,
>
> Kevin
>
> Kevin Miller ~ ke...@livecode.com ~ http://www.livecode.com/
> LiveCode: Everyone can create apps
>
>
>
>
> On 17/12/2014 19:19, "Bob Sneidar"  wrote:
>
> >Mine experience has been good as well. And I *really* like Livecode, so I
> >try to refrain from openly criticizing their work, and cringe when I see
> >others doing so. I think what they have produced is nothing short of
> >spectacular. I am not a ³software developer² by *any* means, and yet I
> >have produced at least two functional apps for use internally that both
> >have promise if I decide to commercially distribute them.
> >
> >Bob S
> >
> >
> >> On Dec 17, 2014, at 08:39 , Dave Kilroy 
> >>wrote:
> >>
> >> Bob, I certainly hope not! My experience of customer support from
> >>RunRev is
> >> that is has been uniformly excellent and their helpfulness compares very
> >> well with most other companies...
> >>
> >>
> >> Bob Sneidar-2 wrote
> >>> Thank goodness the software engineers do *NOT* monitor this list. They
> >>> would likely have become severely depressed by the criticism here, and
> >>>all
> >>> given up out of despair and depression. They would probably be in
> >>>therapy
> >>> by now.
> >>
> >>
> >>
> >>
> >>
> >> -
> >> "Some are born coders, some achieve coding, and some have coding thrust
> >>upon them." - William Shakespeare & Hugh Senior
> >>
> >> --
> >> View this message in context:
> >>http://runtime-revolution.278305.n4.nabble.com/Andre-
> Garcia-s-FacebookLib
> >>-tp4686859p4686886.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
>
>
>
> ___
> 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


LC Server Unable To Retrieve File From DropBox?

2014-12-17 Thread Scott Rossi
Hi List:

I¹m wondering if anyone has been using LC Server to serve files from
DropBox.  Since updating LC Server to 6.7 on my host (DreamHost), it now
seems to be unable to retrieve files from DropBox.

With the following script:

put url "https://dl.dropbox.com/s/6fpl18ihvt7ffbl/test-image.zip"; into
theFile 
put the length of theFile


On a desktop system, this works as expected in the message box.

On LC Server I get a value of 0.

What am I missing here?  Is this perhaps some kind of cross-domain
limitation?  Any way to make this work?

Thanks & Regards,

Scott Rossi
Creative Director
Tactile Media, UX/UI Design



___
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: Common cartridge

2014-12-17 Thread Richmond

http://www.imsglobal.org/cc/

Seems to consist of lots of words that are actually very difficult to 
pin down as to what they actually mean: committee work.


Richmcond.

___
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: Andre Garcia's FacebookLib

2014-12-17 Thread Kevin Miller
We do monitor this list. However as ever our focus has to be on
³actionable intelligence², I.e. bug reports filed in the QA center with a
recipe. We¹re extremely active responding on there.

Kind regards,

Kevin

Kevin Miller ~ ke...@livecode.com ~ http://www.livecode.com/
LiveCode: Everyone can create apps




On 17/12/2014 19:19, "Bob Sneidar"  wrote:

>Mine experience has been good as well. And I *really* like Livecode, so I
>try to refrain from openly criticizing their work, and cringe when I see
>others doing so. I think what they have produced is nothing short of
>spectacular. I am not a ³software developer² by *any* means, and yet I
>have produced at least two functional apps for use internally that both
>have promise if I decide to commercially distribute them.
>
>Bob S
>
>
>> On Dec 17, 2014, at 08:39 , Dave Kilroy 
>>wrote:
>> 
>> Bob, I certainly hope not! My experience of customer support from
>>RunRev is
>> that is has been uniformly excellent and their helpfulness compares very
>> well with most other companies...
>> 
>> 
>> Bob Sneidar-2 wrote
>>> Thank goodness the software engineers do *NOT* monitor this list. They
>>> would likely have become severely depressed by the criticism here, and
>>>all
>>> given up out of despair and depression. They would probably be in
>>>therapy
>>> by now. 
>> 
>> 
>> 
>> 
>> 
>> -
>> "Some are born coders, some achieve coding, and some have coding thrust
>>upon them." - William Shakespeare & Hugh Senior
>> 
>> --
>> View this message in context:
>>http://runtime-revolution.278305.n4.nabble.com/Andre-Garcia-s-FacebookLib
>>-tp4686859p4686886.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



___
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: Andre Garcia's FacebookLib

2014-12-17 Thread Bob Sneidar
Mine experience has been good as well. And I *really* like Livecode, so I try 
to refrain from openly criticizing their work, and cringe when I see others 
doing so. I think what they have produced is nothing short of spectacular. I am 
not a “software developer” by *any* means, and yet I have produced at least two 
functional apps for use internally that both have promise if I decide to 
commercially distribute them. 

Bob S


> On Dec 17, 2014, at 08:39 , Dave Kilroy  wrote:
> 
> Bob, I certainly hope not! My experience of customer support from RunRev is
> that is has been uniformly excellent and their helpfulness compares very
> well with most other companies...
> 
> 
> Bob Sneidar-2 wrote
>> Thank goodness the software engineers do *NOT* monitor this list. They
>> would likely have become severely depressed by the criticism here, and all
>> given up out of despair and depression. They would probably be in therapy
>> by now. 
> 
> 
> 
> 
> 
> -
> "Some are born coders, some achieve coding, and some have coding thrust upon 
> them." - William Shakespeare & Hugh Senior
> 
> --
> View this message in context: 
> http://runtime-revolution.278305.n4.nabble.com/Andre-Garcia-s-FacebookLib-tp4686859p4686886.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: revBrowserAddJavaScriptHandler

2014-12-17 Thread Bob Sneidar
Probably not helpful to you, since this is a web server issue, but on a Mac in 
the IDE I was able to tell Applescript to tell Acrobat to run a javascript. 
It’s a bit convoluted, but it works. It’s how I get the structure of a PDF form 
so I can fill it later. I wish I could figure out how to do that in Windows as 
well. Otherwise it’s  a Mac Only feature. 

Bob S


> On Dec 17, 2014, at 09:26 , John Dixon  wrote:
> 
> 
> 
>> Date: Wed, 17 Dec 2014 09:59:13 -0700
>> Subject: Re: revBrowserAddJavaScriptHandler
>> From: bonnm...@gmail.com
>> To: use-livecode@lists.runrev.com
>> 
>> You might look here: http://summerschool.livecode.com/index.php/sneak-peek
>> theres a very simple, straightforward example a little ways down that page.
>> 
> Thanks Mike... though I was hoping that there would be a few examples 
> particuarly showing how to employ javaScript functions with it...
> 
> Be well,
> 
> Dixie
> 
> ___
> 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: Common cartridge

2014-12-17 Thread Ray

Bill - thanks for the link.  I'm going to study this.

On 12/17/2014 2:57 PM, Ralph DiMola wrote:

Great(sigh). I just got my mind wrapped around SCORM 1.2. We just produced a
sample SCORM 1.2 to a customer for an RFQ. Now it's time to dig into Common
Cartridge.

Ralph DiMola
IT Director
Evergreen Information Services
rdim...@evergreeninfo.net

-Original Message-
From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf
Of EED-wp Email
Sent: Wednesday, December 17, 2014 12:29 PM
To: How to use LiveCode
Subject: Re: Common cartridge

I think it has the same purpose but is more appropriate for new learning
management software. Seems to be "the new thing".
Bill

William Prothero
http://ed.earthednet.org


On Dec 17, 2014, at 9:04 AM, Ray  wrote:

Bill - is this in some way related to SCORM standards?


On 12/17/2014 2:00 PM, EED-wp Email wrote:
Folks
I just heard about "Common Cartridge" which is supposed to be the new way

of interfacing learning objects (apps, web modules, whatever) to learning
management systems. I'm curious if anybody has used this or looked into it.
Seems like it would be an interface that would be important for those of us
who create learning apps.

Best
Bill

William Prothero
http://ed.earthednet.org


___
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

___
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



___
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: Common cartridge

2014-12-17 Thread Ralph DiMola
Great(sigh). I just got my mind wrapped around SCORM 1.2. We just produced a
sample SCORM 1.2 to a customer for an RFQ. Now it's time to dig into Common
Cartridge.

Ralph DiMola
IT Director
Evergreen Information Services
rdim...@evergreeninfo.net

-Original Message-
From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf
Of EED-wp Email
Sent: Wednesday, December 17, 2014 12:29 PM
To: How to use LiveCode
Subject: Re: Common cartridge

I think it has the same purpose but is more appropriate for new learning
management software. Seems to be "the new thing".
Bill

William Prothero
http://ed.earthednet.org

> On Dec 17, 2014, at 9:04 AM, Ray  wrote:
> 
> Bill - is this in some way related to SCORM standards?
> 
>> On 12/17/2014 2:00 PM, EED-wp Email wrote:
>> Folks
>> I just heard about "Common Cartridge" which is supposed to be the new way
of interfacing learning objects (apps, web modules, whatever) to learning
management systems. I'm curious if anybody has used this or looked into it.
Seems like it would be an interface that would be important for those of us
who create learning apps.
>> 
>> Best
>> Bill
>> 
>> William Prothero
>> http://ed.earthednet.org
>> 
>> 
>> ___
>> 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

___
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: revBrowserAddJavaScriptHandler

2014-12-17 Thread Mike Bonner
I tried the example there, all I can get it to do is.. lock up.

As far as combining javascript and livecode, I'd say it depends on what you
want to do.  If you can get the example from that page working, it would be
a great start as far as sending data from the page to lc for processing.
If you need the javascript to do something first, my guess would be a dual
function type of thing.  Have a function that does something (say generate
a random number to keep it simple)  that then calls another function as in
that example that sends the results back to an LC handler for additional
processing. THen to make it run (initiated from LC) revbrowsercallscript to
trigger the first function which does the javascript side, which then
triggers the second function which calls the lc handler.


Of course all of this requires that it work at all. So far, even the one
example just fails and hangs.


On Wed, Dec 17, 2014 at 10:26 AM, John Dixon  wrote:
>
>
>
> > Date: Wed, 17 Dec 2014 09:59:13 -0700
> > Subject: Re: revBrowserAddJavaScriptHandler
> > From: bonnm...@gmail.com
> > To: use-livecode@lists.runrev.com
> >
> > You might look here:
> http://summerschool.livecode.com/index.php/sneak-peek
> > theres a very simple, straightforward example a little ways down that
> page.
> >
> Thanks Mike... though I was hoping that there would be a few examples
> particuarly showing how to employ javaScript functions with it...
>
> Be well,
>
> Dixie
>
> ___
> 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: Common cartridge

2014-12-17 Thread EED-wp Email
Here is a link to the sponsoring org 
http://www.imsglobal.org/cc/alliance.html
Bill

William Prothero
http://ed.earthednet.org

> On Dec 17, 2014, at 9:04 AM, Ray  wrote:
> 
> Bill - is this in some way related to SCORM standards?
> 
>> On 12/17/2014 2:00 PM, EED-wp Email wrote:
>> Folks
>> I just heard about "Common Cartridge" which is supposed to be the new way of 
>> interfacing learning objects (apps, web modules, whatever) to learning 
>> management systems. I'm curious if anybody has used this or looked into it. 
>> Seems like it would be an interface that would be important for those of us 
>> who create learning apps.
>> 
>> Best
>> Bill
>> 
>> William Prothero
>> http://ed.earthednet.org
>> 
>> 
>> ___
>> 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

___
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: Common cartridge

2014-12-17 Thread EED-wp Email
I think it has the same purpose but is more appropriate for new learning 
management software. Seems to be "the new thing".
Bill

William Prothero
http://ed.earthednet.org

> On Dec 17, 2014, at 9:04 AM, Ray  wrote:
> 
> Bill - is this in some way related to SCORM standards?
> 
>> On 12/17/2014 2:00 PM, EED-wp Email wrote:
>> Folks
>> I just heard about "Common Cartridge" which is supposed to be the new way of 
>> interfacing learning objects (apps, web modules, whatever) to learning 
>> management systems. I'm curious if anybody has used this or looked into it. 
>> Seems like it would be an interface that would be important for those of us 
>> who create learning apps.
>> 
>> Best
>> Bill
>> 
>> William Prothero
>> http://ed.earthednet.org
>> 
>> 
>> ___
>> 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

___
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: revBrowserAddJavaScriptHandler

2014-12-17 Thread John Dixon


> Date: Wed, 17 Dec 2014 09:59:13 -0700
> Subject: Re: revBrowserAddJavaScriptHandler
> From: bonnm...@gmail.com
> To: use-livecode@lists.runrev.com
> 
> You might look here: http://summerschool.livecode.com/index.php/sneak-peek
> theres a very simple, straightforward example a little ways down that page.
> 
Thanks Mike... though I was hoping that there would be a few examples 
particuarly showing how to employ javaScript functions with it...

Be well,

Dixie
  
___
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: Common cartridge

2014-12-17 Thread Ray

Bill - is this in some way related to SCORM standards?

On 12/17/2014 2:00 PM, EED-wp Email wrote:

Folks
I just heard about "Common Cartridge" which is supposed to be the new way of 
interfacing learning objects (apps, web modules, whatever) to learning management 
systems. I'm curious if anybody has used this or looked into it. Seems like it would be 
an interface that would be important for those of us who create learning apps.

Best
Bill

William Prothero
http://ed.earthednet.org


___
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


Common cartridge

2014-12-17 Thread EED-wp Email
Folks
I just heard about "Common Cartridge" which is supposed to be the new way of 
interfacing learning objects (apps, web modules, whatever) to learning 
management systems. I'm curious if anybody has used this or looked into it. 
Seems like it would be an interface that would be important for those of us who 
create learning apps.

Best
Bill

William Prothero
http://ed.earthednet.org


___
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: revBrowserAddJavaScriptHandler

2014-12-17 Thread Mike Bonner
You might look here: http://summerschool.livecode.com/index.php/sneak-peek
theres a very simple, straightforward example a little ways down that page.

On Wed, Dec 17, 2014 at 9:22 AM, John Dixon  wrote:
>
> I have determined that I am stupid...:-)
>
> I am having problems with this... in that I don't understand how to
> implement it at all. Has anyone been using this new command ?... I have
> been trying to use it to call functions in the google maps to do various
> things such as place markers, draw polylines, plot routes... and have
> failed miserably..
>
> I am unable to find 'any' working examples !... Anyone know if they exist
> and if so where are they hidden ?
>
> -- from 6.7 release notes--
>
> The new chrome browser allows us to add the ability to call LiveCode
> handlers from within the browser using
> JavaScript. To make a LiveCode handler visible to JavaScript, use the
> revBrowserAddJavaScriptHandler
> command, and to remove it use the revBrowserRemoveJavaScriptHandler
> command. LiveCode handlers are
> added as functions with the same name attached to a global 'liveCode'
> object. When called, these functions
> will result in the corresponding LiveCode handler message being sent to
> the browser card with the browser
> instance ID and any function arguments as parameters.
>
> Example:
> With the handler "myJSHandler" registered using
> revBrowserAddJavaScriptHandler, it can be called from
> the browser like so:
>
> liveCode.myJSHandler(tFieldContents, tAction);
> the LiveCode handler would then be called with the following parameters:
>
> pBrowserInstance (the browser instance id, as returned from the
> revOpenBrowserCef function)
> pFieldContents (the first argument of the JavaScript function call)
> pAction (the second argument of the JavaScript function call)
>
> thanks,
>
> Dixie
>
> ___
> 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: 7.0.1-RC4 crashing regularly

2014-12-17 Thread Peter Bogdanoff
I’m having crashes on save also.

Playing audio with the new AVFoundation player is whacked (I’m on Mavericks). 
I’m able to play multiple instances of the same audio file simultaneously 
through the one player, each playing to the end of the file but not 
controllable by the controller.

Other issues with the player as well show up in my large project which is very 
dependent on interactive audio with synced visuals. It all works in QuickTime, 
but QT has had resources and years to iron out bugs. I’m concerned that the new 
player is going to take a lot of my time reporting and documenting bugs, making 
sample stacks, and waiting for them to be fixed. My project is also 
multi-lingual (English-Chinese) which requires the Unicode improvements in LC7.

Peter Bogdanoff
UCLA


On Dec 16, 2014, at 4:14 PM, Dr. Hawkins  wrote:

> On Tue, Dec 16, 2014 at 4:06 PM, Richard Gaskin 
> wrote:
>> 
>> This save bug seems like a particularly nasty regression, but the bug
>> reports from Eric and Trevor hopefully RunRev will get an RC5 out ASAP.
> 
> 
> I am now fairly certain that it became bad in RC3.
> 
> I'm using RC2 now, and have only had one crash in half an hour.
> 
> 
> -- 
> Dr. Richard E. Hawkins, Esq.
> (702) 508-8462
> ___
> 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: Andre Garcia's FacebookLib

2014-12-17 Thread Dave Kilroy
Bob, I certainly hope not! My experience of customer support from RunRev is
that is has been uniformly excellent and their helpfulness compares very
well with most other companies...


Bob Sneidar-2 wrote
> Thank goodness the software engineers do *NOT* monitor this list. They
> would likely have become severely depressed by the criticism here, and all
> given up out of despair and depression. They would probably be in therapy
> by now. 





-
"Some are born coders, some achieve coding, and some have coding thrust upon 
them." - William Shakespeare & Hugh Senior

--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Andre-Garcia-s-FacebookLib-tp4686859p4686886.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: controlids and controlnames properties

2014-12-17 Thread Klaus major-k
Hi Bob,

> Am 17.12.2014 um 17:15 schrieb Bob Sneidar :
> 
> Yes as I said, since my threading in my email for this list is now completely 
> hosed, I get everyone’s responses
> way up the list of emails after the original was sent. I think it has to do 
> with some people using the mailing list
> and others using the web portal. 

OK, "thou shalt be forgiven"! :-)

> Bob S
>> On Dec 17, 2014, at 07:57 , Klaus major-k  wrote:
>> Good morning Bob,
>>> Am 17.12.2014 um 16:55 schrieb Bob Sneidar :
>>> Whoops!
>>> put the controlidsof card "TRANS-HAL" of stack "DWPro" \
>>> & " - " & \
>>> the controlnames of card "TRANS-HAL" of stack "DWPro" into fld "IDZ" of 
>>> stack “Cheese”
>> thank you, we already cleared this out the day before yesterday :-D

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

revBrowserAddJavaScriptHandler

2014-12-17 Thread John Dixon
I have determined that I am stupid...:-)

I am having problems with this... in that I don't understand how to implement 
it at all. Has anyone been using this new command ?... I have been trying to 
use it to call functions in the google maps to do various things such as place 
markers, draw polylines, plot routes... and have failed miserably..

I am unable to find 'any' working examples !... Anyone know if they exist and 
if so where are they hidden ?

-- from 6.7 release notes--

The new chrome browser allows us to add the ability to call LiveCode handlers 
from within the browser using
JavaScript. To make a LiveCode handler visible to JavaScript, use the 
revBrowserAddJavaScriptHandler
command, and to remove it use the revBrowserRemoveJavaScriptHandler command. 
LiveCode handlers are
added as functions with the same name attached to a global 'liveCode' object. 
When called, these functions
will result in the corresponding LiveCode handler message being sent to the 
browser card with the browser
instance ID and any function arguments as parameters.

Example:
With the handler "myJSHandler" registered using revBrowserAddJavaScriptHandler, 
it can be called from
the browser like so:

liveCode.myJSHandler(tFieldContents, tAction);
the LiveCode handler would then be called with the following parameters:

pBrowserInstance (the browser instance id, as returned from the 
revOpenBrowserCef function)
pFieldContents (the first argument of the JavaScript function call)
pAction (the second argument of the JavaScript function call)

thanks,

Dixie
  
___
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: controlids and controlnames properties

2014-12-17 Thread Bob Sneidar
Yes as I said, since my threading in my email for this list is now completely 
hosed, I get everyone’s responses way up the list of emails after the original 
was sent. I think it has to do with some people using the mailing list and 
others using the web portal. 

Bob S


> On Dec 17, 2014, at 07:57 , Klaus major-k  wrote:
> 
> Good morning Bob,
> 
>> Am 17.12.2014 um 16:55 schrieb Bob Sneidar :
>> 
>> Whoops!
>> 
>> put the controlidsof card "TRANS-HAL" of stack "DWPro" \
>> & " - " & \
>> the controlnames of card "TRANS-HAL" of stack "DWPro" into fld "IDZ" of 
>> stack “Cheese”
> 
> thank you, we already cleared this out the day before yesterday :-D
> 
> 
> 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

___
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: controlids and controlnames properties

2014-12-17 Thread Klaus major-k
Good morning Bob,

> Am 17.12.2014 um 16:55 schrieb Bob Sneidar :
> 
> Whoops!
> 
> put the controlidsof card "TRANS-HAL" of stack "DWPro" \
> & " - " & \
> the controlnames of card "TRANS-HAL" of stack "DWPro" into fld "IDZ" of stack 
> “Cheese”

thank you, we already cleared this out the day before yesterday :-D


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

Re: 7.0.1-RC4 crashing regularly

2014-12-17 Thread J. Landman Gay
I've been doing all client work in 6.6.5 which I've found to be very stable. My 
client is running what I write in 6.7 without issues. Both of these are stable 
releases and have the feature you need. You might try one of those until 7.0 
gets sorted out. 

On December 17, 2014 8:36:42 AM CST, "Dr. Hawkins"  wrote:
>
>The choice isn't 7 or 5.5; it's 7 or dump livecode.  The lack of
>scaling
>when preparing forms is a show-stopper.

-- 
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.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: controlids and controlnames properties

2014-12-17 Thread Bob Sneidar
Whoops!

put the controlidsof card "TRANS-HAL" of stack "DWPro" \
& " - " & \
the controlnames of card "TRANS-HAL" of stack "DWPro" into fld "IDZ" of stack 
“Cheese”


___
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: Andre Garcia's FacebookLib

2014-12-17 Thread Bob Sneidar
Thank goodness the software engineers do *NOT* monitor this list. They would 
likely have become severely depressed by the criticism here, and all given up 
out of despair and depression. They would probably be in therapy by now. 

Bob S


> On Dec 17, 2014, at 06:38 , Dr. Hawkins  wrote:
> 
> On Tue, Dec 16, 2014 at 11:14 PM, Mark Schonewille <
> m.schonewi...@economy-x-talk.com> wrote:
>> 
>> LiveCode is a commercial product too. Quite a few bugs were reported a
>> decade ago and were not fixed.
>> 
> 
> Livecode is hardly a decent example of upgrade and  maintenance for a
> commercial product . . .
> 
> 
> -- 
> Dr. Richard E. Hawkins, Esq.
> (702) 508-8462
> ___
> 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: Andre Garcia's FacebookLib

2014-12-17 Thread Bob Sneidar
What version of LC was compatible with FacebookLib? Go back and use that until 
it’s resolved. If you think that’s not normal, I just had to rollback Exchange 
SP3 rollup 8 because of a serious bug. 

Bob S


> On Dec 17, 2014, at 01:37 , Gerry  wrote:
> 
> Yep but the LiveCode product is largely usable in spite of those bugs. The
> Facebook lib isn't at functional right now.
> 
> See the difference?
> 
> Gerry
> On Wed, 17 Dec 2014 at 6:14 pm, Mark Schonewille <
> m.schonewi...@economy-x-talk.com> wrote:
> 
>> LiveCode is a commercial product too. Quite a few bugs were reported a
>> decade ago and were not fixed.
>> 
>> --
>> Best regards,
>> 
>> Mark Schonewille
>> 
>> Economy-x-Talk Consulting and Software Engineering
>> Homepage: http://economy-x-talk.com
>> Twitter: http://twitter.com/xtalkprogrammer
>> KvK: 50277553
>> 
>> Installer Maker for LiveCode:
>> http://qery.us/468
>> 
>> Buy my new book "Programming LiveCode for the Real Beginner"
>> http://qery.us/3fi
>> 
>> LiveCode on Facebook:
>> https://www.facebook.com/groups/runrev/
>> 
>> On 12/17/2014 07:57, Gerry wrote:
>>> Really? I should wait a few *months*? It's a commercial product!
>>> 
>>> g
>>> 
>>> On Wed Dec 17 2014 at 5:50:12 PM Mark Schonewille <
>>> m.schonewi...@economy-x-talk.com> wrote:
>>> 
 Gerry,
 
 A few follow-up e-mails within 4 weeks is really too much. Try again in
 a few months. It isn't easy to fix something like this, especially if
 you're busy like Andre.
 
 --
 Best regards,
 
 Mark Schonewille
 
 Economy-x-Talk Consulting and Software Engineering
 Homepage: http://economy-x-talk.com
 Twitter: http://twitter.com/xtalkprogrammer
 KvK: 50277553
 
 Installer Maker for LiveCode:
 http://qery.us/468
 
 Buy my new book "Programming LiveCode for the Real Beginner"
 http://qery.us/3fi
 
 LiveCode on Facebook:
 https://www.facebook.com/groups/runrev/
 
 On 12/17/2014 05:22, Gerry wrote:
> Hi all
> 
> Is anyone successfully using Andre Garzia's FacebookLib library on
 mobile?
> 
> I'm getting the following error when trying to log into Facebook from
>> the
> demo mobile app, but using my app's key - previously this was all
 working:
> 
> "Given URL is not allowed by the Application configuration.: One or
>> more
 of
> the given URLs is not allowed by the App's settings. It must match the
> Website URL or Canvas URL, or the domain must be a subdomain of one of
 the
> App's domains."
> 
> I've tried to work out what the problem is - that error message is
> mentioned on Stackoverload and elsewhere but only in the context of web
> apps, not mobile.
> 
> I emailed Andre 3 or 4 weeks ago and he said FB had changed something
>> and
> he'd get back to me. He hasn't replied to more recent follow up emails.
> 
> 
> Gerry
> ___
> 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
 
>>> ___
>>> 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
>> 
> ___
> 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: controlids and controlnames properties

2014-12-17 Thread Bob Sneidar
erm…

put the controlidsof card "TRANS-HAL" of stack "DWPro" into fld "IDZ" of stack 
“Cheese” \
& " - " & \
the controlnames of card "TRANS-HAL" of stack "DWPro" into fld "IDZ" of stack 
“Cheese"

On Dec 15, 2014, at 14:00 , Richmond 
mailto:richmondmathew...@gmail.com>> wrote:

put the controlids & " - " & the controlnames of card "TRANS-HAL" of stack 
"DWPro" into fld "IDZ" of stack "Cheese"

___
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: 7.0.1-RC4 crashing regularly

2014-12-17 Thread Mike Bonner
Will it open if you use the file menu?  Theres a bug (in some versions,
quite a few in fact) where a double click to open a stack just doesn't work
right, but opening from the file menu does.

On Wed, Dec 17, 2014 at 5:25 AM, Rolf Kocherhans 
wrote:
>
> Hello all
>
> I now see these crashes with 7.0.1-RC4 on OS X as well.
> Unfortunately no recipe yet.
>
> The stack is very simple 1 button and 1 image, all I
> can say is that when I click on the stack after the crash
> it would not load this stack again (corrupted).
>
> No crashes with 7.0.1-RC2
>
> ___
> 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


Livecode 7.0 Can't Play Video on Macs

2014-12-17 Thread Ray
When I do the following on my Mac OSX 10.7.1 running Quicktime 7.7.1 I 
hear the audio but I can't see the video.


I drag a player object to a new main stack and change the source from 
the Livecode's Sample.mov file to Apple's Sample_iPod.m4v movie or any 
other .m4v file.  Playing it gives me audio but no video.


If I choose the edit tool in Livecode while the movie is play suddenly 
video plays.  Return to Livecode's browse tool and video stops while 
audio continues.


This is no problem at all in Livecode 6.5.2 using the same platform, 
same system and same Quicktime version.  It's also no problem on my 
Windows 8.1 system in either version of Livecode.


Is this really a bug or am I missing something?  If it's a bug does 
anybody know if it's been reported?


___
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: Andre Garcia's FacebookLib

2014-12-17 Thread Dr. Hawkins
On Tue, Dec 16, 2014 at 11:14 PM, Mark Schonewille <
m.schonewi...@economy-x-talk.com> wrote:
>
> LiveCode is a commercial product too. Quite a few bugs were reported a
> decade ago and were not fixed.
>

Livecode is hardly a decent example of upgrade and  maintenance for a
commercial product . . .


-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
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: 7.0.1-RC4 crashing regularly

2014-12-17 Thread Dr. Hawkins
On Wed, Dec 17, 2014 at 1:27 AM, Richmond 
wrote:
>
> Some people never learn.
>
>
Oh, I've learned. I have staggering numbers of checkpointed stacks.


> Keep away from anything except tried and tested stable releases if you are
> doing anything mission critical.
>

The choice isn't 7 or 5.5; it's 7 or dump livecode.  The lack of scaling
when preparing forms is a show-stopper.

-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
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: bug or feature in player filename?

2014-12-17 Thread Martin Koob
Quick work from the RunRev team addressing this!  The bug for the missing
error message in the result is already awaiting build, the other is
assigned.

I have posted another bug for documentation so that info on the missing
error message will be included in the docs.
http://quality.runrev.com/show_bug.cgi?id=14252

Thanks again Timothy for bringing the issue to light.  And thanks Jacque for
pointing out how it is supposed to work.

Martin



--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/bug-or-feature-in-player-filename-tp4686748p4686872.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: Andre Garcia's FacebookLib

2014-12-17 Thread Matthias Rebbe | M-R-D


> Am 17.12.2014 um 07:49 schrieb Mark Schonewille 
> :
> 
> Gerry,
> 
> A few follow-up e-mails within 4 weeks is really too much. Try again in a few 
> months. It isn't easy to fix something like this, especially if you're busy 
> like Andre.
> 

If that´s the way you are thinking support has to be done then i am really glad 
i did not renew my Installer Maker license.







___
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: 7.0.1-RC4 crashing regularly

2014-12-17 Thread Rolf Kocherhans
Hello all

I now see these crashes with 7.0.1-RC4 on OS X as well.
Unfortunately no recipe yet.

The stack is very simple 1 button and 1 image, all I
can say is that when I click on the stack after the crash
it would not load this stack again (corrupted).

No crashes with 7.0.1-RC2

___
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: Andre Garcia's FacebookLib

2014-12-17 Thread Gerry
Mark, how is a couple of emails in the 3-4 week period following my
original query "bugging" someone? Especially when they had promised to get
back to me?

Gerry

On Wed Dec 17 2014 at 9:47:58 PM Dave Kilroy 
wrote:

> Gerry it's up to you how you take this forward, I don't agree with Mark's
> stance and don't think you have behaved unreasonably.
>
> Kind regards
>
> Dave
>
>
>
> -
> "Some are born coders, some achieve coding, and some have coding thrust
> upon them." - William Shakespeare & Hugh Senior
>
> --
> View this message in context: http://runtime-revolution.
> 278305.n4.nabble.com/Andre-Garcia-s-FacebookLib-tp4686859p4686868.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: Andre Garcia's FacebookLib

2014-12-17 Thread Dave Kilroy
Gerry it's up to you how you take this forward, I don't agree with Mark's
stance and don't think you have behaved unreasonably.

Kind regards

Dave



-
"Some are born coders, some achieve coding, and some have coding thrust upon 
them." - William Shakespeare & Hugh Senior

--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Andre-Garcia-s-FacebookLib-tp4686859p4686868.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: Andre Garcia's FacebookLib

2014-12-17 Thread Mark Schonewille
Sure, Gerry. Go on, continue bugging Andre, if you think that it makes 
him more willing to help you.


--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Installer Maker for LiveCode:
http://qery.us/468

Buy my new book "Programming LiveCode for the Real Beginner" 
http://qery.us/3fi


LiveCode on Facebook:
https://www.facebook.com/groups/runrev/

On 12/17/2014 10:37, Gerry wrote:

Yep but the LiveCode product is largely usable in spite of those bugs. The
Facebook lib isn't at functional right now.

See the difference?

Gerry
On Wed, 17 Dec 2014 at 6:14 pm, Mark Schonewille <
m.schonewi...@economy-x-talk.com> wrote:


LiveCode is a commercial product too. Quite a few bugs were reported a
decade ago and were not fixed.

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Installer Maker for LiveCode:
http://qery.us/468

Buy my new book "Programming LiveCode for the Real Beginner"
http://qery.us/3fi

LiveCode on Facebook:
https://www.facebook.com/groups/runrev/

On 12/17/2014 07:57, Gerry wrote:

Really? I should wait a few *months*? It's a commercial product!

g

On Wed Dec 17 2014 at 5:50:12 PM Mark Schonewille <
m.schonewi...@economy-x-talk.com> wrote:


Gerry,

A few follow-up e-mails within 4 weeks is really too much. Try again in
a few months. It isn't easy to fix something like this, especially if
you're busy like Andre.

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Installer Maker for LiveCode:
http://qery.us/468

Buy my new book "Programming LiveCode for the Real Beginner"
http://qery.us/3fi

LiveCode on Facebook:
https://www.facebook.com/groups/runrev/

On 12/17/2014 05:22, Gerry wrote:

Hi all

Is anyone successfully using Andre Garzia's FacebookLib library on

mobile?


I'm getting the following error when trying to log into Facebook from

the

demo mobile app, but using my app's key - previously this was all

working:


"Given URL is not allowed by the Application configuration.: One or

more

of

the given URLs is not allowed by the App's settings. It must match the
Website URL or Canvas URL, or the domain must be a subdomain of one of

the

App's domains."

I've tried to work out what the problem is - that error message is
mentioned on Stackoverload and elsewhere but only in the context of web
apps, not mobile.

I emailed Andre 3 or 4 weeks ago and he said FB had changed something

and

he'd get back to me. He hasn't replied to more recent follow up emails.


Gerry
___
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


___
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


___
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: Andre Garcia's FacebookLib

2014-12-17 Thread Dave Kilroy
Gerry if a customer had come to me with a bug report and I had said I would
get back to him - and 3 or 4 weeks had gone by and I still hadn't contacted
him - then I would be feeling embarressed. 

I should think that something has occurred for Andre to have not emailed you
to at least explain the delay. I'd contact him again, maybe something has
taken place and he's become distracted.


Gerry Orkin wrote
> I emailed Andre 3 or 4 weeks ago and he said FB had changed something and
> he'd get back to me. He hasn't replied to more recent follow up emails.





-
"Some are born coders, some achieve coding, and some have coding thrust upon 
them." - William Shakespeare & Hugh Senior

--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Andre-Garcia-s-FacebookLib-tp4686859p4686866.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: Andre Garcia's FacebookLib

2014-12-17 Thread Gerry
Yep but the LiveCode product is largely usable in spite of those bugs. The
Facebook lib isn't at functional right now.

See the difference?

Gerry
On Wed, 17 Dec 2014 at 6:14 pm, Mark Schonewille <
m.schonewi...@economy-x-talk.com> wrote:

> LiveCode is a commercial product too. Quite a few bugs were reported a
> decade ago and were not fixed.
>
> --
> Best regards,
>
> Mark Schonewille
>
> Economy-x-Talk Consulting and Software Engineering
> Homepage: http://economy-x-talk.com
> Twitter: http://twitter.com/xtalkprogrammer
> KvK: 50277553
>
> Installer Maker for LiveCode:
> http://qery.us/468
>
> Buy my new book "Programming LiveCode for the Real Beginner"
> http://qery.us/3fi
>
> LiveCode on Facebook:
> https://www.facebook.com/groups/runrev/
>
> On 12/17/2014 07:57, Gerry wrote:
> > Really? I should wait a few *months*? It's a commercial product!
> >
> > g
> >
> > On Wed Dec 17 2014 at 5:50:12 PM Mark Schonewille <
> > m.schonewi...@economy-x-talk.com> wrote:
> >
> >> Gerry,
> >>
> >> A few follow-up e-mails within 4 weeks is really too much. Try again in
> >> a few months. It isn't easy to fix something like this, especially if
> >> you're busy like Andre.
> >>
> >> --
> >> Best regards,
> >>
> >> Mark Schonewille
> >>
> >> Economy-x-Talk Consulting and Software Engineering
> >> Homepage: http://economy-x-talk.com
> >> Twitter: http://twitter.com/xtalkprogrammer
> >> KvK: 50277553
> >>
> >> Installer Maker for LiveCode:
> >> http://qery.us/468
> >>
> >> Buy my new book "Programming LiveCode for the Real Beginner"
> >> http://qery.us/3fi
> >>
> >> LiveCode on Facebook:
> >> https://www.facebook.com/groups/runrev/
> >>
> >> On 12/17/2014 05:22, Gerry wrote:
> >>> Hi all
> >>>
> >>> Is anyone successfully using Andre Garzia's FacebookLib library on
> >> mobile?
> >>>
> >>> I'm getting the following error when trying to log into Facebook from
> the
> >>> demo mobile app, but using my app's key - previously this was all
> >> working:
> >>>
> >>> "Given URL is not allowed by the Application configuration.: One or
> more
> >> of
> >>> the given URLs is not allowed by the App's settings. It must match the
> >>> Website URL or Canvas URL, or the domain must be a subdomain of one of
> >> the
> >>> App's domains."
> >>>
> >>> I've tried to work out what the problem is - that error message is
> >>> mentioned on Stackoverload and elsewhere but only in the context of web
> >>> apps, not mobile.
> >>>
> >>> I emailed Andre 3 or 4 weeks ago and he said FB had changed something
> and
> >>> he'd get back to me. He hasn't replied to more recent follow up emails.
> >>>
> >>>
> >>> Gerry
> >>> ___
> >>> 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
> >>
> > ___
> > 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
>
___
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: 7.0.1-RC4 crashing regularly

2014-12-17 Thread Richmond

On 17/12/14 00:17, Dr. Hawkins wrote:

On Tue, Dec 16, 2014 at 2:16 PM, Dr. Hawkins  wrote:


With just a few minutes in, it appears that RC4 bombs at least as
frequently as RC3 :(


It may be happening during disk save--I've just gotten corrupted files of
2.2M a couple of times (full stack is 15.1M)


Some people never learn.

Keep away from anything except tried and tested stable releases if you 
are doing anything mission critical.


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: 7.0.1-RC4 crashing regularly

2014-12-17 Thread Bernard Devlin
I started using 6.7 recently, but gave up using it when my stack got
corrupted. I wouldn't say this was a particularly complicated stack,
consisting of 3 images, a couple of fields and about 6 buttons, spread over
2 cards.  There's about 1200 lines of scripts and a few dozen custom
properties.

6.7 produced the beachball of death.  After killing Livecode, 6.7 would no
longer open the stack it had previously saved.  Luckily I could open the
stack in 5.5 and remove the few 6.7 new language features I was using.  But
it made me very reluctant to go back to using 6.7.  I'm considering trying
7.x but these reports make me wary of that.  Working in the new 7.x stack
format one probably can't even go back to a 5.x series and open a corrupted
stack there.

Such major disasters have very rare in my 10 years of using Livecode.

Bernard


On Wed, Dec 17, 2014 at 12:14 AM, Dr. Hawkins  wrote:
>
>
>
> I am now fairly certain that it became bad in RC3.
>
> I'm using RC2 now, and have only had one crash in half an hour.
>
>
>
___
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