Multimedia on MacOS

2014-05-16 Thread Terence Heaford
I was reading the above blog on LiveCode’s site: http://livecode.com/blog/2014/05/15/multimedia-on-macos/ and noted this comment from Richard Gaskin. "Can you describe how this new player helps the process toward similar feature parity for the other 89% of our customers running Windows and Linu

Re: Animation Engine: animating points in a polygon?

2014-05-16 Thread Alejandro Tejada
I just noticed that Microsoft Expression 3.3 could export to Adobe Ilustrator 7 and 5 format. http://en.wikipedia.org/wiki/Creature_House_Expression Microsoft Expression 3.3 is a free download from Microsoft website. For Windows: http://download.microsoft.com/download/a/5/d/a5d625a5-2e3d-4e9c-8608

Re: repeat with messages

2014-05-16 Thread Jerry Jensen
On May 16, 2014, at 8:30 PM, Richard Gaskin wrote: > The compiler's errors are generally limited to those things the engine > requires to be able to tokenize a script. Ignored elements are anomalies, > but apparently won't stop either compilation or execution. > > Feature, perhaps? :) > > >

Re: repeat with messages

2014-05-16 Thread Richard Gaskin
Jerry Jensen wrote: OK Richard, sorry for the TL;DR. Here is what I was trying to present: Mark S. presented a line of code: repeat with x = 100 down to 0 with messages I was surprised to see, in a single line of code: repeat ... WITH MESSAGES which isn't in the dictionary syntax description

Re: Animation Engine: animating points in a polygon?

2014-05-16 Thread Alejandro Tejada
Hi David, Monk in Exile wrote > Thanks Al - I tried the the SVGL "tiger" stack - which used to work a > treat, but not having joy with it at the moment. Do you have a stack with > a > collection of handlers that I could add to? Did you test SVGL with latest LiveCode version 7 or at least LiveCod

Re: repeat with messages

2014-05-16 Thread Jerry Jensen
On May 16, 2014, at 6:33 PM, Richard Gaskin wrote: > There's a lot there, but if I'm following this correctly the answer to your > question of whether you should have been able to anticipate that the wait > could account for this Mac anomaly is no, and thankfully no will need to deal > with it

Re: repeat with messages

2014-05-16 Thread Dar Scott
Well, yeah, normally it is paired, but this is just a trick. If there is really a “paint now” command, I’d use that. The trick doesn’t seem to work any more. I have to use wait and a wait takes a while. The way to minimize that is to avoid waiting each time through the loop but only wait whe

Re: Double-Value Unicode?

2014-05-16 Thread Dar Scott
The good news is that LiveCode 7 will not have this problem, but it still might sneak in if one is not careful. With LiveCode 7, the codePoint chunk will apply even to U+1F4DE (a new character, I guess, for a phone?), that is, 128222. However, if you look at the implementation level, the codeU

Re: [OT] Fossil SCM

2014-05-16 Thread Mark Wieder
Igor- Wednesday, May 14, 2014, 2:56:21 AM, you wrote: > Does anyone have any experience with Fossil SCM? I experimented a bit with both Fossil and mercurial a few years back, but decided to stick with git. -- -Mark Wieder ahsoftw...@gmail.com This communication may be unlawfully collected an

Re: repeat with messages

2014-05-16 Thread Dar Scott
Serial I/O is unfortunately missing messages. Are you thinking of sockets? I almost always use send. When implementing “blocking” when a customer asks for it (as in a sockets-like implementation on iOS), I might use wait with messages or even wait for message, but that requires flags when I d

Re: repeat with messages

2014-05-16 Thread Richard Gaskin
There's a lot there, but if I'm following this correctly the answer to your question of whether you should have been able to anticipate that the wait could account for this Mac anomaly is no, and thankfully no will need to deal with it again once the Cocoa build is done because the need to do t

Re: sending a PDF mail attachment in iOS7

2014-05-16 Thread Scott Morrow
Alan, Brilliant! That did the trick in my case. Thank you much. -- Scott Morrow Elementary Software (Now with 20% less chalk dust!) web http://elementarysoftware.com/ email sc...@elementarysoftware.com office 1-800-615-0867 -- On M

