Re: [semi OT] Virtual visits and LC

2015-01-14 Thread kee nethery
ponga.com


 On Jan 14, 2015, at 11:07 AM, j...@souslelogo.com wrote:
 
 Hi list
 A client of mine wants to add a few virtual visits of warehouses
 and appartments on his website. Those virtual visits will include
 various clickable hot spots, for instance to move from one room
 to another, or on various objects and furnitures in the room in
 order to display infos about them when a user clicks upon.
 Furthermore, apart from the website, the same virtual visits will
 be used on a LC standalone, and probably also on a mobile version
 of that standalone.
 Does anyone has any experience with something similar, and
 could recommend any software for such a project ?
 
 Thanks in advance.
 jbv
 
 
 ___
 use-livecode mailing list
 use-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: Script to Generate Concurrent Times

2015-01-14 Thread J. Landman Gay

On 1/14/2015 1:22 PM, Roger Eller wrote:

Apparently on Windows the date command is used to SET the time.


That's too bad. I briefly looked for an equivalent but couldn't find 
one. I did find this though, which applies to Linux-based systems:


Valid locations for $TZ can be found here: /usr/share/zoneinfo

--
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: [semi OT] Virtual visits and LC

2015-01-14 Thread Richmond

On 14/01/15 21:07, j...@souslelogo.com wrote:

Hi list
A client of mine wants to add a few virtual visits of warehouses
and appartments on his website. Those virtual visits will include
various clickable hot spots, for instance to move from one room
to another, or on various objects and furnitures in the room in
order to display infos about them when a user clicks upon.
Furthermore, apart from the website, the same virtual visits will
be used on a LC standalone, and probably also on a mobile version
of that standalone.
Does anyone has any experience with something similar, and
could recommend any software for such a project ?

Thanks in advance.
jbv




I don't think you need any other software than Livecode if
RunRev GET A MOVE ON with HTML 5 . . .

. . . Then one should be able to make a virtual visit in exactly the same
way as I did with Hypercard in 1997 [and involving no more programming
than then] in Livecode and then export it as HTML 5 for rolling into a
website.

Come to think of things [ Richard Gaskin ] things have got AWFULLY QUIET
on the HTML 5 front recently 

A spot of where we are just now might not be a bad thing.

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: Livecode 7 - Unicode - items not the same as pre-7?

2015-01-14 Thread kee nethery
To quote Gilda Radner’s Saturday Night Live character “Oh, nevermind.”

In my code I’m using the XML Xpath function to grab data out of a bunch of XML 
and insert it into items on a line. Problem is that the Xpath function either 
adds stuff to the end of the data it returns or that stuff is invisible when 
viewed in a browser. Either way, once I cleaned off characters from the Xpath 
function results, it did the right thing.

Kee


 On Jan 14, 2015, at 9:48 AM, kee nethery k...@kagi.com wrote:
 
 In the pre-Unicode days, this code:
 
 set the itemdelimiter to tab
 put empty into theData
 put “jumbo” into item 4 of theData
 
 would produce something that looked like this (in your mind replace “tab” 
 with the blank spacing of a tab)
 
 tabtabtabjumbo
 
 In the Livecode 7 Unicode world, this is producing an output that looks like:
 
 tab
 
 tab
 
 tabjumbo
 
 In the IDE, when I use the magnify glass to examine theData, I can click in 
 “jumbo” and use the right arrow to go through theData but when I try to use 
 the left arrow to move back, it will move within “jumbo” but when it gets to 
 the left of “j” it halts. The left arrow ceases to move the insertion point.
 
 Why is each item on a separate line? How do I get Unicode Livecode to produce 
 the same output as pre-7?
 
 Kee Nethery
 ___
 use-livecode mailing list
 use-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: Script to Generate Concurrent Times

2015-01-14 Thread Roger Eller
Apparently on Windows the date command is used to SET the time.  The
result is:

The current date is: Wed 01/14/2015

Enter the new date: (mm-dd-yy)




On Wed, Jan 14, 2015 at 12:27 PM, J. Landman Gay jac...@hyperactivesw.com
wrote:

 On 1/14/2015 10:27 AM, Devin Asay wrote:

 In your .lc script do this:

 put US/Mountain into $TZ # or whatever time zone you want to
 show
 put shell(date) into tDTstring

 Setting the $TZ variable right before called the date command returns the
 date/time the specified timezone. At least it works on the on-rev servers.


 Oh cool. It works on OS X too.

 --
 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: [semi OT] Virtual visits and LC

2015-01-14 Thread jbv
Actually I forgot to mention that ideally the virtual visit should be
similar to google street view : users should be able to move
around the appartment in 360° (like on google street view), not just
with a serie of static photos with clickable spots...

Best
jbv

 Hi list
 A client of mine wants to add a few virtual visits of warehouses
 and appartments on his website. Those virtual visits will include
 various clickable hot spots, for instance to move from one room
 to another, or on various objects and furnitures in the room in
 order to display infos about them when a user clicks upon.
 Furthermore, apart from the website, the same virtual visits will
 be used on a LC standalone, and probably also on a mobile version
 of that standalone.
 Does anyone has any experience with something similar, and
 could recommend any software for such a project ?

 Thanks in advance.
 jbv



___
use-livecode mailing list
use-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: Possible insanity, or is it LC 7.0.1?

2015-01-14 Thread Peter Alcibiades
LC 7.0 on Debian, both give true.  And the second one, if you change it to
'is not a number', gives false.

Dunno!

Peter



--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Possible-insanity-or-is-it-LC-7-0-1-tp4687816p4687817.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


[semi OT] Virtual visits and LC

2015-01-14 Thread jbv
Hi list
A client of mine wants to add a few virtual visits of warehouses
and appartments on his website. Those virtual visits will include
various clickable hot spots, for instance to move from one room
to another, or on various objects and furnitures in the room in
order to display infos about them when a user clicks upon.
Furthermore, apart from the website, the same virtual visits will
be used on a LC standalone, and probably also on a mobile version
of that standalone.
Does anyone has any experience with something similar, and
could recommend any software for such a project ?

Thanks in advance.
jbv


___
use-livecode mailing list
use-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: Debugging plugins

2015-01-14 Thread Mark Wieder
Pete-

Wednesday, January 14, 2015, 10:18:46 AM, you wrote:

 If I understand this correctly, if a stack name begins with rev and
 gRevDevelopment is false, any runtime errors in it are ignored? That's any
 stack, not just IDE stacks?

That is correct.

 I don't suppose this would also enable some way to trap runtime errors and
 report info about them, would it?

I'm not following that. Runtime errors *are* trapped, unless I'm
misunderstanding you, which I suppose is pretty obvious.

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


Possible insanity, or is it LC 7.0.1?

2015-01-14 Thread Graham Samuel
Using LC 7.0.1 on Yosemite 1010.1, when I type this into the message box

  put (1.884955 is a number)

I get true, as expected, but if I put

  put (1.884956 is a number)

I get 

Script compile error:
Error description: Expression: unquoted literal

