RE: Install over previous version

2014-09-24 Thread Paul D. DeRocco
 From: J. Landman Gay
 
 I hope it's optional.  I routinely keep at least 3 versions 
 at the same time, for different purposes.  

I agree. You could tell it to overwrite by specifying the same location.
That would require that you be able to specify the ENTIRE install path,
not just the prefix it applies to the LiveCode Community x.x.x that it
now insists upon creating.

-- 

Ciao,   Paul D. DeRocco
Paulmailto:pdero...@ix.netcom.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


variable trouble

2014-09-24 Thread larry
Hello,

I'm using 6.6.3 on Windows XP.

This line of code works just fine:
put the keys of wgList03 into theseKeys

but the following lines of code do NOT work: (where N is 3)  -- and yes, it IS 
a ZERO after wgList

put wgList0  N into thisVar

put the keys of thisVar into theseKeys

To me, this is just inexplicable and very frustrating.  Any help will be 
greatly appreciated.

Thanks,

Larry
___
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: variable trouble

2014-09-24 Thread Scott Rossi
Hi Larry:

Your situation is very explicable.  In your script you're treating
thisVar as an array, instead of accessing the array that you put into
thisVar.  You're trying to use one variable to refer to another.

If I understand the result you want, one way would be to use the value
function, to retrieve the data of the array stored in thisVar:

put wgList0  N into thisVar

put the keys of value(thisVar) into theseKeys


Hope this works for you.

Regards,

Scott Rossi
Creative Director
Tactile Media, UX/UI Design




On 9/23/14 11:07 PM, la...@significantplanet.org
la...@significantplanet.org wrote:

Hello,

I'm using 6.6.3 on Windows XP.

This line of code works just fine:
put the keys of wgList03 into theseKeys

but the following lines of code do NOT work: (where N is 3)  -- and yes,
it IS a ZERO after wgList

put wgList0  N into thisVar

put the keys of thisVar into theseKeys

To me, this is just inexplicable and very frustrating.  Any help will be
greatly appreciated.

Thanks,

Larry
___
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: RELEASE: LiveCode 7.0 RC 2

2014-09-24 Thread Terence Heaford
I know but I could have sworn earlier releases didn’t present like this but I 
just tried RC1 and it did.

All the best

Terry



On 23 Sep 2014, at 17:46, Peter Bogdanoff bogdan...@me.com wrote:

 OS X: System SettingsSecurity  PrivacyAllow apps downloaded fromAnywhere
 
 On Sep 22, 2014, at 11:31 AM, Terence Heaford t.heaf...@btinternet.com 
 wrote:
 
 “Install LiveCode Community 7.0 (rc 2)” can’t be opened because the identity 
 of the developer cannot be confirmed.
 
 “Install LiveCode Community 7.0 (rc 2)” is on the disk image 
 “LiveCodeCommunityInstaller-7_0_0_rc_2-Mac.dmg”. Safari downloaded this disk 
 image today at 19:28 from livecode.com.
 
 
 
 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


Re: file size

2014-09-24 Thread Thierry Douez
Dick, thanks for the feedback.

I forgot about this:

 ... urlEncode encodes the space as +, ...



Regards,

Thierry




Thierry Douez - http://sunny-tdz.com
Maker of sunnYperl - sunnYmidi - sunnYmage

___
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


AW: If your stack uses QT...

2014-09-24 Thread Tiemo Hollmann TB
Thanks for the info Jacqueline.
Btw. has anybody heard anything about the progress of the QT replacement in
LC? It was one of the extended kickstarter contents.
Tiemo

 -Ursprüngliche Nachricht-
 Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im
Auftrag
 von J. Landman Gay
 Gesendet: Dienstag, 23. September 2014 19:24
 An: LiveCode Mailing List
 Betreff: If your stack uses QT...
 
 Just a heads up in case your project depends on QuickTime like mine does.
The
 new default in LC 7 is not to set QT to load automatically as it used to
do.
 The reason makes sense to me: QT is now deprecated and apps that use it
will
 no longer be accepted into the App Store. I was thrown off because
suddenly my
 project did not work when I tested in 7.0, and it turns out that dontUseQT
is
 now set to true by default in the IDE.
 
 The fix is easy, you can just set dontUseQT to false somewhere in your
 scripts, or turn the preference back on in the IDE.
 
 --
 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


___
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: variable trouble

2014-09-24 Thread larry

Hi Scott,
I meant to say inexplicable to me.
Your solution works great.
However, I cannot figure out the next part:
I want to put the value of thisKey into a variable when it matches.
So I tried a few iterations of:

put value(thisVar[thisKey])  space after newVar

but could not get anything to work - with the parenthesis in different 
places.


Do you know the syntax for adding the bracketed thisKey ??

Thanks,
Larry

- Original Message - 
From: Scott Rossi sc...@tactilemedia.com

To: LiveCode Mail List use-livecode@lists.runrev.com
Sent: Wednesday, September 24, 2014 12:28 AM
Subject: Re: variable trouble



Hi Larry:

Your situation is very explicable.  In your script you're treating
thisVar as an array, instead of accessing the array that you put into
thisVar.  You're trying to use one variable to refer to another.

If I understand the result you want, one way would be to use the value
function, to retrieve the data of the array stored in thisVar:

put wgList0  N into thisVar

put the keys of value(thisVar) into theseKeys


Hope this works for you.

Regards,

Scott Rossi
Creative Director
Tactile Media, UX/UI Design




On 9/23/14 11:07 PM, la...@significantplanet.org
la...@significantplanet.org wrote:


Hello,

I'm using 6.6.3 on Windows XP.

This line of code works just fine:
put the keys of wgList03 into theseKeys

but the following lines of code do NOT work: (where N is 3)  -- and yes,
it IS a ZERO after wgList

put wgList0  N into thisVar

put the keys of thisVar into theseKeys

To me, this is just inexplicable and very frustrating.  Any help will be
greatly appreciated.

Thanks,

Larry
___
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: P.S. on searching for chars within a string

2014-09-24 Thread larry

Hi Craig,
Thanks for the tip.
I am using a for each loop and have run some benchmark time tests. I am able 
to find (match) the words I want in about 1/7 of the time that it used to 
take me using a different procedure - and the old way was pretty fast!  To 
find all the smaller words (length of 2 - 7) contained in a 12-ltr word, it 
used to take 3.46 seconds. Now it only takes 0.56 seconds. (finding 1698 
words)  And even better, the new way allows for getting the smaller words 
from a string of, say 30 chars, and it doesn't increase the time much - 
about 0.85 seconds for searching within 30 chars.  With the old way, I 
couldn't even search on more than 12 chars, because it just took too long.

So I learned a lot today!
Larry
P.S. Yes, I am using arrays.

- Original Message - 
From: dunb...@aol.com

To: use-livecode@lists.runrev.com
Sent: Tuesday, September 23, 2014 9:10 PM
Subject: Re: P.S. on searching for chars within a string



Larry.


Just read your brute force comment. Not sure how much data you want to 
compare, but a loop using the for each variant will run an awful lot of 
text in an awfully short time.



What about that array thing, just for modernity and compactness/


Craig



-Original Message-
From: larry la...@significantplanet.org
To: use-livecode use-livecode@lists.runrev.com
Sent: Tue, Sep 23, 2014 8:25 pm
Subject: P.S. on searching for chars within a string


Hello again,

I know how to do it with brute force,  but I want to know the FASTEST way 
to

find the chars.

Thanks
___
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: Is there a problem with the On-Rev email server

2014-09-24 Thread Dave Kilroy
What made the biggest difference for me (using on-rev) was getting a static
IP - money well spent!



-
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/Is-there-a-problem-with-the-On-Rev-email-server-tp4683618p4683682.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: sort lines by length

2014-09-24 Thread Dave Kilroy
Mark just added my name to your 9910 bug report...

Dave
(a different Dave - not Dave Cragg but Dave Kilroy...)



-
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/sort-lines-by-length-tp4683650p4683683.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


sorting question

2014-09-24 Thread larry
Hello,

I have the following items in a field:

AD, AE, AI, AN, AR, AS, AT, DE, DI, DO, EE, EN, ER, ES, ET, IN, IO, IS, IT, NO, 
NU, OE, OP, OR, OS, OU, PA, PE, PI, ST, TO, UP, UR, UT, DA, EA, ED, ID, NA, NE, 
OD, OI, ON, PO, RE, SI, SO, TA, TE, TI, UN, US



You can see that they are not sorted alphabetically.  I have a test button with:

on mouseUp

sort items of field myField

end mouseUp

However, the order of the items remains unchanged.  

I also tried:

sort items of field myField text ascending

but it didn't make a difference



Thanks for the help,