Re: repeat with messages

2014-05-16 Thread Jerry Jensen
Please see bottom post and forward at the end... On May 16, 2014, at 5:08 PM, Richard Gaskin wrote: > Jerry Jensen wrote: > > > On May 16, 2014, at 4:32 PM, Richard Gaskin wrote: > > > >> Dar Scott wrote: > >> > >> > I don’t see this in the ‘repeat’ entry in the dictionary. > >> > >> "with mess

Re: IDE oddities (was Re: Error Messages Are Evil)

2014-05-16 Thread J. Landman Gay
I've never seen any of those things either, but since so many others have, I wonder if there actually might be a problem with the interface. I'd like to be a fly on the wall and watch people use it. On May 16, 2014 5:44:20 PM CDT, Dave Kilroy wrote: >Devin I think you are correct - it's bug

Re: repeat with messages

2014-05-16 Thread Richard Gaskin
Jerry Jensen wrote: > On May 16, 2014, at 4:32 PM, Richard Gaskin wrote: > >> Dar Scott wrote: >> >> > I don’t see this in the ‘repeat’ entry in the dictionary. >> >> "with messages" is a modifier for the "wait" command - you'll find >> it documented there. > > I use the wait with messages all th

Re: repeat with messages

2014-05-16 Thread Richard Gaskin
Dar Scott wrote: > So what is the right way to make the screen update? At one time we > could use ‘unlock screen’ but that doesn’t seem to work any more. > Or am I remembering wrong? IIRC each "unlock screen" is paired with a "lock screen" so calling both should work, or using "go this card".

Double-Value Unicode?

2014-05-16 Thread Scott Rossi
Hi All: I thought I had figured out the display of Unicode glyphs in LC 6.6, and then ran up against a threshold where the value of a character is displayed as two values. I'm guessing this is related to a "double-byte" something or other. How does one retrieve the value of a character as a sing

Re: repeat with messages

2014-05-16 Thread Jerry Jensen
On May 16, 2014, at 4:32 PM, Richard Gaskin wrote: > Dar Scott wrote: > > > I don’t see this in the ‘repeat’ entry in the dictionary. > > "with messages" is a modifier for the "wait" command - you'll find it > documented there. I use the wait with messages all the time in a project that takes

Re: repeat with messages

2014-05-16 Thread Dar Scott
So what is the right way to make the screen update? At one time we could use ‘unlock screen’ but that doesn’t seem to work any more. Or am I remembering wrong? And about the compiler… I file a lot of bug reports but reporting every time the compiler does not complain about bad syntax seems e

Re: repeat with messages

2014-05-16 Thread Richard Gaskin
Dar Scott wrote: > I don’t see this in the ‘repeat’ entry in the dictionary. "with messages" is a modifier for the "wait" command - you'll find it documented there. > So are these two the same but the first has no time hit? > > repeat … with messages >… > end repeat > > repeat … > wait 0

Re: repeat with messages

2014-05-16 Thread Dar Scott
I don’t know what you mean by “multiple handlers … simultaneously”. Wouldn’t one entire loop be inside a wait of the other? It seems like it would be easier to use send loops at the right level of processing. Dar On May 16, 2014, at 4:04 PM, Mark Schonewille wrote: > Hi Jerry, > > The "w

Re: IDE oddities (was Re: Error Messages Are Evil)

2014-05-16 Thread Dave Kilroy
Devin I think you are correct - it's buggy rather than an example of weird interface design and shouldn't appear on this list. And for those of you who have never been snagged by Menu Builder this thread gives examples of the kind of things it can do: http://forums.runrev.com/viewtopic.php?f=7&t=1

Re: repeat with messages

2014-05-16 Thread Dar Scott
Unfortunately, a lot of things compile without complaint. On May 16, 2014, at 3:43 PM, Jerry Jensen wrote: > In a nice example from Mark S., I see the line below. I've never seen the > "with messages" part on the end of a repeat statement. I tried it, and it > compiles and runs without complai

Re: repeat with messages