This result was derived from some complex code so I originally thought that the 
character string could have been corrupt with invisible characters,  but I 
retyped the numbers myself. This seems so mad that I need someone to confirm 
it, even though I find it completely repeatable. I tried it on LC 6.7 (which 
just happens to be on my machine) and I got true as expected.

Someone tell me I am not crazy.

TIA

Graham
___
use-livecode mailing list
use-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: Possible insanity, or is it LC 7.0.1?

2015-01-14 Thread Eric Corbett
Try on the multi-line option in the message box:

put (1.884956 is a number) into tIsNum
put tIsNum


On Jan 14, 2015, at 12:03 PM, Graham Samuel livf...@mac.com wrote:

 Using LC 7.0.1 on Yosemite 1010.1, when I type this into the message box
 
  put (1.884955 is a number)
 
 I get true, as expected, but if I put
 
  put (1.884956 is a number)
 
 I get 
 
 Script compile error:
 Error description: Expression: unquoted literal
 
 This result was derived from some complex code so I originally thought that 
 the character string could have been corrupt with invisible characters,  but 
 I retyped the numbers myself. This seems so mad that I need someone to 
 confirm it, even though I find it completely repeatable. I tried it on LC 6.7 
 (which just happens to be on my machine) and I got true as expected.
 
 Someone tell me I am not crazy.
 
 TIA
 
 Graham
 ___
 use-livecode mailing list
 use-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: Possible insanity, or is it LC 7.0.1?

2015-01-14 Thread Kay C Lan
On Thu, Jan 15, 2015 at 8:29 AM, Roger Guay i...@mac.com wrote:


 I get Paul's results when I do it Paul’s way, but I don’t get Graham’s
 results when I do it his way via the message box!!


Same here and I'm on Mavericks. And just to confuse the matter even further:

put 1.884956 into tVar
put isNumber(tVar)

put 1.884956 into tVar
put (tVar + 0)

put value(1.884956+0)

All three work fine.

put 1.884956 into tVar
put isNumber(tVar)
put value(tVar + 0)

does not.

Graham, definitely one for you to log with the QCC.
___
use-livecode mailing list
use-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: Possible insanity, or is it LC 7.0.1?

2015-01-14 Thread Roger Guay
Graham,

I get true in both cases, same setup.

Roger

 On Jan 14, 2015, at 1:03 PM, Graham Samuel livf...@mac.com wrote:
 
 Using LC 7.0.1 on Yosemite 1010.1, when I type this into the message box
 
  put (1.884955 is a number)
 
 I get true, as expected, but if I put
 
  put (1.884956 is a number)
 
 I get 
 
 Script compile error:
 Error description: Expression: unquoted literal
 
 This result was derived from some complex code so I originally thought that 
 the character string could have been corrupt with invisible characters,  but 
 I retyped the numbers myself. This seems so mad that I need someone to 
 confirm it, even though I find it completely repeatable. I tried it on LC 6.7 
 (which just happens to be on my machine) and I got true as expected.
 
 Someone tell me I am not crazy.
 
 TIA
 
 Graham
 ___
 use-livecode mailing list
 use-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: Possible insanity, or is it LC 7.0.1?

2015-01-14 Thread Roger Guay
Such strange goings-on!

I get Paul's results when I do it Paul’s way, but I don’t get Graham’s results 
when I do it his way via the message box!!

Does that make me half crazy?


 On Jan 14, 2015, at 5:07 PM, Paul Hibbert p...@livecode.org wrote:
 
 You're not going totally crazy, unless I am too.
 
 This fails here in LC7.0.1 on Mac OS X 10.10.1…
 
 on mouseUp
  put 1.884956 into tVar
  put value(tVar + 0)
 end mouseUp
 
 …With the following error;
 button A: execution error at line 3 (value: error executing expression) 
 near 1.884956, char 1
 
 But this works…
 
 on mouseUp
  put 1.884955 into tVar
  add 0.01 to tVar
  put value(tVar + 0)
 end mouseUp
 
 …And this works;
 
 on mouseUp
  local tVar = 1.884956
  put value(tVar + 0)
 end mouseUp
 
 Then if you use Try/Catch, they all fail in LC7.0.1, but work in LC5.5.5!
 
 Paul. :-/
 
 
 On Jan 14, 2015, at 3:06 PM, Graham Samuel livf...@mac.com wrote:
 
 Thanks to those who replied. So, I am going crazy! I suppose it is something 
 very particular about my setup. I did find one other way to show the 
 anomaly, which was to put
 
 put 1.884956 into it; put value(it+0)
 
 this gives me the error
 Message execution error:
 Error description: value: error executing expression
 Hint: 1.884956
 But of course YMMV. I am quite happy to be told it’s my fault, but the fact 
 is that this is just an abstraction of something that has arisen in the 
 middle of a loop that produces a table of values based on input parameters 
 which are all very similar: the loop suddenly hits an error only on this 
 particular value. It has worked in earlier versions of LC, but now I’m 
 wedded to Unicode, it’s got to work with LC 7.
 
 If I ever get an explanation, I’ll tell the list about it.
 
 Cheers
 
 Graham
 On 14 Jan 2015, at 23:48, Roger Guay i...@mac.com wrote:
 
 Graham,
 
 I get true in both cases, same setup.
 
 Roger
 
 On Jan 14, 2015, at 1:03 PM, Graham Samuel livf...@mac.com wrote:
 
 Using LC 7.0.1 on Yosemite 1010.1, when I type this into the message box
 
 put (1.884955 is a number)
 
 I get true, as expected, but if I put
 
 put (1.884956 is a number)
 
 I get 
 
 Script compile error:
 Error description: Expression: unquoted literal
 
 This result was derived from some complex code so I originally thought 
 that the character string could have been corrupt with invisible 
 characters,  but I retyped the numbers myself. This seems so mad that I 
 need someone to confirm it, even though I find it completely repeatable. I 
 tried it on LC 6.7 (which just happens to be on my machine) and I got true 
 as expected.
 
 Someone tell me I am not crazy.
 
 TIA
 
 Graham
 ___
 use-livecode mailing list
 use-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: How to solve can't find stack error

2015-01-14 Thread Kay C Lan
Would seem easy enough to test your theory. Insert the second line of code,
the one that reads the cprop, in a try statement. If it catches an error
wait 5 seconds (just to really test your theory) and issue the command
again. For those not having the problem they are not burdened with a wait,
those that are you'll soon know if it fixes the problem. If so you could
test various wait periods to see what is the shortest that consistently
solves the problem.

HTH
___
use-livecode mailing list
use-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] I'm going to go live in a cave

2015-01-14 Thread Kay C Lan
On Wed, Jan 14, 2015 at 7:24 PM, FlexibleLearning.com admin@
flexiblelearning.com wrote:

 where did I put those cotton swabs?


Cotton swabs? I've tried micro nozzle attachments that connect to your
vacuum cleaner but by far the most effective way of cleaning all the nooks
and crannies of anything, not just electronic equipment, is CyberClean:

