Re: Blockly

2012-05-19 Thread Richmond
On 05/20/2012 08:35 AM, Mark Wieder wrote: All- Blockly was released into the wild at 9AM today. I spent a good amount of time talking with the developer at the Maker Faire. Open source block-oriented extensible visual programming, exports to JavaScript, etc... soon to have Google docs spreadshe

Blockly

2012-05-19 Thread Mark Wieder
All- Blockly was released into the wild at 9AM today. I spent a good amount of time talking with the developer at the Maker Faire. Open source block-oriented extensible visual programming, exports to JavaScript, etc... soon to have Google docs spreadsheet api access, looks like much fun. https://

Re: MPMoviePlayerController?

2012-05-19 Thread J. Landman Gay
On 5/19/12 12:02 PM, Scott Rossi wrote: Thanks Jacque. In fact, I just recently figured this out, thanks to John Dixon who forwarded a demo stack that worked. As my friends across the pond would say "Bloody Hell", since I would have likely spent another day trying to track down the "visible" re

Re: Help with Stop Record command on Win32 machines

2012-05-19 Thread Jerry Jensen
You are a brave, brave man. On May 19, 2012, at 6:44 PM, Colin Holgate wrote: > Just for what it's worth, I could record one sound and on the second try it > instantly completely crashed Windows 8. That's with the latest build of > LiveCode. So, the problem seems like it isn't to do with being

Re: Help with Stop Record command on Win32 machines

2012-05-19 Thread Colin Holgate
Just for what it's worth, I could record one sound and on the second try it instantly completely crashed Windows 8. That's with the latest build of LiveCode. So, the problem seems like it isn't to do with being LiveCode 3, or 32 bit Windows, because I'm on the latest LiveCode and 64 bit Windows.

Help with Stop Record command on Win32 machines

2012-05-19 Thread Bill Ziegler
After years of providing programs for special needs students I was just made aware of the programs failing at random places, making it difficult to debug. It only happens on Windows machines, possibly only on win32 machines and not at the same location. The Mac player works fine. The user gets a

Re: ClickText function and punctuation

2012-05-19 Thread Bill Vlahos
Mike, Excellent. That works. Thank you, Bill Vlahos On May 19, 2012, at 11:59 AM, Mike Bonner wrote: > If you use clickchunk rather than selectedchunk the space issue goes away. > (no chunk returned when clicking space) > > On Sat, May 19, 2012 at 12:57 PM, Mike Bonner wrote: > >> Doh, you s

Re: ClickText function and punctuation

2012-05-19 Thread Mike Bonner
If you use clickchunk rather than selectedchunk the space issue goes away. (no chunk returned when clicking space) On Sat, May 19, 2012 at 12:57 PM, Mike Bonner wrote: > Doh, you said locked field, but it should work either way. > > Yep, just tested and the same code works for both locked and un

Re: ClickText function and punctuation

2012-05-19 Thread Mike Bonner
Doh, you said locked field, but it should work either way. Yep, just tested and the same code works for both locked and unlocked. Only thing is, if the intervening space is clicked the following word is returned so you might need to check for this case. On Sat, May 19, 2012 at 12:54 PM, Mike Bonn

Re: ClickText function and punctuation

2012-05-19 Thread Mike Bonner
On an unlocked text field I tried this: on selectionchanged put word (the number of words in char 1 to (word 2 of the selectedchunk) of field 1) of field 1 into field 2 end selectionchanged And it works fine. On Sat, May 19, 2012 at 12:36 PM, Bill Vlahos wrote: > Words are defined by LiveCode

[OT] flash-Free animation in HTML5

2012-05-19 Thread Richmond
http://sozi.baierouge.fr/wiki/en:welcome Alejandro! This made me think of you. Richmond. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://list

ClickText function and punctuation

2012-05-19 Thread Bill Vlahos
Words are defined by LiveCode to include punctuation. put word 2 of "the check-up is good" returns "check-up" The clickText function doesn't include punctuation in the word. If you put the phrase "the check-up is good" in a locked field, clickText only returns either "check" or "u

Re: LiveCode-HyperCard XCMD's

2012-05-19 Thread Richmond
On 05/18/2012 08:38 AM, J. Landman Gay wrote: On 5/18/12 12:14 AM, Richmond wrote: On 17/05/12 23:34, J. Landman Gay wrote: On 5/17/12 2:53 PM, Richmond wrote: How would you go about saving a Livecode stack for a Classic Mac? Save it in the oldest legacy format (2.4) and run it with the las

Re: MPMoviePlayerController?

2012-05-19 Thread Scott Rossi
Recently, Colin Holgate wrote: > What codec is used for the video track? Does it make any difference if it's an > MP4 file instead of an MOV? I found in my previous post that "visible" was the culprit, and MOV seems to work (at least in the simulator). Regards, Scott Rossi Creative Director Tac

Re: MPMoviePlayerController?

2012-05-19 Thread Scott Rossi
Thanks Jacque. In fact, I just recently figured this out, thanks to John Dixon who forwarded a demo stack that worked. As my friends across the pond would say "Bloody Hell", since I would have likely spent another day trying to track down the "visible" requirement. Regards, Scott Rossi Creative

Re: MPMoviePlayerController?

2012-05-19 Thread J. Landman Gay
On 5/19/12 4:21 AM, Scott Rossi wrote: When I run this in the simulator, no video shows up. Testing sPlayerId results in a value of 1. Testing for the existence of the video file is true (video is assigned using standalone app settings under Copy Files). Testing the rect shows the correct values

Re: MPMoviePlayerController?

2012-05-19 Thread Colin Holgate
Do you, at some point, call the playTheMovie command? What codec is used for the video track? Does it make any difference if it's an MP4 file instead of an MOV? ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscri

MPMoviePlayerController?

2012-05-19 Thread Scott Rossi
Hi List: Am wondering if someone can doublecheck this code for playing a video on mobile (card script). Seems pretty straightforward: local sPlayerId on openStack if environment() is "mobile" then iphoneControlCreate "player" put the result into sPlayerId iphoneContr