Larry
___
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: sorting question

2014-09-24 Thread larry
Sorry, never mind!
Larry
___
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: sort lines by length

2014-09-24 Thread Dave Cragg

On 24 Sep 2014, at 04:21, Mark Wieder mwie...@ahsoftware.net wrote:

 Dave-
 
 Tuesday, September 23, 2014, 1:59:39 PM, you wrote:
 
 sort lines of fld 1 numeric by length(each)
 
 I think numeric is needed if the lengths can be over 9
 characters. Otherwise it will do a text sort on the lengths.
 
 See bug^H^Henhancement request 9910. This has bugged me for some time
 now. Is there ever a case when you'd want to sort alphabetically by
 length()?

Mark,

I have no strong opinion on this. The response to your request made some sense 
to me, as it would apply only to certain built-in functions that can only 
return a numeric value. So there would be some inconsistency, and also possible 
confusion if trying to sort on a custom function that *I know* always returns a 
numeric value, but the engine doesn't.

I guess one case when you might want to sort alphabetically on length() is when 
demonstrating the behaviour of the sort command. :-)

Cheers
Dave Cragg
___
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: re: sorting question

2014-09-24 Thread Dave Kilroy
Sounds like you've sorted it Larry :)

For others wondering what the cause was, it was likely that the spaces in
each item were confusing things - so if they are removed prior to the sort
it all works fine (they can be put back in after...)

on mouseUp
   replace space with empty in fld fldTest
   sort items of fld fldTest
   replace comma with ,  in fld fldTest
end mouseUp



-
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/sorting-question-tp4683684p4683687.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: Field retrieved from a Mongo document display wrong characters

2014-09-24 Thread Javier Miranda
Dear Jacqueline, thank you for your help.  In Mongo everything is UTF-8,
converting the string returned by the server to UTF-16 worked perfectly.
Let me add that I see great potential using LiveCode as a front end to
Mongo.

Saludos,

Javier Miranda V.
___
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


now a paste question

2014-09-24 Thread larry

Hello Dave,
Yes, you guessed it correctly.

However I have a new weird thing.
I have a large amount of text - over 10,000 5-ltr words.  I can copy and 
paste the entire text with no problem from one txt document to another via 
the clipboard.
But when I try to paste the entire amount into a LC field (either 6.1.1 or 
6.6.3) it will not paste in the whole amount.
It seems that a couple of years ago someone told me that LC has some weird 
limitation on how much can be put into a field at one time.
Does anyone know anything about that - or why I cannot paste the entire text 
into a LC field all at once.  I can do pieces and keep going until all of it 
is in the field.

Thanks,
Larry


- Original Message - 
From: Dave Kilroy d...@applicationinsight.com

To: use-revolut...@lists.runrev.com
Sent: Wednesday, September 24, 2014 2:40 AM
Subject: Re: re: sorting question



Sounds like you've sorted it Larry :)

For others wondering what the cause was, it was likely that the spaces in
each item were confusing things - so if they are removed prior to the sort
it all works fine (they can be put back in after...)

on mouseUp
  replace space with empty in fld fldTest
  sort items of fld fldTest
  replace comma with ,  in fld fldTest
end mouseUp



-
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/sorting-question-tp4683684p4683687.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: now a paste question

2014-09-24 Thread Dave Kilroy
Hi Larry

Page 43 of the LC User Guide states  the maximum line length of a line in a
field is 65,536 characters storage (No more than 32,786 pixels wide for
display) Is your text all in one line by any chance?

I haven't heard of a max size for a field but if you are having problems
using a field how about using a custom property instead?




-
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/sorting-question-tp4683684p4683690.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: now a paste question

2014-09-24 Thread larry

THANKS Dave,
I was going crazy trying to figure out the weird behavior.
I guess I should have read the user guide!
So I just put a return after every entry and, now, no problems!
Thanks very much for your help.
Larry

- Original Message - 
From: Dave Kilroy d...@applicationinsight.com

To: use-revolut...@lists.runrev.com
Sent: Wednesday, September 24, 2014 3:52 AM
Subject: Re: now a paste question



Hi Larry

Page 43 of the LC User Guide states  the maximum line length of a line in 
a

field is 65,536 characters storage (No more than 32,786 pixels wide for
display) Is your text all in one line by any chance?

I haven't heard of a max size for a field but if you are having problems
using a field how about using a custom property instead?




-
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/sorting-question-tp4683684p4683690.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: sort lines by length

2014-09-24 Thread Klaus major-k
Hi Dave,

Am 23.09.2014 um 22:59 schrieb Dave Cragg dave.cr...@lacscentre.co.uk:

 On 23 Sep 2014, at 20:07, Klaus major-k kl...@major-k.de wrote:
 
 Hi Larry,
 
 Am 23.09.2014 um 20:53 schrieb la...@significantplanet.org 
 la...@significantplanet.org:
 
 Hello,
 
 this line doesn't work:
 sort lines of field myField by length of each
 
 Can someone please tell me the code for sorting a field by length of line?
 
 this compiles and kinda works, but not as exspected :-/
 ...
 sort lines of fld 1 by length(each)
 ...
 
 sort lines of fld 1 numeric by length(each)
 I think numeric is needed if the lengths can be over 9 characters. 
 Otherwise it will do a text sort on the lengths.

oh, well, thanks a lot! :-)

 Cheers
 Dave

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


Long en short Touch (how?)

2014-09-24 Thread William de Smet
Hi there,

How do I code a long- and short Touch?
Like you see on the iOS keyboard.

greetings,

William
___
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: Is there a problem with the On-Rev email server

2014-09-24 Thread Matthias Rebbe | M-R-D
Ah, yes. Forgot to mention that we also use a dedicated ip.
It´s really well spent money!

Matthias

Am 24.09.2014 um 09:52 schrieb Dave Kilroy d...@applicationinsight.com:

 What made the biggest difference for me (using on-rev) was getting a static
 IP - money well spent!
 
 
 
 -
 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/Is-there-a-problem-with-the-On-Rev-email-server-tp4683618p4683682.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: now a paste question

2014-09-24 Thread James Hale
Having forgotten the User Guide reference I had come across this limit myself 
and thought it was a bug (13058). 
Seems this limit will not be present in LC 7
James
 This is a limitation of the 6.x (and earlier!) engines - offsets for the 
 field are limited to 16 bits.
 
 In the process of re-writing some of the field internals for LiveCode 7, 
 these got converted to 32-bit offsets. There is still a limit but it will be 
 at 2.1 billion codeunits or thereabouts.
 
 Because of the very extensive changes required, it won't be possible to
 back-port this fix to LiveCode 6.x



___
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: Field retrieved from a Mongo document display wrong characters

2014-09-24 Thread Andrew Kluthe
I agree. The document oriented format is a nice match for livecode arrays.
I have used mongodb (from mongolab.com) quite a bit (albiet over an http
interface of some kind). I had good experiences with it, save for
livecode's blocking url commands causing me some fuss.

Regards,

Andrew K

On Wed, Sep 24, 2014 at 4:04 AM, Javier Miranda jemiran...@gmail.com
wrote:

 Dear Jacqueline, thank you for your help.  In Mongo everything is UTF-8,
 converting the string returned by the server to UTF-16 worked perfectly.
 Let me add that I see great potential using LiveCode as a front end to
 Mongo.

 Saludos,

 Javier Miranda V.
 ___
 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: sort lines by length

2014-09-24 Thread Mark Wieder
Dave-

Wednesday, September 24, 2014, 1:37:19 AM, you wrote:

 I have no strong opinion on this. The response to your request
 made some sense to me, as it would apply only to certain built-in
 functions that can only return a numeric value. So there would be
 some inconsistency, and also possible confusion if trying to sort on
 a custom function that *I know* always returns a numeric value, but
 the engine doesn't.

The bug report response makes *some* sense to me as well. But it's a
frequent source of confusion. The pedantic approach of specifying a
numeric sort works, of course, and it makes sense in hindsight. But it
should still be possible to tweak the sort routine so that if the
value being presented is a number it would force a numeric sort unless
specified otherwise in the command.

 I guess one case when you might want to sort alphabetically on
 length() is when demonstrating the behaviour of the sort command. :-)

LOL.

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

This communication may be unlawfully collected and stored by the National 
Security Agency (NSA) in secret. The parties to this email do not 
consent to the retrieving or storing of this communication and any 
related metadata, as well as printing, copying, re-transmitting, 
disseminating, or otherwise using it. If you believe you have received 
this communication in error, please delete it immediately.


___
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: Window expanded

2014-09-24 Thread Paul Hibbert
John,

If you open the Development  Message Watcher you will see several 
'ResizeStack' and 'MoveStack' messages are sent by the card when you click the 
button, maybe you can use these.