https://mail.google.com/mail/u/0/#label/Mobile/14ae5a2c442d19f0

That listing is pretty expensive. My 500g tub cost me $12 and has lasted
several years. The stuff sort of oozes and deforms to any shape - see the
photo in the link of cleaning the fan vents of the Mac Pro - but it doesn't
come apart. It is slightly tacky so it picks up all the dirt and fluff. I
use a ball about a quarter of the size shown in the photos. I attack each
key individually, push down really hard with the palm of my hand to force
the goop into all the crevices and then use a circular polishing motion to
ensure all four sides of the key are done. You can see the stuff being
picked up and just keep going until it's all gone, then move onto the next
key.
___
use-livecode mailing list
use-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: Debugging plugins

2015-01-14 Thread Peter Haworth
Thanks Mark.

What I mean is, if errors in the revxxx stack are ignored (I assume that
means runtime errors?), is there some other way that the stack can
determine that they happened so they can be handled more gracefully?  Kinda
like an error in a try/catch loop.

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, Jan 14, 2015 at 1:30 PM, Mark Wieder mwie...@ahsoftware.net wrote:

 Pete-

 Wednesday, January 14, 2015, 10:18:46 AM, you wrote:

  If I understand this correctly, if a stack name begins with rev and
  gRevDevelopment is false, any runtime errors in it are ignored? That's
 any
  stack, not just IDE stacks?

 That is correct.

  I don't suppose this would also enable some way to trap runtime errors
 and
  report info about them, would it?

 I'm not following that. Runtime errors *are* trapped, unless I'm
 misunderstanding you, which I suppose is pretty obvious.

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

___
use-livecode mailing list
use-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: Possible insanity, or is it LC 7.0.1?

2015-01-14 Thread Graham Samuel
Thanks to those who replied. So, I am going crazy! I suppose it is something 
very particular about my setup. I did find one other way to show the anomaly, 
which was to put

  put 1.884956 into it; put value(it+0)

this gives me the error
Message execution error:
Error description: value: error executing expression
Hint: 1.884956
But of course YMMV. I am quite happy to be told it’s my fault, but the fact is 
that this is just an abstraction of something that has arisen in the middle of 
a loop that produces a table of values based on input parameters which are all 
very similar: the loop suddenly hits an error only on this particular value. It 
has worked in earlier versions of LC, but now I’m wedded to Unicode, it’s got 
to work with LC 7.

If I ever get an explanation, I’ll tell the list about it.

Cheers

Graham
 On 14 Jan 2015, at 23:48, Roger Guay i...@mac.com wrote:
 
 Graham,
 
 I get true in both cases, same setup.
 
 Roger
 
 On Jan 14, 2015, at 1:03 PM, Graham Samuel livf...@mac.com wrote:
 
 Using LC 7.0.1 on Yosemite 1010.1, when I type this into the message box
 
 put (1.884955 is a number)
 
 I get true, as expected, but if I put
 
 put (1.884956 is a number)
 
 I get 
 
 Script compile error:
 Error description: Expression: unquoted literal
 
 This result was derived from some complex code so I originally thought that 
 the character string could have been corrupt with invisible characters,  but 
 I retyped the numbers myself. This seems so mad that I need someone to 
 confirm it, even though I find it completely repeatable. I tried it on LC 
 6.7 (which just happens to be on my machine) and I got true as expected.
 
 Someone tell me I am not crazy.
 
 TIA
 
 Graham
 ___
 use-livecode mailing list
 use-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: [semi OT] Virtual visits and LC

2015-01-14 Thread Dan Soneson
Check out the krpano web solution at krpano.com It runs both as a Flash
plugin and in HTML5. Embeds panoramas with programmable hotspots. Works
only in a web browser, but also works within the revBrowser in LiveCode,
which may be a way to incorporate the panoramas within a LiveCode app.

Best,
Dan



 Actually I forgot to mention that ideally the virtual visit should be
 similar to google street view : users should be able to move
 around the appartment in 360? (like on google street view), not just
 with a serie of static photos with clickable spots...
 Best
 jbv
  Hi list
  A client of mine wants to add a few virtual visits of warehouses
  and appartments on his website. Those virtual visits will include
  various clickable hot spots, for instance to move from one room
  to another, or on various objects and furnitures in the room in
  order to display infos about them when a user clicks upon.
  Furthermore, apart from the website, the same virtual visits will
  be used on a LC standalone, and probably also on a mobile version
  of that standalone.
  Does anyone has any experience with something similar, and
  could recommend any software for such a project ?
 
  Thanks in advance.
  jbv
___
use-livecode mailing list
use-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: Possible insanity, or is it LC 7.0.1?

2015-01-14 Thread Paul Hibbert
You're not going totally crazy, unless I am too.

This fails here in LC7.0.1 on Mac OS X 10.10.1…

on mouseUp
  put 1.884956 into tVar
  put value(tVar + 0)
end mouseUp

…With the following error;
button A: execution error at line 3 (value: error executing expression) near 
1.884956, char 1

But this works…

on mouseUp
  put 1.884955 into tVar
  add 0.01 to tVar
  put value(tVar + 0)
end mouseUp

…And this works;

on mouseUp
  local tVar = 1.884956
  put value(tVar + 0)
end mouseUp

Then if you use Try/Catch, they all fail in LC7.0.1, but work in LC5.5.5!

Paul. :-/


 On Jan 14, 2015, at 3:06 PM, Graham Samuel livf...@mac.com wrote:
 
 Thanks to those who replied. So, I am going crazy! I suppose it is something 
 very particular about my setup. I did find one other way to show the anomaly, 
 which was to put
 
 put 1.884956 into it; put value(it+0)
 
 this gives me the error
 Message execution error:
 Error description: value: error executing expression
 Hint: 1.884956
 But of course YMMV. I am quite happy to be told it’s my fault, but the fact 
 is that this is just an abstraction of something that has arisen in the 
 middle of a loop that produces a table of values based on input parameters 
 which are all very similar: the loop suddenly hits an error only on this 
 particular value. It has worked in earlier versions of LC, but now I’m wedded 
 to Unicode, it’s got to work with LC 7.
 
 If I ever get an explanation, I’ll tell the list about it.
 
 Cheers
 
 Graham
 On 14 Jan 2015, at 23:48, Roger Guay i...@mac.com wrote:
 
 Graham,
 
 I get true in both cases, same setup.
 
 Roger
 
 On Jan 14, 2015, at 1:03 PM, Graham Samuel livf...@mac.com wrote:
 
 Using LC 7.0.1 on Yosemite 1010.1, when I type this into the message box
 
 put (1.884955 is a number)
 
 I get true, as expected, but if I put
 
 put (1.884956 is a number)
 
 I get 
 
 Script compile error:
 Error description: Expression: unquoted literal
 
 This result was derived from some complex code so I originally thought that 
 the character string could have been corrupt with invisible characters,  
 but I retyped the numbers myself. This seems so mad that I need someone to 
 confirm it, even though I find it completely repeatable. I tried it on LC 
 6.7 (which just happens to be on my machine) and I got true as expected.
 
 Someone tell me I am not crazy.
 
 TIA
 
 Graham
 ___
 use-livecode mailing list
 use-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: [OT] Print to PDF