2014-05-16 Thread Dar Scott
I don’t see this in the ‘repeat’ entry in the dictionary. So are these two the same but the first has no time hit? repeat … with messages … end repeat repeat … wait 0 seconds with messages … end repeat I’ll have to try this. The wait makes the loop a lot slower. Dar On May 16, 2014,

Re: Submission to Apple Problem

2014-05-16 Thread Michael Gruenthal
Dan, There¹s a parallel discussion of this bug on the Dev list, and a report has been filed at http://quality.runrev.com/show_bug.cgi?id=12434 The solution described hasn¹t worked for me, but it might work for you. Michael On 5/16/14, 2:47 PM, "Dan Friedman" wrote: > Greetings! I have looked

Re: repeat with messages

2014-05-16 Thread Mark Schonewille
Hi Jerry, The "with messages" clause makes a repeat loop non-blocking. This allows you to run multiple handlers with repeat statements simultaneously. I add the wait with messages command at the end of the loop to give the engine more time to update the GUI. Particularly in older versions of

repeat with messages

2014-05-16 Thread Jerry Jensen
In a nice example from Mark S., I see the line below. I've never seen the "with messages" part on the end of a repeat statement. I tried it, and it compiles and runs without complaint. What does it do, allow messages at the end of each repeat? I don't see it in the dictionary. I'm running LC Com

ANN: LiveCode Global Jam: May 23-24

2014-05-16 Thread Richard Gaskin
The LiveCode Community's first Global Jam is coming up - details in today's LiveCode blog: http://livecode.com/blog/2014/05/16/livecode-global-jam-may-23-and-24/ -- Richard Gaskin LiveCode Community Manager rich...@livecode.org ___ use-livecode ma

[ANN] Zurich LiveCode user meet

2014-05-16 Thread Björnke von Gierke
Hello LiveCoders, This June, the first LiveCode meeting in Zurich will happen! The date and place have been settled (see below). We're not yet completely sure about what we'll actually do during that afternoon, but here's some decided things: - Mark will give away a copy of his book "Programmin

Re: Variable Named Variable Values?

2014-05-16 Thread Rick Harrison
Hi Dar, zryip, and Robert, Thanks for the suggestions. I’ll give them a try! Rick On May 16, 2014, at 3:02 PM, Robert Brenstein wrote: > On 16.05.2014 at 14:32 Uhr -0400 Rick Harrison apparently wrote: >> >> How do I now assign the values to the original Variable Name by referring to >> the

Re: Variable Named Variable Values?

2014-05-16 Thread Robert Brenstein
On 16.05.2014 at 14:32 Uhr -0400 Rick Harrison apparently wrote: How do I now assign the values to the original Variable Name by referring to the correct variable name read in? This is some kind of a double reference possibly referring to contents or the value of a variable, it may involve a

Re: IDE oddities (was Re: Error Messages Are Evil)

2014-05-16 Thread Mike Kerner
Geometry Manager would be even more useful on mobile since MG doesn't support screen rotation any more. I don't know if Scott is thinking about adding that feature to tmC. I think the menu builder is flat-out weak. It isn't buggy for me, it just isn't very helpful. I guess it's good that I am

Re: Variable Named Variable Values?

2014-05-16 Thread zryip theSlug
Hi Rick, You can also use the do command: set the itemdel to "=" repeat for each lines tLine in tVariablesAndDataList do "put item 2 of tLine into" && item 1 of tLine end repeat where tVariablesAndDataList contains: VarUserID=“3124" VarUserName=“John” VarUserEmail=“j...@yahoo.com” On Fri, Ma

Re: Variable Named Variable Values?

2014-05-16 Thread Dar Scott
Look at the function value(). I would also consider looking at arrays. You can use ‘combine’ to put values into the array and then use ‘repeat’ to clean up by removing the quotes. Dar Dar Scott Consulting Libraries and Externals On May 16, 2014, at 12:32 PM, Rick Harrison wrote: > Hi ther

Submission to Apple Problem

2014-05-16 Thread Dan Friedman
Greetings! I have looked all over for the answer to this and can't find the solution. I have read that others have the same problem. While it seems that some have resolved the issue, but I can't get the details on how the fixed it. So, I apologize in advance if this has already been answered

Variable Named Variable Values?