Paul

On Sep 23, 2014, at 10:29 PM, JB sund...@pacifier.com wrote:

 Is there a way to catch when a Mac user clicks
 the button at the top left of window to expand
 and shrink the current window?
 
 John Balgenorth
 
 ___
 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: Window expanded

2014-09-24 Thread JB
Hi Paul,

Thank you!  That should do it.
Amazing enough I never use
the message watcher and did
not even think about it.

John Balgenorth


On Sep 24, 2014, at 8:43 AM, Paul Hibbert paulhibb...@mac.com wrote:

 John,
 
 If you open the Development  Message Watcher you will see several 
 'ResizeStack' and 'MoveStack' messages are sent by the card when you click 
 the button, maybe you can use these.
 
 Paul
 
 On Sep 23, 2014, at 10:29 PM, JB sund...@pacifier.com wrote:
 
 Is there a way to catch when a Mac user clicks
 the button at the top left of window to expand
 and shrink the current window?
 
 John Balgenorth
 
 ___
 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: P.S. on searching for chars within a string

2014-09-24 Thread J. Landman Gay

On 9/24/2014, 2:20 AM, la...@significantplanet.org wrote:

I am using a for each loop and have run some benchmark time tests. I am
able to find (match) the words I want in about 1/7 of the time that it
used to take me using a different procedure - and the old way was pretty
fast!  To find all the smaller words (length of 2 - 7) contained in a
12-ltr word, it used to take 3.46 seconds. Now it only takes 0.56 seconds.


Yesterday I tinkered with this:


function getMatch pString,pSource
  put len(pSource) into tSourceLength
  repeat for each char c in pString
delete char offset(c,pSource) of pSource
  end repeat
  return len(pSource) = tSourceLength - len(pString)
end getMatch

It may or may not be faster than your current method. On my Mac it can 
do 10,000 lookups in about 350 milliseconds.


--
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: If your stack uses QT...

2014-09-24 Thread Mark Talluto
On Sep 23, 2014, at 11:59 PM, Tiemo Hollmann TB toolb...@kestner.de wrote:

 Thanks for the info Jacqueline.
 Btw. has anybody heard anything about the progress of the QT replacement in
 LC? It was one of the extended kickstarter contents.
 Tiemo

6.7 and 7.0 are using AVFoundation for video playback on Macs. We can now play 
video content smoothly again provide the alwaysBuffer on the player is set to 
false. Our stacks worked without any modifications.


Best regards,

Mark Talluto
livecloud.io
canelasoftware.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: If your stack uses QT...

2014-09-24 Thread J. Landman Gay

On 9/24/2014, 12:10 PM, Mark Talluto wrote:

6.7 and 7.0 are using AVFoundation for video playback on Macs. We can
now play video content smoothly again provide the alwaysBuffer on the
player is set to false. Our stacks worked without any modifications.


Do you know how it works on Windows? We're currently requiring QT for 
Windows because we need to play m4a files, and Windows doesn't ship with 
that codec.


--
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: If your stack uses QT...

2014-09-24 Thread Klaus major-k
Hi Jaqueline,

Am 24.09.2014 um 19:30 schrieb J. Landman Gay jac...@hyperactivesw.com:

 On 9/24/2014, 12:10 PM, Mark Talluto wrote:
 6.7 and 7.0 are using AVFoundation for video playback on Macs. We can
 now play video content smoothly again provide the alwaysBuffer on the
 player is set to false. Our stacks worked without any modifications.
 
 Do you know how it works on Windows? We're currently requiring QT for Windows 
 because we need to play m4a files, and Windows doesn't ship with that codec.

no word from RunRev about Windows, so I think nothing has changed here and 
QuickTime is still required :-/

 -- 
 Jacqueline Landman Gay | jac...@hyperactivesw.com
 HyperActive Software   | http://www.hyperactivesw.com

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


[OT] Grendel

2014-09-24 Thread Richmond

http://andregarzia.on-rev.com/richmond/LANGTOOLS.html

Proud to announce the first release of my GRENDEL [currently a FREE 
version as the Anglo-Saxon interface is the only one that has been 
implemented]: available of Windows [XP, Vista, 7], Macintosh [PPC and 
Intel], and Linux.


Developed with LiveCode.

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: [OT] Grendel

2014-09-24 Thread Paul Hibbert
Congratulations, the site looks good, but one thing you need to be aware of is 
that the three Buy Now buttons near the bottom of the page are missing, I'm 
just seeing white box outlines with question marks in them.

Paul

On Sep 24, 2014, at 10:40 AM, Richmond richmondmathew...@gmail.com wrote:

 http://andregarzia.on-rev.com/richmond/LANGTOOLS.html
 
 Proud to announce the first release of my GRENDEL [currently a FREE version 
 as the Anglo-Saxon interface is the only one that has been implemented]: 
 available of Windows [XP, Vista, 7], Macintosh [PPC and Intel], and Linux.
 
 Developed with LiveCode.
 
 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


___
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: [OT] Grendel

2014-09-24 Thread Richmond

On 24/09/14 21:45, Paul Hibbert wrote:

Congratulations, the site looks good, but one thing you need to be aware of is that the 
three Buy Now buttons near the bottom of the page are missing, I'm just 
seeing white box outlines with question marks in them.


Thanks. The buy buttons need to be removed: just too busy right now :)



Paul

On Sep 24, 2014, at 10:40 AM, Richmond richmondmathew...@gmail.com wrote:


http://andregarzia.on-rev.com/richmond/LANGTOOLS.html

Proud to announce the first release of my GRENDEL [currently a FREE version as 
the Anglo-Saxon interface is the only one that has been implemented]: available 
of Windows [XP, Vista, 7], Macintosh [PPC and Intel], and Linux.

Developed with LiveCode.

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


___
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


MacUpdate doesn't like Grendel

2014-09-24 Thread Richmond
Am I right in thinking a standalone compiled with LiveCode 4.5 for 
MacIntel will NOT run

on Mac OS 10.9?

Here's what the Mac Update people sent me:

9/24/14 1:31:05.181 PM Installer[67663]:  [AppInfo 
getTriggerVal] ==  download
9/24/14 1:31:06.466 PM com.apple.launchd.peruser.501[270]: 
(com..grendel.636448[67664]) Job failed to exec(3) for weird reason: 13
9/24/14 1:31:06.468 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.473 PM Dock[296]: no information back from LS about 
running process LSASN:{hi=0x0;lo=0x6cc6cc}
9/24/14 1:31:06.479 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.490 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.501 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.512 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.524 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.534 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.545 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.556 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.567 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.578 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.589 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.600 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.610 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.622 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.633 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.643 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.654 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.665 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.676 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.686 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.696 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.707 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.719 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.729 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.740 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start
9/24/14 1:31:06.751 PM Finder[299]: 8837325: Attempting to SIGCONT to 
pid #67664 failed, with errno=#3, or the process failed to actually start


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: RELEASE: LiveCode 7.0 RC 2

2014-09-24 Thread Peter Bogdanoff
It's an OS X security thing; you must of upgraded to Mavericks.

Peter

On Sep 23, 2014, at 11:39 PM, Terence Heaford t.heaf...@btinternet.com wrote:

 I know but I could have sworn earlier releases didn’t present like this but I 
 just tried RC1 and it did.
 
 All the best
 
 Terry
 
 
 
 On 23 Sep 2014, at 17:46, Peter Bogdanoff bogdan...@me.com wrote:
 
 OS X: System SettingsSecurity  PrivacyAllow apps downloaded fromAnywhere
 
 On Sep 22, 2014, at 11:31 AM, Terence Heaford t.heaf...@btinternet.com 
 wrote:
 
 “Install LiveCode Community 7.0 (rc 2)” can’t be opened because the 
 identity of the developer cannot be confirmed.
 
 “Install LiveCode Community 7.0 (rc 2)” is on the disk image 
 “LiveCodeCommunityInstaller-7_0_0_rc_2-Mac.dmg”. Safari downloaded this 
 disk image today at 19:28 from livecode.com.
 
 
 
 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: P.S. on searching for chars within a string

2014-09-24 Thread Michael Doub
Very creative approach.   I like it.

-= Mike



On Sep 24, 2014, at 12:30 PM, J. Landman Gay jac...@hyperactivesw.com wrote:

 Jacqueline

___
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: MacUpdate doesn't like Grendel

2014-09-24 Thread Paul Hibbert
I just downloaded and tried LC 4.5.3 that's as far back as I can go. I created 
a small test stack and compiled a standalone and it worked just fine, but then 
it was built using LC 4.5.3 running on OS X 10.9.5, not sure if that would make 
a difference.