2015-01-14 Thread Kay C Lan
Thank you gentlemen. I had hoped that there would be a way with their set
up as is, these folks are old and techno-shy, but the Chrome or CutePDF +
ghostscript seems doable. I'll pass it on.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


How to solve can't find stack error

2015-01-14 Thread tbodine
Hi all.

Looking for some insight here... I have a desktop program built in LC 6.5.1
that uses LC stacks as user files for storing user data in fields and
cprops. Mostly this works well. However, I get occasional Error Reports when
a few users have tried to reopen a file they created. Error type is Chunk:
can't find stack. I know the file exists because the user just picked it
with the answer file command. 

The error occurs at a line where I first read a cprop from the stack. And
the line just prior to that loads the stack with go invisible to card 1 of
stack tFullFilePath

My theory is on some (slower?) machines the stack file is not entirely
loaded before the next line of my handler tries to read from it. 

The error only happens to a few users, but tends to hit them repeatedly, and
I know one of them has an old machine. The typical stack file size is well
under 300k.

Does that theory sound feasible? I thought about inserting a wait for X ms
between the two lines of code, but I'd just be guessing at the duration.
Frankly, I've never understood the use of wait in LC... as it often seems
arbitrary. Feel free to school me on that or anything else!

Thanks for your thoughts.

Tom Bodine




--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/How-to-solve-can-t-find-stack-error-tp4687828.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: Script to Generate Concurrent Times

2015-01-14 Thread Mark Wieder
Brahmanathaswami-

Wednesday, January 14, 2015, 6:15:07 PM, you wrote:

 Tomorrow we will decorate and worship our lovely New Jersey cows.

OK - I have to say that sequence of words totally blindsided me.
Did not see that coming.

-- 
-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: Script to Generate Concurrent Times

2015-01-14 Thread Brahmanathaswami

ha!   I meant new Jersey cows.

We retired all our crazy Holsteins to our 200 acres of guinea grass 
across the river.  I say crazy'  because Deepti was  indeed a little 
wild... quite ready to chase you in a little Ranger  and 2,000 pounds of 
white bovine rushing at you because she thinks you have a bucket of 
alfalfa cubes can be very scary...


Whereas these new Jersey's are gentle as lambs. Years ago we had one 
Jersey that was so gentle that I could take a nap in the field with my 
head on her neck (she was also laying down) and when i would sing to 
her, her ears would perk up and tears would roll out of her eyes.  I'm 
not kidding.


OK enough of this natural world stuff!
Back to $TZ manipulations!

Swasti Astu, Be Well!
Brahmanathaswami

Kauai's Hindu Monastery
www.HimalayanAcademy.com



Mark Wieder wrote:

  Tomorrow we will decorate and worship our lovely New Jersey cows.


OK - I have to say that sequence of words totally blindsided me.
Did not see that coming.

___
use-livecode mailing list
use-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: Script to Generate Concurrent Times

2015-01-14 Thread J. Landman Gay
On January 14, 2015 8:56:27 PM CST, Brahmanathaswami bra...@hindu.org wrote:
 Years ago we had one 
Jersey that was so gentle that I could take a nap in the field with my 
head on her neck (she was also laying down) and when i would sing to 
her, her ears would perk up and tears would roll out of her eyes.  
Please sing to us too. 
-- 
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


Which version...

2015-01-14 Thread John Dixon
Why are there different versions of liveCode being updated..

LC 7.0- updated 23 October 2014
LC 7.0.1 - updated 18 December 2014

LC 6.7.0 - updated 18 December 2014
LC 6.7.1 - updated   9 January 2015

Which one is considered to be the 'one' to use ?

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


Re: Script to Generate Concurrent Times

2015-01-14 Thread Brahmanathaswami

Devin: thanks!

 set the $TZ a perfect little gift on this Happy Makara 
Sankranti/Thai Pongal.


Big feast day in India today, sun moved into Capricorn, celebrate the 
post monsoon harvest. Tomorrow we will decorate and worship our lovely 
New Jersey cows.


see:

http://dev.himalayanacademy.com/tests/dates.lc

Sweet - linux web server Cento OS6.2)

How easy is this

?lc

# copied the list from html source at: 
http://www.timezoneconverter.com/cgi-bin/tzc.tzc

# stripped the html in BBEdit to save as plain text file
# This server lives in San Francisco and we just leave the box TZ set
# towhere it really is PST.  Other time zones are calculated from there.

put url file:/home/devhap/public_html/tests/zones.txt into tZones

repeat for each line x in tZones

# Extract the city  from each line and leave the rest

set the itemdel to /
if (the number of items of x) = 1 then
put x into tCity
else
 put item 2 of x into tCity
end if



put x into $TZ
 # or whatever time zone(s) you want to show
 # easy enough to allow the user to enter or pick their city and
 # add a little AJAX for them to fetch their own time, too...
put shell(date) into tDTstring
put tCity  :   tDTstring  br / after tWorldTimes
end repeat

put tWorldTimes

-

but now... trick will be: if you want to set a time in advance and then 
get your list from that and not from the current moment?


put another way: this list is generated for this very moment at box 
time (PST)  but if  I want to set it to Future Webinar Date/Time  and 
fetch calculated the World Times based on that future date/time...


will need to think about that...

Swasti Astu, Be Well!
Brahmanathaswami

Kauai's Hindu Monastery
www.HimalayanAcademy.com



Devin Asay wrote:

In your .lc script do this:

put US/Mountain into $TZ # or whatever time zone you want to show
put shell(date) into tDTstring

Setting the $TZ variable right before called the date command returns the 
date/time the specified timezone. At least it works on the on-rev servers.

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


Re: How to solve can't find stack error

2015-01-14 Thread J. Landman Gay
On January 14, 2015 7:01:20 PM CST, tbodine bod...@bodinetraininggames.com 
wrote:
 I have a desktop program built in LC 6.5.1
that uses LC stacks as user files for storing user data in fields and
cprops. Mostly this works well. However, I get occasional Error Reports
when
a few users have tried to reopen a file they created. Error type is
Chunk:
can't find stack. I know the file exists because the user just picked
it
with the answer file command. 

This can also happen if the file exists but it isn't recognized as a stack, 
either because it's corrupted, it's the wrong stack version, or it was saved as 
a different type of file (like a text file, for example.) 
-- 
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: Debugging plugins

2015-01-14 Thread Mark Wieder
Pete-

Wednesday, January 14, 2015, 1:50:53 PM, you wrote:

 Thanks Mark.

 What I mean is, if errors in the revxxx stack are ignored (I assume that
 means runtime errors?), is there some other way that the stack can
 determine that they happened so they can be handled more gracefully?  Kinda
 like an error in a try/catch loop.