2014-05-16 Thread Rick Harrison
Hi there, Ok, so here’s the question. I’m sure someone has probably done this before. I can’t seem to find the answer, so perhaps you can help. I have a bunch of variable named pair values read in from a file. (I do not know the order these values will be coming into from the file as they can v

Re: IDE oddities (was Re: Error Messages Are Evil)

2014-05-16 Thread Devin Asay
On May 16, 2014, at 11:14 AM, Charles E Buchwald wrote: > I don't use the Menu Builder much, but I use the Geometry Manager on a > regular basis, and I've found it to be reliable. > I only wish I could use it on mobile. Because I can't, I've written a lot of > my own geometry management scrip

Re: IDE oddities (was Re: Error Messages Are Evil)

2014-05-16 Thread Charles E Buchwald
I don't use the Menu Builder much, but I use the Geometry Manager on a regular basis, and I've found it to be reliable. I only wish I could use it on mobile. Because I can't, I've written a lot of my own geometry management scripts. In general, the better feature parity we have across all platfor

Re: IDE oddities (was Re: Error Messages Are Evil)

2014-05-16 Thread Richard Gaskin
J. Landman Gay wrote: > I wonder if you're talking about the two versions of LiveCode that > had a bug. It chopped off half of every menu template script. > That's been fixed now. When discussing things that don't work it's VERY helpful to note the bug report number. If a bug hasn't yet been

​Livecode 7.0(dp3)

2014-05-16 Thread Muaadh Salih
Opening a new main stack and trying to "Import As control" a video file, nothing happen ( no opening a dialog box or anything !!) ​when going to( Object (menu)--​ ​ new control --​ ​ player ) nothing happen The above was working in 6.6 I assume this is yet to be installed in the new version ​ -

Re: IDE oddities (was Re: Error Messages Are Evil)

2014-05-16 Thread J. Landman Gay
I wonder if you're talking about the two versions of LiveCode that had a bug. It chopped off half of every menu template script. That's been fixed now. On May 16, 2014 11:16:46 AM CDT, Dave Kilroy wrote: >Hi Devin > >Sorry to be vague, didn't think I needed to say how unreliable it the >men

Re: IDE oddities (was Re: Error Messages Are Evil)

2014-05-16 Thread Devin Asay
On May 16, 2014, at 10:16 AM, Dave Kilroy wrote: > Hi Devin > > Sorry to be vague, didn't think I needed to say how unreliable it the menu > tool is - it has bitten me in the past and plenty of others too. What > usually happens is that you set up your menus and then when you reopen the > stac

Re: IDE oddities (was Re: Error Messages Are Evil)

2014-05-16 Thread J. Landman Gay
How so? I use menu builder as a quick way to block out menus and haven't had any trouble (except for the versions with a bug that got fixed.) It does need updating to include the new tag features though. Do you mean the interface isn't clear? On May 16, 2014 10:12:07 AM CDT, Dave Kilroy wr

Re: IDE oddities (was Re: Error Messages Are Evil)

2014-05-16 Thread Dave Kilroy
Hi Devin Sorry to be vague, didn't think I needed to say how unreliable it the menu tool is - it has bitten me in the past and plenty of others too. What usually happens is that you set up your menus and then when you reopen the stack half of the entries will have vanished, or some will be disable

Re: IDE oddities (was Re: Error Messages Are Evil)

2014-05-16 Thread Devin Asay
On May 16, 2014, at 9:12 AM, Dave Kilroy wrote: > I don't know whether the Menu Builder falls into the 'IDE oddity' category > but it sure it a liability! > Dave, Anything specific, or do you just find it confusing in general? Devin Devin Asay Office of Digital Humanities Brigham Young Univ

Re: Fade effect for a Field

2014-05-16 Thread Devin Asay
On May 16, 2014, at 6:49 AM, Pascal Lehner wrote: > Hi all, > Thanks for the quick answers. I will give them a try. > I just found another solution that seems even smaller but less configurable. > > hide field id 1012 with dissolve > > show field id 1012 with dissolve > > Here: > https://site

Re: IDE oddities (was Re: Error Messages Are Evil)

2014-05-16 Thread Dave Kilroy
I don't know whether the Menu Builder falls into the 'IDE oddity' category but it sure it a liability! - "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.27830

Re: [OT] Fossil SCM

2014-05-16 Thread Skip Kimpel
I would be interested as well! SKIP > On May 16, 2014, at 8:45 AM, Monk in Exile wrote: > > Hi Igor - I've been using Fossil for some years with LiveCode. I'd be happy > to share my experience, and code. > > >> On 14 May 2014 11:56, Igor de Oliveira Couto wrote: >> >> Dear List Users, >> >

Re: IDE oddities (was Re: Error Messages Are Evil)

2014-05-16 Thread Mike Kerner
Let's see - on the DG, Hanson and I had a brief conversation, that was similar to what you were describing to the list, then you tossed FIX: into the mix, so I'm going to have to take a look at, and write a FIX: for DG's For OR/RO, all I can say is "whatever". Let's fix the name of RO so it doesn

Re: Testing proxy servers in 6.6.2/6.7

2014-05-16 Thread Trevor DeVore
On Mon, May 12, 2014 at 5:56 PM, Nakia Brewer wrote: > Hi Trevor, > > On the same day I tried 6.7DP3 and got the same errors... Did the log look the same? -- Trevor DeVore Blue Mango Learning Systems www.screensteps.com-www.clarify-it.com ___

Re: Fade effect for a Field

2014-05-16 Thread Pascal Lehner
Hi all, Thanks for the quick answers. I will give them a try. I just found another solution that seems even smaller but less configurable. hide field id 1012 with dissolve show field id 1012 with dissolve Here: https://sites.google.com/a/pgcps.org/livecode/home/disappearing-objects Now I just n

Re: Fade effect for a Field

2014-05-16 Thread Mark Schonewille
Hi Pascal, You need this: on fadeControl theLongID repeat with x = 100 down to 0 with messages set the blendLevel of theLongID to x wait 1 millisec with messages end repeat wait 2 seconds with messages repeat with x = 0 to 100 with messages set the blendLevel of theLongID to

Re: Fade effect for a Field

2014-05-16 Thread dunbarx
Hi. Easy. Check out the "blendLevel" property in the dictionary. Craig Newman -Original Message- From: Pascal Lehner To: How to use LiveCode Sent: Fri, May 16, 2014 8:39 am Subject: Fade effect for a Field Hi all, I want to make a field displaying some status text ("Recor

RE: Fade effect for a Field

2014-05-16 Thread John Dixon
Set the blendLevel of fld 1 to 100 on mouseUp repeat with count = 100 down to 1 set the blendLevel of fld 1 to count wait 2 millisecs end repeat wait 2 seconds repeat with count = 1 to 100 set the blendLevel of fld 1 to count wait 2 millisecs end

Re: [OT] Fossil SCM

2014-05-16 Thread Monk in Exile
Hi Igor - I've been using Fossil for some years with LiveCode. I'd be happy to share my experience, and code. On 14 May 2014 11:56, Igor de Oliveira Couto wrote: > Dear List Users, > > Does anyone have any experience with Fossil SCM? > > http://fossil-scm.org > > Like many, I find that git is o

Re: Animation Engine: animating points in a polygon?

2014-05-16 Thread Monk in Exile
Thanks Al - I tried the the SVGL "tiger" stack - which used to work a treat, but not having joy with it at the moment. Do you have a stack with a collection of handlers that I could add to? On 14 May 2014 02:01, Alejandro Tejada wrote: > Hi David, > > To animate a polygon graphic, > change the

Fade effect for a Field

2014-05-16 Thread Pascal Lehner
Hi all, I want to make a field displaying some status text ("Record saved") that fades from invisible to visible, stays for a few seconds and then fades out again. I have seen that there seems to be a way to do this with groups, but could I also do it with a single field? Thanks, Pascal ___

Re: Animation Engine: animating points in a polygon?

2014-05-16 Thread Monk in Exile
Thanks Malte, I think this sort of point animation routine will only become more important as we move over to being closer friends with SVG. I'd like start a collection of open source geometry handlers related to LiveCode, but want to avoid putting work in which will be redundant when we have the