I tried downloading your Grendel app and it refuses to launch on my iMac 
running OS X 10.9.5, didn't see any error though, it just dies silently, it 
doesn't even get as far as showing it's icon in the dock.

Paul


On Sep 24, 2014, at 12:06 PM, Richmond richmondmathew...@gmail.com wrote:

 Am I right in thinking a standalone compiled with LiveCode 4.5 for MacIntel 
 will NOT run
 on Mac OS 10.9?


___
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: MacUpdate doesn't like Grendel

2014-09-24 Thread Paul Hibbert
Just tested on Mac OS X 10.8.5 and Grendel works fine so it is a Mavericks 
issue.

Paul

On Sep 24, 2014, at 3:30 PM, Paul Hibbert paulhibb...@mac.com wrote:

 I just downloaded and tried LC 4.5.3 that's as far back as I can go. I 
 created a small test stack and compiled a standalone and it worked just fine, 
 but then it was built using LC 4.5.3 running on OS X 10.9.5, not sure if that 
 would make a difference.
 
 I tried downloading your Grendel app and it refuses to launch on my iMac 
 running OS X 10.9.5, didn't see any error though, it just dies silently, it 
 doesn't even get as far as showing it's icon in the dock.
 
 Paul
 
 
 On Sep 24, 2014, at 12:06 PM, Richmond richmondmathew...@gmail.com wrote:
 
 Am I right in thinking a standalone compiled with LiveCode 4.5 for MacIntel 
 will NOT run
 on Mac OS 10.9?
 
 
 ___
 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


Behaviors

2014-09-24 Thread Peter Haworth
I'm working with lots of controls that have behaviors.  The behavior
buttons are all in a library stack.  All works fine most of the time but
every now and again, none of the behavior scripts are executed (as verified
with breakpoints at the start of them).  The message box shows the library
stack is still in use and the behavior properties all look valid

I can't pin down exactly what causes this but I think that editing a lot of
the behavior scripts might cause this, but I'm pretty sure that shouldn't
happen. When it happens, the only way to get the behaviors to work again is
to quit LC and run again.

Anyone else's applications' guilty of bad behavior like this and if so is
there a way to correct their behavior?

Pete
lcSQL Software http://www.lcsql.com
Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and
SQLiteAdmin http://www.lcsql.com/sqliteadmin.html
___
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 to Facebook?

2014-09-24 Thread Scott Rossi
Hi List:

Anyone know if it's possible on mobile to launch the local Facebook app
from a LiveCode standalone?

I'm using Monte Goulding's mergSocial external for FB posting which works
fine, as long as the user is signed into Facebook via their iOS settings.
If they're not signed in, posting on Facebook is not available.  This
makes sense, but is also a limitation for the user, since their native FB
app continues to operate as expected.

I'm hoping to provide a second FB posting alternative for users by
offering to launch the native FB app if mergSocial is unable to connect to
the service.  Is this possible?  Does anyone know if/how this usability
issue is handled in other apps?

Thanks for suggestions.

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: Behaviors

2014-09-24 Thread Scott Rossi
Hi Pete:

Not sure if this is true in your case, but one reason why this can
sometimes happen is if, for whatever reason, a control that has a behavior
assigned to it gets opened before is associated behavior is present in
memory.  You might check if there is any delay occurring when launching
the library stack. 

You can usually get around this without exiting LiveCode by using a script
to set a control's behavior to the same behavior reference.  You can also
try setting the control's behavior to empty first.

Regards,

Scott Rossi
Creative Director
Tactile Media, UX/UI Design




On 9/24/14 3:46 PM, Peter Haworth p...@lcsql.com wrote:

I'm working with lots of controls that have behaviors.  The behavior
buttons are all in a library stack.  All works fine most of the time but
every now and again, none of the behavior scripts are executed (as
verified
with breakpoints at the start of them).  The message box shows the library
stack is still in use and the behavior properties all look valid

I can't pin down exactly what causes this but I think that editing a lot
of
the behavior scripts might cause this, but I'm pretty sure that shouldn't
happen. When it happens, the only way to get the behaviors to work again
is
to quit LC and run again.

Anyone else's applications' guilty of bad behavior like this and if so is
there a way to correct their behavior?

Pete
lcSQL Software http://www.lcsql.com
Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and
SQLiteAdmin http://www.lcsql.com/sqliteadmin.html
___
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: LiveCode to Facebook?

2014-09-24 Thread Matthias Rebbe | M-R-D
Scott,

try   LAUNCH URL fb://... in LC?
I just tried in Safari on iOS  and it opened the app. In my case i saw the 
login dialog after the fb app opened.

Regards,

Matthias


Am 25.09.2014 um 01:01 schrieb Scott Rossi sc...@tactilemedia.com:

 Hi List:
 
 Anyone know if it's possible on mobile to launch the local Facebook app
 from a LiveCode standalone?
 
 I'm using Monte Goulding's mergSocial external for FB posting which works
 fine, as long as the user is signed into Facebook via their iOS settings.
 If they're not signed in, posting on Facebook is not available.  This
 makes sense, but is also a limitation for the user, since their native FB
 app continues to operate as expected.
 
 I'm hoping to provide a second FB posting alternative for users by
 offering to launch the native FB app if mergSocial is unable to connect to
 the service.  Is this possible?  Does anyone know if/how this usability
 issue is handled in other apps?
 
 Thanks for suggestions.
 
 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: Behaviors

2014-09-24 Thread Richard Gaskin

Peter Haworth wrote:

Anyone else's applications' guilty of bad behavior like this and if so is
there a way to correct their behavior?


May be relevant:

Behavior resolution is too strict and is confusing
http://quality.runrev.com/show_bug.cgi?id=8993

The only workaround I've used is to walk through all objects, setting 
their behavior property to the value of their behavior property.  Yes, 
silly, but it works.  It's like behaviors need a kick start under 
certain circumstances.


--
 Richard Gaskin
 Fourth World Systems
 Software Design and Development for the Desktop, Mobile, and the 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


Re: LiveCode to Facebook?

2014-09-24 Thread Pierre Sahores
Hi Scott,

Here is the way it goes on one of my project on the way to be published along 
october :

on module_socialshare
   
   if url MIAS is  then 
  answer tolocalisation(Désolé. Vos réseaux sociaux ne sont accessibles 
qu'en mode connecté.)
  exit module_socialshare
   end if
   
   get myCustomBusyIndicatorStart(,gray)
   
   local 
mesResauxSociaux,mySelection,mTitle,mSummary,mURL,mImage,pageToGo,tproducts_scan,tsharedproduct,tproducts_url,tsharedproduct_image
   
   if the platform is iphone then
  answer tolocalisation(Sélection du réseau social :) with Facebook or 
Google+ or Pinterest or Twitter or tolocalisation(Annuler)
  if it is tolocalisation(Annuler) then
 ### answer tolocalisation(Opération annulée à votre demande.)
 exit module_socialshare
  else put it into mySelection
   else 
  put Facebook  return   Google+  return   Pinterest  return   
Twitter into mesResauxSociaux
  # put Facebook  return   Google+  return   Pinterest  return  
 Twitter  return  @Mail into mesResauxSociaux
  mobilePick mesResauxSociaux, 1, cancelDone
  if the result is 0 then
 ### answer tolocalisation(Opération annulée à votre demande.)
 exit module_socialshare
  else put line (the result) of mesResauxSociaux into mySelection
   end if
   
   if mySelection is @Mail then 
  
  myCustomBusyIndicatorStop
  socialshare_mail
  
   else
  
  put url (http://ecows.widestep.fr/;  gAppVars[MobileAppName]  _  
gAppVars[activecatalog]  /) into tproducts_scan
  put lineoffset('  trim(line 2 of fld page_title)  /a/li, 
tproducts_scan) into tsharedproduct
  put lineoffset(alt=  setquote(trim(line 2 of fld page_title)), 
tproducts_scan) into tsharedproduct_image
  
  if tsharedproduct  0 then
 
 set itemdel to /
 put http://ecows.widestep.fr/;  item 2 to 6 of line tsharedproduct 
of tproducts_scan  / into tproducts_url
 set itemdel to quote
 put http://ecows.widestep.fr/;  item 4 of line tsharedproduct_image 
of tproducts_scan into tsharedproduct_image
 
 if mySelection is Facebook then

put https://www.facebook.com/sharer/sharer.php?u=;  \
  tproducts_url   \
  title= \
  urlencode(trim(line 2 of fld page_title))  \
  desc= \
  urlencode(So high end, my Redskins...) into pageToGo

 else if mySelection is Google+ then

put https://plus.google.com/share?url=;  tproducts_url  \
  title= \
  urlencode(trim(line 2 of fld page_title))  \
  content=  \
  urlencode(So high end, my Redskins...) into pageToGo

 else if mySelection is Pinterest then

put http://pinterest.com/pin/create/button/?url=;  \
  tproducts_url  \
  description= \
  urlencode(So high end, my Redskins...)  \
  media=  \
  tsharedproduct_image into pageToGo

 else if mySelection is Twitter then

put https://twitter.com/intent/tweet?text=;  \
  urlencode(So high end, my Redskins...)  \
  url=  \
  tproducts_url into pageToGo

 end if
 
 mobileControlSet MySocialShare, url, pageToGo
 mobileControlSet MySocialShare, visible, true
 
  else 
 
 myCustomBusyIndicatorStop
 answer tolocalisation(Oops. Référence produit erronée. Partage du 
modèle sélectionné sur les réseaux sociaux impossible.)
 
  end if
  
   end if
   
   myCustomBusyIndicatorStop
   
end module_socialshare

Best,

Pierre

Le 25 sept. 2014 à 01:01, Scott Rossi sc...@tactilemedia.com a écrit :

 Hi List:
 
 Anyone know if it's possible on mobile to launch the local Facebook app
 from a LiveCode standalone?
 
 I'm using Monte Goulding's mergSocial external for FB posting which works
 fine, as long as the user is signed into Facebook via their iOS settings.
 If they're not signed in, posting on Facebook is not available.  This
 makes sense, but is also a limitation for the user, since their native FB
 app continues to operate as expected.
 
 I'm hoping to provide a second FB posting alternative for users by
 offering to launch the native FB app if mergSocial is unable to connect to
 the service.  Is this possible?  Does anyone know if/how this usability
 issue is handled in other apps?
 
 Thanks for suggestions.
 
 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:
 

Scroll Line Into View in a Datagrid

2014-09-24 Thread Ray

Has anybody had any luck with scrollLineIntoView?

I'm trying all kinds of variations in syntax of:

dispatch scrollLineIntoView to group MyGroup with 20

but with no results and nothing in 'the result'

Is there something else I need to to do prepare for this?



Note:  I'm not sure if this got posted earlier.  I can never get that 
receive your own posts subscription option to work so please excuse me 
if this was already posted.


___
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: LiveCode to Facebook?

2014-09-24 Thread Scott Rossi
Matthias thank you very much -- this seems to work great, and so simple.
:-)