You could patch the IDE. There's a handler in one of the frontscript
libraries (I forget the details off the top of my head) that
determines whether or not to pass the error on for handling.

-- 
-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: Possible insanity, or is it LC 7.0.1?

2015-01-14 Thread Peter W A Wood
I experimented a little further and found that, on my set up, I got the same 
results as Roger.

I ran this in the multi-line message box:

put version:  the version  return into tReport
put os:  the platform  the systemVersion  return after tReport
put isNumber(1.884956)  return after tReport
put 1.884956 into tVar
put Is tVar a number?  isNumber(tVar)  return after tReport 
put 1.884956 into tVar
put tVar / 1 into tVar2
put Is tVar a number?  isNumber(tVar)  return after tReport
put Is tVar2 a number?   isNumber(tVar2)  return after tReport
put tReport

These are the results:
version: 7.0.1
os: MacOS10.10.1
true
Is tVar a number? true
Is tVar a number? false
Is tVar2 a number? false

It seems dividing the number was sufficient to stop it being one!

From playing in the message box, I noticed that dividing 1.12345 by 1 results 
in a number but dividing 1.123456 doesn’t. If I remove the last digit from 
Graham’s magic 1.884956, the multiline script works correctly. So it would seem 
the problem is related to the number of significant digits. (If I change the 
number to 1.884955, the multiline script still gives incorrect results.)

Regards

Peter

 On 15 Jan 2015, at 09:13, Kay C Lan lan.kc.macm...@gmail.com wrote:
 
 On Thu, Jan 15, 2015 at 8:29 AM, Roger Guay i...@mac.com wrote:
 
 
 I get Paul's results when I do it Paul’s way, but I don’t get Graham’s
 results when I do it his way via the message box!!
 
 
 Same here and I'm on Mavericks. And just to confuse the matter even further:
 
 put 1.884956 into tVar
 put isNumber(tVar)
 
 put 1.884956 into tVar
 put (tVar + 0)
 
 put value(1.884956+0)
 
 All three work fine.
 
 put 1.884956 into tVar
 put isNumber(tVar)
 put value(tVar + 0)
 
 does not.
 
 Graham, definitely one for you to log with the QCC.
 ___
 use-livecode mailing list
 use-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: Possible insanity, or is it LC 7.0.1?

2015-01-14 Thread Brahmanathaswami

You are not crazy and it's not just your machine

confirmed here Yosemite 10.10 LC 7.0.1

on mouseUp
 put 1.884956 into tVar
  put value(tVar + 0)
end mouseUp

button Button: execution error at line 3 (value: error executing 
expression) near 1.884956, char 1


BR



Graham Samuel wrote:

Thanks to those who replied. So, I am going crazy! I suppose it is something 
very particular about my setup. I did find one other way to show the anomaly, 
which was to put

   put 1.884956 into it; put value(it+0)

this gives me the error
Message execution error:
Error description: value: error executing expression
Hint: 1.884956


___
use-livecode mailing list
use-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: Debugging plugins

2015-01-14 Thread Geoff Canyon
On Wed, Jan 14, 2015 at 11:22 AM, J. Landman Gay jac...@hyperactivesw.com
wrote:

 The simplest thing might be to temporarily rename your plugin without the
 rev prefix while you're working on it.


This gives me the opportunity to use my favorite phrase from an Apple
commercial: What, was I in thinking jail?

Apart from how much of a pain it is to rename a stack with behavior buttons
in it, this was straightforward and works perfectly.

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


Re: 6.7.2 and Yosemite

2015-01-14 Thread Earthednet-wp
Must have been a mistake. I have run it on Yosemite.
Bill

William Prothero
http://es.earthednet.org

 On Jan 14, 2015, at 12:32 AM, René Micout rene.mic...@numericable.com wrote:
 
 Hello,
 I read in LiveCode 6.7.2-rc-1 Release Notes 1/8/15, page # 4 :
 
 The Mac engine supports:
 10.6.x (Snow Leopard) on Intel
 10.7.x (Lion) on Intel
 10.8.x (Mountain Lion) on Intel
 10.9.x (Mavericks) on Intel
 
 What about Yosemite ? No compatible ?
 
 Tristement de Paris (sadly from Paris)
 René
 
 ___
 use-livecode mailing list
 use-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: Which version...

2015-01-14 Thread Dave Kilroy
Hi John

I do know that on the 5th of January Frazer put out community 6.7.1 for
Windows again because the installer wasn't working properly - and I could
add LC 6.7.2 to your list which also is dated on the 9th...



-
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/Which-version-tp4687842p4687843.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: Which version...

2015-01-14 Thread John Dixon

Hi Dave,

Yes, but my question really is.. 
'What is the reason for having all theses different versions being updated more 
or less at the same time ?'... 
Life was much simpler when you knew the version with the largest number stuck 
on the end of it was the one to use and the rest, as they say, were history ?

being pedantic, but I will ask again... Which is the version to use ?...

Dixie


 Date: Wed, 14 Jan 2015 23:47:31 -0800
 From: d...@applicationinsight.com
 To: use-revolut...@lists.runrev.com
 Subject: Re: Which version...
 
 Hi John
 
 I do know that on the 5th of January Frazer put out community 6.7.1 for
 Windows again because the installer wasn't working properly - and I could
 add LC 6.7.2 to your list which also is dated on the 9th...

  
___
use-livecode mailing list
use-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: Debugging plugins

2015-01-14 Thread Geoff Canyon
Thanks to those who suggested Script Debug Mode and breakpoint. In plugins,
neither of those allows setting a breakpoint that will work.

global gRevDevelopment;put true into gRevDevelopment enables breakpoints in
plugins, but in 6.7 at least seems to completely break the variable panel
in the debugger.

On Thu, Jan 8, 2015 at 6:51 PM, Mark Talluto use...@canelasoftware.com
wrote:

 On Jan 5, 2015, at 8:16 AM, Geoff Canyon gcan...@gmail.com wrote:

  I have a vague recollection of there being a way to get breakpoints to
 work
  in rev stacks. I thought it was a preference setting, but I don't see
 it.
  Anyone know what the setting/property is for that?

 There is a menu item labeled‘Script Debug Mode’ in the ‘Development’
 drop down of the LiveCode menus.

 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

___
use-livecode mailing list
use-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 6 and making standalone

2015-01-14 Thread Dave Kilroy
Dear Tristement de Paris

 What you are experiencing sounds similar to what led me to file this bug