Hopefully, this will provide a good workaround when direct FB posting is
not possible.

Thanks  Regards,

Scott Rossi
Creative Director
Tactile Media, UX/UI Design




On 9/24/14 4:10 PM, Matthias Rebbe | M-R-D
matthias_livecode_150...@m-r-d.de wrote:

Scott,

try   LAUNCH URL fb://... in LC?
I just tried in Safari on iOS  and it opened the app. In my case i saw
the login dialog after the fb app opened.

Regards,

Matthias


Am 25.09.2014 um 01:01 schrieb Scott Rossi sc...@tactilemedia.com:

 Hi List:
 
 Anyone know if it's possible on mobile to launch the local Facebook app
 from a LiveCode standalone?
 
 I'm using Monte Goulding's mergSocial external for FB posting which
works
 fine, as long as the user is signed into Facebook via their iOS
settings.
 If they're not signed in, posting on Facebook is not available.  This
 makes sense, but is also a limitation for the user, since their native
FB
 app continues to operate as expected.
 
 I'm hoping to provide a second FB posting alternative for users by
 offering to launch the native FB app if mergSocial is unable to connect
to
 the service.  Is this possible?  Does anyone know if/how this usability
 issue is handled in other apps?
 
 Thanks for suggestions.
 
 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: LiveCode to Facebook?

2014-09-24 Thread Scott Rossi
Thanks Pierre.

A question -- I'm not following all the code entirely below, but does your
routine launch the local applications on the device or the web sites of
these services in a browser?

Thanks  Regards,

Scott Rossi
Creative Director
Tactile Media, UX/UI Design




On 9/24/14 4:20 PM, Pierre Sahores s...@sahores-conseil.com wrote:

Hi Scott,

Here is the way it goes on one of my project on the way to be published
along october :

on module_socialshare
   
   if url MIAS is  then
  answer tolocalisation(Désolé. Vos réseaux sociaux ne sont
accessibles qu'en mode connecté.)
  exit module_socialshare
   end if
   
   get myCustomBusyIndicatorStart(,gray)
   
   local 
mesResauxSociaux,mySelection,mTitle,mSummary,mURL,mImage,pageToGo,tproduct
s_scan,tsharedproduct,tproducts_url,tsharedproduct_image
   
   if the platform is iphone then
  answer tolocalisation(Sélection du réseau social :) with
Facebook or Google+ or Pinterest or Twitter or
tolocalisation(Annuler)
  if it is tolocalisation(Annuler) then
 ### answer tolocalisation(Opération annulée à votre demande.)
 exit module_socialshare
  else put it into mySelection
   else 
  put Facebook  return   Google+  return   Pinterest 
return   Twitter into mesResauxSociaux
  # put Facebook  return   Google+  return   Pinterest 
return   Twitter  return  @Mail into mesResauxSociaux
  mobilePick mesResauxSociaux, 1, cancelDone
  if the result is 0 then
 ### answer tolocalisation(Opération annulée à votre demande.)
 exit module_socialshare
  else put line (the result) of mesResauxSociaux into mySelection
   end if
   
   if mySelection is @Mail then
  
  myCustomBusyIndicatorStop
  socialshare_mail
  
   else
  
  put url (http://ecows.widestep.fr/;  gAppVars[MobileAppName] 
_  gAppVars[activecatalog]  /) into tproducts_scan
  put lineoffset('  trim(line 2 of fld page_title) 
/a/li, tproducts_scan) into tsharedproduct
  put lineoffset(alt=  setquote(trim(line 2 of fld page_title)),
tproducts_scan) into tsharedproduct_image
  
  if tsharedproduct  0 then
 
 set itemdel to /
 put http://ecows.widestep.fr/;  item 2 to 6 of line
tsharedproduct of tproducts_scan  / into tproducts_url
 set itemdel to quote
 put http://ecows.widestep.fr/;  item 4 of line
tsharedproduct_image of tproducts_scan into tsharedproduct_image
 
 if mySelection is Facebook then

put https://www.facebook.com/sharer/sharer.php?u=;  \
  tproducts_url   \
  title= \
  urlencode(trim(line 2 of fld page_title))  \
  desc= \
  urlencode(So high end, my Redskins...) into pageToGo

 else if mySelection is Google+ then

put https://plus.google.com/share?url=;  tproducts_url  \
  title= \
  urlencode(trim(line 2 of fld page_title))  \
  content=  \
  urlencode(So high end, my Redskins...) into pageToGo

 else if mySelection is Pinterest then

put http://pinterest.com/pin/create/button/?url=;  \
  tproducts_url  \
  description= \
  urlencode(So high end, my Redskins...)  \
  media=  \
  tsharedproduct_image into pageToGo

 else if mySelection is Twitter then

put https://twitter.com/intent/tweet?text=;  \
  urlencode(So high end, my Redskins...)  \
  url=  \
  tproducts_url into pageToGo

 end if
 
 mobileControlSet MySocialShare, url, pageToGo
 mobileControlSet MySocialShare, visible, true
 
  else 
 
 myCustomBusyIndicatorStop
 answer tolocalisation(Oops. Référence produit erronée. Partage
du modèle sélectionné sur les réseaux sociaux impossible.)
 
  end if
  
   end if
   
   myCustomBusyIndicatorStop
   
end module_socialshare

Best,

Pierre

Le 25 sept. 2014 à 01:01, Scott Rossi sc...@tactilemedia.com a écrit :

 Hi List:
 
 Anyone know if it's possible on mobile to launch the local Facebook app
 from a LiveCode standalone?
 
 I'm using Monte Goulding's mergSocial external for FB posting which
works
 fine, as long as the user is signed into Facebook via their iOS
settings.
 If they're not signed in, posting on Facebook is not available.  This
 makes sense, but is also a limitation for the user, since their native
FB
 app continues to operate as expected.
 
 I'm hoping to provide a second FB posting alternative for users by
 offering to launch the native FB app if mergSocial is unable to connect
to
 the service.  Is this possible?  Does anyone know if/how this usability
 issue is handled in other apps?
 
 Thanks for 

Re: Behaviors

2014-09-24 Thread Peter Haworth
Thanks Scott.  I've come across that situation before but this is
different.  The behaviors all work fine when the stack is first opened,
 Then, after some time using the stack and adding new controls which refer
to the behaviors, the behaviors suddenly stop being resolved.

I'd file a QCC report but I don't have a reliable recipe to reproduce the
problem.

I recall seeing a post a while back suggesting it would be good to have a
method of re-connecting behaviors when things like this happen.

Pete
lcSQL Software http://www.lcsql.com
Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and
SQLiteAdmin http://www.lcsql.com/sqliteadmin.html

On Wed, Sep 24, 2014 at 4:08 PM, Scott Rossi sc...@tactilemedia.com wrote:

 Hi Pete:

 Not sure if this is true in your case, but one reason why this can
 sometimes happen is if, for whatever reason, a control that has a behavior
 assigned to it gets opened before is associated behavior is present in
 memory.  You might check if there is any delay occurring when launching
 the library stack.

 You can usually get around this without exiting LiveCode by using a script
 to set a control's behavior to the same behavior reference.  You can also
 try setting the control's behavior to empty first.

 Regards,

 Scott Rossi
 Creative Director
 Tactile Media, UX/UI Design




 On 9/24/14 3:46 PM, Peter Haworth p...@lcsql.com wrote:

 I'm working with lots of controls that have behaviors.  The behavior
 buttons are all in a library stack.  All works fine most of the time but
 every now and again, none of the behavior scripts are executed (as
 verified
 with breakpoints at the start of them).  The message box shows the library
 stack is still in use and the behavior properties all look valid
 
 I can't pin down exactly what causes this but I think that editing a lot
 of
 the behavior scripts might cause this, but I'm pretty sure that shouldn't
 happen. When it happens, the only way to get the behaviors to work again
 is
 to quit LC and run again.
 
 Anyone else's applications' guilty of bad behavior like this and if so is
 there a way to correct their behavior?
 
 Pete
 lcSQL Software http://www.lcsql.com
 Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and
 SQLiteAdmin http://www.lcsql.com/sqliteadmin.html
 ___
 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: Behaviors

2014-09-24 Thread Peter Haworth
Hi Richard,
Our posts crossed, thanks for the QCC reference.

Your QCC report describes a situation very similar to mine - using a
library stack to hold the behaviors.  However, my behaviors start off
behaving themselves and only start misbehaving at some point later in using
the stack.

I think perhaps the library problem is not biting me because I set up a
reference to the library stack in my mainstack's stackFiles property.
Maybe that forces the library stack to be opened in time for the behaviors
to be resolved?  I still issue a start using command because the library
has a bunch of handlers in it in addition to the behavior buttons.

In spite of all that I agree with your QCC report and have added myself to
the list of interested folks.  Mark's solution seems to be a nice way to
resolve it.

Pete
lcSQL Software http://www.lcsql.com
Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and
SQLiteAdmin http://www.lcsql.com/sqliteadmin.html

On Wed, Sep 24, 2014 at 4:11 PM, Richard Gaskin ambassa...@fourthworld.com
wrote:

 Peter Haworth wrote:

 Anyone else's applications' guilty of bad behavior like this and if so is
 there a way to correct their behavior?


 May be relevant:

 Behavior resolution is too strict and is confusing
 http://quality.runrev.com/show_bug.cgi?id=8993

 The only workaround I've used is to walk through all objects, setting
 their behavior property to the value of their behavior property.  Yes,
 silly, but it works.  It's like behaviors need a kick start under certain
 circumstances.

 --
  Richard Gaskin
  Fourth World Systems
  Software Design and Development for the Desktop, Mobile, and the 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

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

2014-09-24 Thread Monte Goulding

On 25 Sep 2014, at 10:06 am, Peter Haworth p...@lcsql.com wrote:

 The behaviors all work fine when the stack is first opened,
 Then, after some time using the stack and adding new controls which refer
 to the behaviors, the behaviors suddenly stop being resolved.

Hmm... behaviors are stored as an id and a stack name. If they are resolved 
already the only way I can thing they might stop being resolved is if something 
is changing either of those things about the behavior button.

There was at one time an idea to expose a resolveBehaviors command but I think 
Mark Waddingham had some other ideas he wanted to look at to make it more 
automatic. It certainly would be lovely to be able to change a stack name 
without having to set all the behaviors again...

Cheers

Monte

--
M E R Goulding 
Software development services
Bespoke application development for vertical markets

mergExt - There's an external for that!

___
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: Scroll Line Into View in a Datagrid

2014-09-24 Thread Peter Haworth
Syntax looks good.  Couple of things you've probably already checked -
what's in the it variable after dispatch (should be handled), and are
you sure 20 is a valid line number.

Pete
lcSQL Software http://www.lcsql.com
Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and
SQLiteAdmin http://www.lcsql.com/sqliteadmin.html

On Wed, Sep 24, 2014 at 4:29 PM, Ray r...@linkit.com wrote:

 Has anybody had any luck with scrollLineIntoView?

 I'm trying all kinds of variations in syntax of:

 dispatch scrollLineIntoView to group MyGroup with 20

 but with no results and nothing in 'the result'

 Is there something else I need to to do prepare for this?

 

 Note:  I'm not sure if this got posted earlier.  I can never get that
 receive your own posts subscription option to work so please excuse me if
 this was already posted.

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

2014-09-24 Thread Ralph DiMola
Peter,

If this only happens in the IDE it might be related to bug
http://quality.runrev.com/show_bug.cgi?id=12508 
I couldn't nail this one down until today. I created a recipe for support.
Hanson reproduced it in the lab.


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 Peter Haworth
Sent: Wednesday, September 24, 2014 6:47 PM
To: How to use LiveCode
Subject: Behaviors

I'm working with lots of controls that have behaviors.  The behavior buttons
are all in a library stack.  All works fine most of the time but every now
and again, none of the behavior scripts are executed (as verified with
breakpoints at the start of them).  The message box shows the library stack
is still in use and the behavior properties all look valid

I can't pin down exactly what causes this but I think that editing a lot of
the behavior scripts might cause this, but I'm pretty sure that shouldn't
happen. When it happens, the only way to get the behaviors to work again is
to quit LC and run again.

Anyone else's applications' guilty of bad behavior like this and if so is
there a way to correct their behavior?

Pete
lcSQL Software http://www.lcsql.com
Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and
SQLiteAdmin http://www.lcsql.com/sqliteadmin.html
___
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: Scroll Line Into View in a Datagrid

2014-09-24 Thread Ray

Pete,

Thanks for the response.  I've checked the it variable and I'm getting 
handled returned, which I assume is good.  Regarding the line number, 
I've definitely got over 20 lines of data in the grid. I do only have 
one line of data for the first two columns with about 23 lines of data 
in the third.  Do you think that could be the problem?


Ray Horsley
LinkIt! Software

On 9/24/2014 9:21 PM, Peter Haworth wrote:

Syntax looks good.  Couple of things you've probably already checked -
what's in the it variable after dispatch (should be handled), and are
you sure 20 is a valid line number.

Pete
lcSQL Software http://www.lcsql.com
Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and
SQLiteAdmin http://www.lcsql.com/sqliteadmin.html

On Wed, Sep 24, 2014 at 4:29 PM, Ray r...@linkit.com wrote:


Has anybody had any luck with scrollLineIntoView?

I'm trying all kinds of variations in syntax of:

 dispatch scrollLineIntoView to group MyGroup with 20

but with no results and nothing in 'the result'

Is there something else I need to to do prepare for this?



Note:  I'm not sure if this got posted earlier.  I can never get that
receive your own posts subscription option to work so please excuse me if
this was already posted.

___
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: Scroll Line Into View in a Datagrid

2014-09-24 Thread Ray

Pete,

One more weird thing.  Even using the scroll bar I can only 'jump' to 
one extreme or the other.  That is, when I drag the scroll bar even just 
a little bit down it immediately 'pops' all the data so the last line in 
it is at the top of the screen.  Is there a way to set some sort of 
scale so scrolling actually works as expected?


On 9/24/2014 9:21 PM, Peter Haworth wrote:

Syntax looks good.  Couple of things you've probably already checked -
what's in the it variable after dispatch (should be handled), and are
you sure 20 is a valid line number.

Pete
lcSQL Software http://www.lcsql.com
Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and
SQLiteAdmin http://www.lcsql.com/sqliteadmin.html

On Wed, Sep 24, 2014 at 4:29 PM, Ray r...@linkit.com wrote:


Has anybody had any luck with scrollLineIntoView?

I'm trying all kinds of variations in syntax of:

 dispatch scrollLineIntoView to group MyGroup with 20

but with no results and nothing in 'the result'

Is there something else I need to to do prepare for this?



Note:  I'm not sure if this got posted earlier.  I can never get that
receive your own posts subscription option to work so please excuse me if
this was already posted.

___
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: LiveCode to Facebook?

2014-09-24 Thread Pierre Sahores
Scott,

way 2 : the web sites of these services in a mobile browser with this one set 
in a standard manner :

 mobileControlCreate browser, MySocialShare
  mobileControlSet MySocialShare, visible, false ### created at 
preOpenStack time ###
  mobileControlSet MySocialShare, canBounce, false
  mobileControlSet MySocialShare, scrollingEnabled, true
  mobileControlSet MySocialShare, vIndicator, false
  mobileControlSet MySocialShare, hIndicator, false
  mobileControlSet MySocialShare, rect, the rect of grc browser_rect 
of cd 3

works fine on both iOS and Android platforms.

Best,

Pierre


Le 25 sept. 2014 à 01:37, Scott Rossi sc...@tactilemedia.com a écrit :

 Thanks Pierre.
 
 A question -- I'm not following all the code entirely below, but does your
 routine launch the local applications on the device or the web sites of
 these services in a browser?
 
 Thanks  Regards,
 
 Scott Rossi
 Creative Director
 Tactile Media, UX/UI Design
 
 
 
 
 On 9/24/14 4:20 PM, Pierre Sahores s...@sahores-conseil.com wrote:
 
 Hi Scott,
 
 Here is the way it goes on one of my project on the way to be published
 along october :
 
 on module_socialshare
 
  if url MIAS is  then
 answer tolocalisation(Désolé. Vos réseaux sociaux ne sont
 accessibles qu'en mode connecté.)
 exit module_socialshare
  end if
 
  get myCustomBusyIndicatorStart(,gray)
 
  local 
 mesResauxSociaux,mySelection,mTitle,mSummary,mURL,mImage,pageToGo,tproduct
 s_scan,tsharedproduct,tproducts_url,tsharedproduct_image
 
  if the platform is iphone then
 answer tolocalisation(Sélection du réseau social :) with
 Facebook or Google+ or Pinterest or Twitter or
 tolocalisation(Annuler)
 if it is tolocalisation(Annuler) then
### answer tolocalisation(Opération annulée à votre demande.)
exit module_socialshare
 else put it into mySelection
  else 
 put Facebook  return   Google+  return   Pinterest 
 return   Twitter into mesResauxSociaux
 # put Facebook  return   Google+  return   Pinterest 
 return   Twitter  return  @Mail into mesResauxSociaux
 mobilePick mesResauxSociaux, 1, cancelDone
 if the result is 0 then
### answer tolocalisation(Opération annulée à votre demande.)
exit module_socialshare
 else put line (the result) of mesResauxSociaux into mySelection
  end if
 
  if mySelection is @Mail then
 
 myCustomBusyIndicatorStop
 socialshare_mail
 
  else
 
 put url (http://ecows.widestep.fr/;  gAppVars[MobileAppName] 
 _  gAppVars[activecatalog]  /) into tproducts_scan
 put lineoffset('  trim(line 2 of fld page_title) 
 /a/li, tproducts_scan) into tsharedproduct
 put lineoffset(alt=  setquote(trim(line 2 of fld page_title)),
 tproducts_scan) into tsharedproduct_image
 
 if tsharedproduct  0 then
 
set itemdel to /
put http://ecows.widestep.fr/;  item 2 to 6 of line
 tsharedproduct of tproducts_scan  / into tproducts_url
set itemdel to quote
put http://ecows.widestep.fr/;  item 4 of line
 tsharedproduct_image of tproducts_scan into tsharedproduct_image
 
if mySelection is Facebook then
 
   put https://www.facebook.com/sharer/sharer.php?u=;  \
 tproducts_url   \
 title= \
 urlencode(trim(line 2 of fld page_title))  \
 desc= \
 urlencode(So high end, my Redskins...) into pageToGo
 
else if mySelection is Google+ then
 
   put https://plus.google.com/share?url=;  tproducts_url  \
 title= \
 urlencode(trim(line 2 of fld page_title))  \
 content=  \
 urlencode(So high end, my Redskins...) into pageToGo
 
else if mySelection is Pinterest then
 
   put http://pinterest.com/pin/create/button/?url=;  \
 tproducts_url  \
 description= \
 urlencode(So high end, my Redskins...)  \
 media=  \
 tsharedproduct_image into pageToGo
 
else if mySelection is Twitter then
 
   put https://twitter.com/intent/tweet?text=;  \
 urlencode(So high end, my Redskins...)  \
 url=  \
 tproducts_url into pageToGo
 
end if
 
mobileControlSet MySocialShare, url, pageToGo
mobileControlSet MySocialShare, visible, true
 
 else 
 
myCustomBusyIndicatorStop
answer tolocalisation(Oops. Référence produit erronée. Partage
 du modèle sélectionné sur les réseaux sociaux impossible.)
 
 end if
 
  end if
 
  myCustomBusyIndicatorStop
 
 end module_socialshare
 
 Best,
 
 Pierre
 
 Le 25 sept. 2014 à 01:01, Scott Rossi sc...@tactilemedia.com a écrit :
 
 Hi List:
 
 Anyone know if it's possible on mobile to launch the local Facebook app
 from a LiveCode standalone?
 
 I'm using Monte Goulding's mergSocial external for FB posting which
 works
 fine, as long as the user is 

Re: Scroll Line Into View in a Datagrid

2014-09-24 Thread Peter Haworth
Hi Ray,
So this is a datagrid form, not a table? Have to admit I'm not that
familiar with dg forms so not sure what else to suggest, sorry.

Pete
lcSQL Software http://www.lcsql.com
Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and
SQLiteAdmin http://www.lcsql.com/sqliteadmin.html

On Wed, Sep 24, 2014 at 5:51 PM, Ray r...@linkit.com wrote:

 Pete,

 Thanks for the response.  I've checked the it variable and I'm getting
 handled returned, which I assume is good.  Regarding the line number,
 I've definitely got over 20 lines of data in the grid. I do only have one
 line of data for the first two columns with about 23 lines of data in the
 third.  Do you think that could be the problem?

 Ray Horsley
 LinkIt! Software

 On 9/24/2014 9:21 PM, Peter Haworth wrote:

 Syntax looks good.  Couple of things you've probably already checked -
 what's in the it variable after dispatch (should be handled), and are
 you sure 20 is a valid line number.

 Pete
 lcSQL Software http://www.lcsql.com
 Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and
 SQLiteAdmin http://www.lcsql.com/sqliteadmin.html


 On Wed, Sep 24, 2014 at 4:29 PM, Ray r...@linkit.com wrote:

  Has anybody had any luck with scrollLineIntoView?

 I'm trying all kinds of variations in syntax of:

  dispatch scrollLineIntoView to group MyGroup with 20

 but with no results and nothing in 'the result'

 Is there something else I need to to do prepare for this?

 

 Note:  I'm not sure if this got posted earlier.  I can never get that
 receive your own posts subscription option to work so please excuse me
 if
 this was already posted.

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

2014-09-24 Thread Peter Haworth
Thanks Monte.  Richard posted the link to the QCC report for the
resolveBehaviors enhancement and Mark's subsequent thoughts on it.

I don't think anything about the behaviors is being changed.  That's born
out by the fact that if I quit LC and re-run with the same stack,
everything works again.

There's another scenario that might be causing this.  I occasionally stop
code execution in the midst of stepping through code in debug mode.  In the
past, I've noticed odd side effects from doing that so maybe this is
another one of them.  I'
ll try to pay more attention to things I do in this stack to help pin it
down.

Pete
lcSQL Software http://www.lcsql.com
Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and
SQLiteAdmin http://www.lcsql.com/sqliteadmin.html

On Wed, Sep 24, 2014 at 5:17 PM, Monte Goulding mo...@sweattechnologies.com
 wrote:


 On 25 Sep 2014, at 10:06 am, Peter Haworth p...@lcsql.com wrote:

  The behaviors all work fine when the stack is first opened,
  Then, after some time using the stack and adding new controls which refer
  to the behaviors, the behaviors suddenly stop being resolved.

 Hmm... behaviors are stored as an id and a stack name. If they are
 resolved already the only way I can thing they might stop being resolved is
 if something is changing either of those things about the behavior button.

 There was at one time an idea to expose a resolveBehaviors command but I
 think Mark Waddingham had some other ideas he wanted to look at to make it
 more automatic. It certainly would be lovely to be able to change a stack
 name without having to set all the behaviors again...

 Cheers

 Monte

 --
 M E R Goulding
 Software development services
 Bespoke application development for vertical markets

 mergExt - There's an external for that!

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

2014-09-24 Thread Peter Haworth
Thanks Ralph, I'll check into that.  This happens in a plugin so there
won't ever be a standalone to check.  And of course it's in one that is
about to go into beta proving yet again that those little buglets just bide
their time before surfacing at a time that guarantees they cause the most
frustration :-)

Pete
lcSQL Software http://www.lcsql.com
Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and
SQLiteAdmin http://www.lcsql.com/sqliteadmin.html

On Wed, Sep 24, 2014 at 5:38 PM, Ralph DiMola rdim...@evergreeninfo.net
wrote:

 Peter,

 If this only happens in the IDE it might be related to bug
 http://quality.runrev.com/show_bug.cgi?id=12508 
 I couldn't nail this one down until today. I created a recipe for support.
 Hanson reproduced it in the lab.


 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 Peter Haworth
 Sent: Wednesday, September 24, 2014 6:47 PM
 To: How to use LiveCode
 Subject: Behaviors

 I'm working with lots of controls that have behaviors.  The behavior
 buttons
 are all in a library stack.  All works fine most of the time but every now
 and again, none of the behavior scripts are executed (as verified with
 breakpoints at the start of them).  The message box shows the library stack
 is still in use and the behavior properties all look valid

 I can't pin down exactly what causes this but I think that editing a lot of
 the behavior scripts might cause this, but I'm pretty sure that shouldn't
 happen. When it happens, the only way to get the behaviors to work again is
 to quit LC and run again.

 Anyone else's applications' guilty of bad behavior like this and if so is
 there a way to correct their behavior?

 Pete
 lcSQL Software http://www.lcsql.com
 Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and
 SQLiteAdmin http://www.lcsql.com/sqliteadmin.html
 ___
 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: Scroll Line Into View in a Datagrid

2014-09-24 Thread Ray

Pete - my mistake in calling it a grid.  It actually is a Table.

On 9/24/2014 10:49 PM, Peter Haworth wrote:

Hi Ray,
So this is a datagrid form, not a table? Have to admit I'm not that
familiar with dg forms so not sure what else to suggest, sorry.

Pete
lcSQL Software http://www.lcsql.com
Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and
SQLiteAdmin http://www.lcsql.com/sqliteadmin.html

On Wed, Sep 24, 2014 at 5:51 PM, Ray r...@linkit.com wrote:


Pete,

Thanks for the response.  I've checked the it variable and I'm getting
handled returned, which I assume is good.  Regarding the line number,
I've definitely got over 20 lines of data in the grid. I do only have one
line of data for the first two columns with about 23 lines of data in the
third.  Do you think that could be the problem?

Ray Horsley
LinkIt! Software

On 9/24/2014 9:21 PM, Peter Haworth wrote:


Syntax looks good.  Couple of things you've probably already checked -
what's in the it variable after dispatch (should be handled), and are
you sure 20 is a valid line number.

Pete
lcSQL Software http://www.lcsql.com
Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and
SQLiteAdmin http://www.lcsql.com/sqliteadmin.html


On Wed, Sep 24, 2014 at 4:29 PM, Ray r...@linkit.com wrote:

  Has anybody had any luck with scrollLineIntoView?

I'm trying all kinds of variations in syntax of:

  dispatch scrollLineIntoView to group MyGroup with 20

but with no results and nothing in 'the result'

Is there something else I need to to do prepare for this?



Note:  I'm not sure if this got posted earlier.  I can never get that
receive your own posts subscription option to work so please excuse me
if
this was already posted.

___
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: Scroll Line Into View in a Datagrid

2014-09-24 Thread Ray

Pete,

Now wait a minute.  I've sometimes gotten a bit confused with Livecode's 
terms.  When  l look at it in the properties palette it's a group with 
a style of Table which I can change to Form (but I don't).


But when I created it I dragged over a Data Grid as oposed to a Basic 
Table Field or a Scrolling Field for example.


So what is it?

On 9/24/2014 10:49 PM, Peter Haworth wrote:

Hi Ray,
So this is a datagrid form, not a table? Have to admit I'm not that
familiar with dg forms so not sure what else to suggest, sorry.

Pete
lcSQL Software http://www.lcsql.com
Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and
SQLiteAdmin http://www.lcsql.com/sqliteadmin.html

On Wed, Sep 24, 2014 at 5:51 PM, Ray r...@linkit.com wrote:


Pete,

Thanks for the response.  I've checked the it variable and I'm getting
handled returned, which I assume is good.  Regarding the line number,
I've definitely got over 20 lines of data in the grid. I do only have one
line of data for the first two columns with about 23 lines of data in the
third.  Do you think that could be the problem?

Ray Horsley
LinkIt! Software

On 9/24/2014 9:21 PM, Peter Haworth wrote:


Syntax looks good.  Couple of things you've probably already checked -
what's in the it variable after dispatch (should be handled), and are
you sure 20 is a valid line number.

Pete
lcSQL Software http://www.lcsql.com
Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and
SQLiteAdmin http://www.lcsql.com/sqliteadmin.html


On Wed, Sep 24, 2014 at 4:29 PM, Ray r...@linkit.com wrote:

  Has anybody had any luck with scrollLineIntoView?

I'm trying all kinds of variations in syntax of:

  dispatch scrollLineIntoView to group MyGroup with 20

but with no results and nothing in 'the result'

Is there something else I need to to do prepare for this?



Note:  I'm not sure if this got posted earlier.  I can never get that
receive your own posts subscription option to work so please excuse me
if
this was already posted.

___
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: OS X Mavericks

2014-09-24 Thread Mark Smith
Mike, thanks for mentioning that. I am about to upgrade to Mavericks myself
and will make sure I check that LC is pointing to the right Xcode. What
about the SDK?

Mark



--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/OS-X-Mavericks-tp4671455p4683735.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: Scroll Line Into View in a Datagrid

2014-09-24 Thread Peter Haworth
Datagrids come in 2 flavors,  table and form.  So you have a datagrid table
not an LC basic table control.

I asked about a form because of your comment about multiple lines. Normally
a datagrid  table has one line per row with a return  character marking the
end of a line.  If you're trying to put multiple lines in a single
datagrid  row,  I don't think you can do that.

Pete
lcSQL Software
On Sep 24, 2014 7:32 PM, Ray r...@linkit.com wrote:

 Pete,

 Now wait a minute.  I've sometimes gotten a bit confused with Livecode's
 terms.  When  l look at it in the properties palette it's a group with a
 style of Table which I can change to Form (but I don't).

 But when I created it I dragged over a Data Grid as oposed to a Basic
 Table Field or a Scrolling Field for example.

 So what is it?

 On 9/24/2014 10:49 PM, Peter Haworth wrote:

 Hi Ray,
 So this is a datagrid form, not a table? Have to admit I'm not that
 familiar with dg forms so not sure what else to suggest, sorry.

 Pete
 lcSQL Software http://www.lcsql.com
 Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and
 SQLiteAdmin http://www.lcsql.com/sqliteadmin.html

 On Wed, Sep 24, 2014 at 5:51 PM, Ray r...@linkit.com wrote:

  Pete,

 Thanks for the response.  I've checked the it variable and I'm getting
 handled returned, which I assume is good.  Regarding the line number,
 I've definitely got over 20 lines of data in the grid. I do only have one
 line of data for the first two columns with about 23 lines of data in the
 third.  Do you think that could be the problem?

 Ray Horsley
 LinkIt! Software

 On 9/24/2014 9:21 PM, Peter Haworth wrote:

  Syntax looks good.  Couple of things you've probably already checked -
 what's in the it variable after dispatch (should be handled), and
 are
 you sure 20 is a valid line number.

 Pete
 lcSQL Software http://www.lcsql.com
 Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and
 SQLiteAdmin http://www.lcsql.com/sqliteadmin.html


 On Wed, Sep 24, 2014 at 4:29 PM, Ray r...@linkit.com wrote:

   Has anybody had any luck with scrollLineIntoView?

 I'm trying all kinds of variations in syntax of:

   dispatch scrollLineIntoView to group MyGroup with 20

 but with no results and nothing in 'the result'

 Is there something else I need to to do prepare for this?

 

 Note:  I'm not sure if this got posted earlier.  I can never get that
 receive your own posts subscription option to work so please excuse
 me
 if
 this was already posted.

 ___
 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


Using Livecode to burn DVDs on demand?

2014-09-24 Thread Tim Selander
I work for a TV production house, and we offer past programs to our 
audience on DVDs. Sell maybe 100 a month.


I would like to use Livecode to catalog the programs (no problem there, 
I can do that), and then be able to burn a DVD. All our programs are on 
HDD, ready to burn. I can handle everything but burning to DVD.


Are there any commands/libraries/externals that would let me, from 
within Livecode, send the data I've picked up to a DVD burner?


Thanks,

Tim Selander
Tokyo, Japan

___
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


Mavericks

2014-09-24 Thread Richmond

Confirmed: Standalones built with LC 4.5 don't run on Mac OS 10.9

Sad, really

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