report: (http://quality.runrev.com/show_bug.cgi?id=14295)



-
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/LiveCode-6-and-making-standalone-tp4687739p4687793.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: Script to Generate Concurrent Times

2015-01-14 Thread Devin Asay

On Jan 13, 2015, at 10:21 PM, Brahmanathaswami bra...@hindu.org wrote:

 We are planning to do some webinars. I am looking for a liveCode script that 
 can read a time value on our web server and output a little array like:
 
 Honolulu: 1:30 PM Sunday Jan 16
 San Franscisco 4:30 PM Sunday Jan 16
 Chicago 6:30 PM Sunday Jan 16
 Toronto: 6:30PM Sunday Jan 16
 New York:  7:30PM Sunday Jan 16
 Rio de Janeiro: 8:30PM Sunday Jan 16
 Perth: 7:30 AM Monday Jan 16
 Sydney: 11:30 Monday Jan 16
 
 
 etc.
 
 Yes, I could probably find this as  JS/php script, but no, i don't want to do 
 that, as I'm a bit  crazy about trying to stay with LC!

Someone a few years ago showed me this; I can’t remember who.

In your .lc script do this:

put US/Mountain into $TZ # or whatever time zone you want to show
put shell(date) into tDTstring

Setting the $TZ variable right before called the date command returns the 
date/time the specified timezone. At least it works on the on-rev servers.

HTH

Devin


Devin Asay
Office of Digital Humanities
Brigham Young University


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


Livecode 7 - Unicode - items not the same as pre-7?

2015-01-14 Thread kee nethery
In the pre-Unicode days, this code:

set the itemdelimiter to tab
put empty into theData
put “jumbo” into item 4 of theData

would produce something that looked like this (in your mind replace “tab” 
with the blank spacing of a tab)

tabtabtabjumbo

In the Livecode 7 Unicode world, this is producing an output that looks like:

tab

tab

tabjumbo

In the IDE, when I use the magnify glass to examine theData, I can click in 
“jumbo” and use the right arrow to go through theData but when I try to use the 
left arrow to move back, it will move within “jumbo” but when it gets to the 
left of “j” it halts. The left arrow ceases to move the insertion point.

Why is each item on a separate line? How do I get Unicode Livecode to produce 
the same output as pre-7?

Kee Nethery
___
use-livecode mailing list
use-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: Player object

2015-01-14 Thread Peter Bogdanoff

Here it is:

https://www.dropbox.com/s/61pwux0d51niarg/LibITS%20accessing%20iTunes%20in%20Livecode.zip?dl=0

Peter Bogdanoff
UCLA

On Jan 14, 2015, at 9:25 AM, Peter Haworth p...@lcsql.com wrote:

 Been searching for libITS without any luck.  The URL in some older forum
 posts doesn't work any longer.  It's also on rev Online I believe however
 rev Online seems to be broken - when I open it, it hangs with a message
 retrieving stack data.
 
 Anyone have another location to find 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, Jan 14, 2015 at 4:42 AM, Peter M. Brigham pmb...@gmail.com wrote:
 
 On Jan 13, 2015, at 9:27 PM, Peter Haworth wrote:
 
 I've got the track/playlist management stuff in place and I figured out a
 way round the original problem too that seems to work.  The fast
 forward/reverse buttons do work (at least in 6.6.2/OSX 10.7) although
 they
 don't move things along very fast.
 
 However, I closed my stack and re-opened it and now nothing plays.  Not
 only that, the player object is just a plain white rectangle, no buttons,
 no progress bar.  Not sure if this is related to the bug that's been
 discussed today.
 
 Oh well, I guess I'll need to make my own controller after all.  What
 fun.
 
 Thomas McGrath has a stack called libITS.rev, a pretty full-featured
 iTunes library suite. You might look into that. I used it to build a little
 controller that collapses down to a single round button that lives in the
 lower left corner of my screen.
 
 -- Peter
 
 Peter M. Brigham
 pmb...@gmail.com
 http://home.comcast.net/~pmbrig
 
 
 ___
 use-livecode mailing list
 use-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: Debugging plugins

2015-01-14 Thread Mark Wieder
Geoff-

Wednesday, January 14, 2015, 8:26:15 AM, you wrote:

 global gRevDevelopment;put true into gRevDevelopment enables breakpoints in
 plugins, but in 6.7 at least seems to completely break the variable panel
 in the debugger.

Yeah. What Jacque said.
The downside of setting gRevDevelopment to true is that bugs in the
IDE stacks are no longer ignored.

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


How to show the Windows 8 on screen keyboard in LiveCode?

2015-01-14 Thread Ralf Bitter

Shouldn't the on screen keyboard of Windows 8 tablets pop up automatically
on touching a text input control?
A client who installed a standalone built with LiveCode 6.7.1 on a Toshiba 
tablet
reports that the soft keyboard doesn't show up tapping a text input field.

Thought that, as a workaround, one possibly could start the keyboard exe
using launch or shell() like:

launch C:/Program Files/Common Files/microsoft shared/ink/TabTip.exe
yields not opened

or

get shell(start C:\Program Files\Common Files\microsoft shared\ink\TabTip.exe)
yields The file C:/Program could not be found.

or

get shell(start tabtip.exe)
yields The file tabtip.exe could not be found.


Double checked the paths but all this fails, though start tabtip.exe definitely 
works from
the Windows command shell in contrast to
start C:\Program Files\Common Files\microsoft shared\ink\TabTip.exe.

So, how do others show the on screen keyboard on Windows 8 tablets from
LiveCode standalones? Any insights appreciated.


Ralf
___
use-livecode mailing list
use-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: Player object

2015-01-14 Thread Peter Haworth
Thanks Peter, I'll see if I can track it down.

I also just remembered Bernd's very useful custom slider control that will
definitely make my life easier.

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, Jan 14, 2015 at 4:42 AM, Peter M. Brigham pmb...@gmail.com wrote:

 On Jan 13, 2015, at 9:27 PM, Peter Haworth wrote:

  I've got the track/playlist management stuff in place and I figured out a
  way round the original problem too that seems to work.  The fast
  forward/reverse buttons do work (at least in 6.6.2/OSX 10.7) although
 they
  don't move things along very fast.
 
  However, I closed my stack and re-opened it and now nothing plays.  Not
  only that, the player object is just a plain white rectangle, no buttons,
  no progress bar.  Not sure if this is related to the bug that's been
  discussed today.
 
  Oh well, I guess I'll need to make my own controller after all.  What
 fun.

 Thomas McGrath has a stack called libITS.rev, a pretty full-featured
 iTunes library suite. You might look into that. I used it to build a little
 controller that collapses down to a single round button that lives in the
 lower left corner of my screen.

 -- Peter

 Peter M. Brigham
 pmb...@gmail.com
 http://home.comcast.net/~pmbrig


 ___
 use-livecode mailing list
 use-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: Player object

2015-01-14 Thread Peter Haworth
Been searching for libITS without any luck.  The URL in some older forum
posts doesn't work any longer.  It's also on rev Online I believe however
rev Online seems to be broken - when I open it, it hangs with a message
retrieving stack data.

Anyone have another location to find 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, Jan 14, 2015 at 4:42 AM, Peter M. Brigham pmb...@gmail.com wrote:

 On Jan 13, 2015, at 9:27 PM, Peter Haworth wrote:

  I've got the track/playlist management stuff in place and I figured out a
  way round the original problem too that seems to work.  The fast
  forward/reverse buttons do work (at least in 6.6.2/OSX 10.7) although
 they
  don't move things along very fast.
 
  However, I closed my stack and re-opened it and now nothing plays.  Not
  only that, the player object is just a plain white rectangle, no buttons,
  no progress bar.  Not sure if this is related to the bug that's been
  discussed today.
 
  Oh well, I guess I'll need to make my own controller after all.  What
 fun.

 Thomas McGrath has a stack called libITS.rev, a pretty full-featured
 iTunes library suite. You might look into that. I used it to build a little
 controller that collapses down to a single round button that lives in the
 lower left corner of my screen.

 -- Peter

 Peter M. Brigham
 pmb...@gmail.com
 http://home.comcast.net/~pmbrig


 ___
 use-livecode mailing list
 use-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 6 and making standalone

2015-01-14 Thread Dave Kilroy
Jacque I filed this report http://quality.runrev.com/show_bug.cgi?id=14295
and another related one on Christmas eve


J. Landman Gay wrote
 LC 6.7 changed where it stores files (as you know) because Apple has new 
 rules about that. The release notes say that file paths in scripts 
 should automatically translate to the new location without any changes, 
 but yesterday I found that doesn't seem to work.
 
 Do you want to submit a bug report, or would you like me to do it?





-
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/LiveCode-6-and-making-standalone-tp4687739p4687800.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: LiveCode 6 and making standalone

2015-01-14 Thread René Micout

 Le 14 janv. 2015 à 17:26, Dave Kilroy d...@applicationinsight.com a écrit :
 
 Dear Tristement de Paris
 
 What you are experiencing sounds similar to what led me to file this bug
 report: (http://quality.runrev.com/show_bug.cgi?id=14295)

Thank you Dave… I put a commentary (14295)
René


___
use-livecode mailing list
use-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 6 and making standalone

2015-01-14 Thread J. Landman Gay

On 1/14/2015 3:19 AM, René Micout wrote:



Le 13 janv. 2015 à 18:07, René Micout rene.mic...@numericable.com a écrit :

Hello everybody,
Macintosh Yosemite.
When I construct a standalone with LiveCode 6, I choose “Move substacks into 
individual stackfiles” (for saving data in substack)
this works with LC 6.6.3  In the /Contents/MacOS/ of my application (ctrl + 
clic) I have 1 file (exec) + several stacks (substacks)
but when I do the same thing with LC 6.6.4, 6.6.5, 6.7, 6.7.1 (rc 4) I have 
only 1 file (exec) and my application cannot save any data.
Why ?


I finally found my stack files : /Contents/Resources/_MacOS/…
But my application don’t works correctly. It went crazy…
It is the same stack, but after “standaloned” it is another application.


LC 6.7 changed where it stores files (as you know) because Apple has new 
rules about that. The release notes say that file paths in scripts 
should automatically translate to the new location without any changes, 
but yesterday I found that doesn't seem to work.


Do you want to submit a bug report, or would you like me to do it?

--
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: Debugging plugins

2015-01-14 Thread J. Landman Gay

On 1/14/2015 10:26 AM, Geoff Canyon wrote:

Thanks to those who suggested Script Debug Mode and breakpoint. In plugins,
neither of those allows setting a breakpoint that will work.

global gRevDevelopment;put true into gRevDevelopment enables breakpoints in
plugins, but in 6.7 at least seems to completely break the variable panel
in the debugger.


The simplest thing might be to temporarily rename your plugin without 
the rev prefix while you're working on it.


--
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: Script to Generate Concurrent Times

2015-01-14 Thread J. Landman Gay

On 1/14/2015 10:27 AM, Devin Asay wrote:

In your .lc script do this:

put US/Mountain into $TZ # or whatever time zone you want to show
put shell(date) into tDTstring

Setting the $TZ variable right before called the date command returns the 
date/time the specified timezone. At least it works on the on-rev servers.


Oh cool. It works on OS X too.

--
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: OT: Tacoma

2015-01-14 Thread James Little

Mike,

Email or call me if you will be in Seattle.

Jim
littlejamesw at mac dot com
(206) 547-7061


On Jan 13, 2015, at 1:28 PM, Mike bonnm...@gmail.com wrote:

 I'm flying in to Seattle tonight, but will be going straight to my hotel in 
 Tacoma. Won't have my own car, but might be able to figure out something with 
 my friend (the reason I'm going) once I'm settled in. I'll be in Washington 
 till next Tuesday. 
 
 Sent from my iPhone
 
 On Jan 13, 2015, at 9:50 AM, James Little littlejam...@mac.com wrote:
 
 
 Hi Mike,
 
 Any chance you will be in Seattle?  My son and I would like to get together, 
 if you’re up this way.
 
 Jim Little
 
 
 On Jan 12, 2015, at 12:29 PM, Mike Bonner bonnm...@gmail.com wrote:
 
 I'm going to be in Tacoma for a few days, is there anyone in the area that
 might want to meet for a beer?
 ___
 use-livecode mailing list
 use-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: Player object

2015-01-14 Thread Peter Haworth
Thanks Peter, got 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, Jan 14, 2015 at 9:58 AM, Peter Bogdanoff bogdan...@me.com wrote:


 Here it is:


 https://www.dropbox.com/s/61pwux0d51niarg/LibITS%20accessing%20iTunes%20in%20Livecode.zip?dl=0

 Peter Bogdanoff
 UCLA

 On Jan 14, 2015, at 9:25 AM, Peter Haworth p...@lcsql.com wrote:

  Been searching for libITS without any luck.  The URL in some older forum
  posts doesn't work any longer.  It's also on rev Online I believe however
  rev Online seems to be broken - when I open it, it hangs with a message
  retrieving stack data.
 
  Anyone have another location to find 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, Jan 14, 2015 at 4:42 AM, Peter M. Brigham pmb...@gmail.com
 wrote:
 
  On Jan 13, 2015, at 9:27 PM, Peter Haworth wrote:
 
  I've got the track/playlist management stuff in place and I figured
 out a
  way round the original problem too that seems to work.  The fast
  forward/reverse buttons do work (at least in 6.6.2/OSX 10.7) although
  they
  don't move things along very fast.
 
  However, I closed my stack and re-opened it and now nothing plays.  Not
  only that, the player object is just a plain white rectangle, no
 buttons,
  no progress bar.  Not sure if this is related to the bug that's been
  discussed today.
 
  Oh well, I guess I'll need to make my own controller after all.  What
  fun.
 
  Thomas McGrath has a stack called libITS.rev, a pretty full-featured
  iTunes library suite. You might look into that. I used it to build a
 little
  controller that collapses down to a single round button that lives in
 the
  lower left corner of my screen.
 
  -- Peter
 
  Peter M. Brigham
  pmb...@gmail.com
  http://home.comcast.net/~pmbrig
 
 
  ___
  use-livecode mailing list
  use-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: Debugging plugins

2015-01-14 Thread Peter Haworth
If I understand this correctly, if a stack name begins with rev and
gRevDevelopment is false, any runtime errors in it are ignored? That's any
stack, not just IDE stacks?

I don't suppose this would also enable some way to trap runtime errors and
report info about them, would 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, Jan 14, 2015 at 9:57 AM, Mark Wieder mwie...@ahsoftware.net wrote:

 Geoff-

 Wednesday, January 14, 2015, 8:26:15 AM, you wrote:

  global gRevDevelopment;put true into gRevDevelopment enables breakpoints
 in
  plugins, but in 6.7 at least seems to completely break the variable panel
  in the debugger.

 Yeah. What Jacque said.
 The downside of setting gRevDevelopment to true is that bugs in the
 IDE stacks are no longer ignored.

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

___
use-livecode mailing list
use-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 6 and making standalone

2015-01-14 Thread J. Landman Gay
Oh good, thanks for that. I just ran up against this problem yesterday 
for the first time.


On 1/14/2015 11:24 AM, Dave Kilroy wrote:

Jacque I filed this report http://quality.runrev.com/show_bug.cgi?id=14295
and another related one on Christmas eve


J. Landman Gay wrote

LC 6.7 changed where it stores files (as you know) because Apple has new
rules about that. The release notes say that file paths in scripts
should automatically translate to the new location without any changes,
but yesterday I found that doesn't seem to work.

Do you want to submit a bug report, or would you like me to do it?



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


6.7.2 and Yosemite

2015-01-14 Thread René Micout
Hello,
I read in LiveCode 6.7.2-rc-1 Release Notes 1/8/15, page # 4 :

The Mac engine supports:
10.6.x (Snow Leopard) on Intel
10.7.x (Lion) on Intel
10.8.x (Mountain Lion) on Intel
10.9.x (Mavericks) on Intel

What about Yosemite ? No compatible ?

Tristement de Paris (sadly from Paris)
René

___
use-livecode mailing list
use-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 6 and making standalone

2015-01-14 Thread René Micout

 Le 13 janv. 2015 à 18:07, René Micout rene.mic...@numericable.com a écrit :
 
 Hello everybody,
 Macintosh Yosemite.
 When I construct a standalone with LiveCode 6, I choose “Move substacks into 
 individual stackfiles” (for saving data in substack)
 this works with LC 6.6.3  In the /Contents/MacOS/ of my application (ctrl + 
 clic) I have 1 file (exec) + several stacks (substacks)
 but when I do the same thing with LC 6.6.4, 6.6.5, 6.7, 6.7.1 (rc 4) I have 
 only 1 file (exec) and my application cannot save any data.
 Why ?

I finally found my stack files : /Contents/Resources/_MacOS/…
But my application don’t works correctly. It went crazy…
It is the same stack, but after “standaloned” it is another application.


___
use-livecode mailing list
use-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] I'm going to go live in a cave

2015-01-14 Thread FlexibleLearning.com
A good keyboard is like a good piano. I still use my original Gateway
keyboard, c1995 vintage (remember them?). Never found a better one and still
works as good as new. I did clean it once when I could no longer read some
of the keys but it's back filthy again. Time for the next 10-year spring
clean, methinks where did I put those cotton swabs?

Hugh Senior
FLCo

Jacque wrote:

Actually I do. I never could get used to low profile keyboards so I'm still
using an ancient wired one. All the paint has worn off the keys on the left
side (the S went first) and the punctuation on the right is mostly gone.
It's filthy because I'm afraid if I clean it there will be nothing left. And
besides, it has a keypad.


___
use-livecode mailing list
use-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 6 and making standalone

2015-01-14 Thread René Micout

 Le 14 janv. 2015 à 10:19, René Micout rene.mic...@numericable.com a écrit :
 
 
 Le 13 janv. 2015 à 18:07, René Micout rene.mic...@numericable.com a écrit :
 
 Hello everybody,
 Macintosh Yosemite.
 When I construct a standalone with LiveCode 6, I choose “Move substacks into 
 individual stackfiles” (for saving data in substack)
 this works with LC 6.6.3  In the /Contents/MacOS/ of my application (ctrl + 
 clic) I have 1 file (exec) + several stacks (substacks)
 but when I do the same thing with LC 6.6.4, 6.6.5, 6.7, 6.7.1 (rc 4) I have 
 only 1 file (exec) and my application cannot save any data.
 Why ?
 
 I finally found my stack files : /Contents/Resources/_MacOS/…
 But my application don’t works correctly. It went crazy…
 It is the same stack, but after “standaloned” it is another application.

I understand why my application becomes crazy, all works good now, in fact not 
ALL : datas are not saved into substack (stack file)


___
use-livecode mailing list
use-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: Player object

2015-01-14 Thread Peter M. Brigham
On Jan 13, 2015, at 9:27 PM, Peter Haworth wrote:

 I've got the track/playlist management stuff in place and I figured out a
 way round the original problem too that seems to work.  The fast
 forward/reverse buttons do work (at least in 6.6.2/OSX 10.7) although they
 don't move things along very fast.
 
 However, I closed my stack and re-opened it and now nothing plays.  Not
 only that, the player object is just a plain white rectangle, no buttons,
 no progress bar.  Not sure if this is related to the bug that's been
 discussed today.
 
 Oh well, I guess I'll need to make my own controller after all.  What fun.

Thomas McGrath has a stack called libITS.rev, a pretty full-featured iTunes 
library suite. You might look into that. I used it to build a little controller 
that collapses down to a single round button that lives in the lower left 
corner of my screen.

-- Peter

Peter M. Brigham
pmb...@gmail.com
http://home.comcast.net/~pmbrig


___
use-livecode mailing list
use-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] Print to PDF

2015-01-14 Thread Roger Eller
Install CutePDF Writer.  (requires ghostscript)  Both are free, and links
are provided on this page:

http://www.cutepdf.com/Products/CutePDF/writer.asp

Afterwards, it will appear as a Windows printer.  I've used this for
decades.

Sent from my Android tablet
On Jan 12, 2015 6:53 PM, Kay C Lan lan.kc.macm...@gmail.com wrote:

 This is not LC related but as you are the largest group of varied OS users
 I thought I'd ask. I've just discovered that the very basic OS feature of
 being able to 'Print to PDF' may not be available on all OSs. On OS X it's
 a feature I use daily.

 Particularly in your web browser, if you choose Print, do you have an
 option to save to some kind of single file (pdf,doc,...) rather than send
 to a physical printer. Please advise the OS, web browser, the kind of file
 you can create and where that option is hidden.

 [This relates to some very elder gentlemen who I'm trying to help access
 some online pages, and then be able to save these pages to view whilst
 offline. The 3 web browsers I have all have the ability to Save as but
 the result is a folder full of media and a bunch of html files and if one
 or the other is moved then the document breaks. The structure takes up more
 space and it's also harder to clean up as it's more than just one file to
 Trash. To me, Print to PDF produces a much cleaner smaller document for
 storing, viewing offline and deleting. I was hoping to help them with a
 similar single file solution.]

 Thanks in advance
 ___
 use-livecode mailing list
 use-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