Re: Signed with invalid entitlements

2014-05-18 Thread Nakia Brewer
Well I'm strait up out of ideas... Tried new app ids, new provision profiles, new blank stack etc but no good. 4 hours down the drain :)... Sent from my iPhone > On 18 May 2014, at 3:25 pm, "Nakia Brewer" > wrote: > > Hi all, > > Well I am about to flip my lid! > > I let my IOS membershi

Re: Double-Value Unicode?

2014-05-18 Thread Richmond
On 18/05/14 05:06, Alejandro Tejada wrote: Hi Richmond, I visited this webpage: http://www.russellcottrell.com/greek/utilities/SurrogatePairCalculator.htm and tested the webpage results against your stack. Why your stack shows this result? Enter Pair Numbers here 55241 + 56228 = 9124 Enter Un

Re: Double-Value Unicode?

2014-05-18 Thread Dar Scott
Perhaps it would be useful to know that such a pair represents single character when the first number is in the range 0xD800-0xDBFF and the second number is in the range 0xDC00-0xDFFF. The pair represents a character with a code in the range 0x0001-0x0010. Conversely, only convert a co

Re: Double-Value Unicode?

2014-05-18 Thread Dar Scott
Valid ranges: 1st surrogate: 0xD800-0xDBFF 2nd surrogate: 0xDC00-0xDFFF codes represented by surrogates: 0x0001-0x0010 See comments interspersed… On May 17, 2014, at 8:06 PM, Alejandro Tejada wrote: > Hi Richmond, > > I visited this webpage: > http://www.russellcottrell.com/greek/uti

Re: Double-Value Unicode?

2014-05-18 Thread Dar Scott
There is certainly a hole in the codes left for surrogates that starts at 0xD8000. And yeah, one doesn’t want to represent a surrogate code using surrogates. But, the surrogates are in the range 0xD800-0xDFFF. The characters from 0xE000-0x must also be represented as single 16-bit value

Re: Double-Value Unicode?

2014-05-18 Thread Dar Scott
range checking On May 18, 2014, at 1:54 AM, Richmond wrote: > On 18/05/14 05:06, Alejandro Tejada wrote: >> Hi Richmond, >> >> I visited this webpage: >> http://www.russellcottrell.com/greek/utilities/SurrogatePairCalculator.htm >> and tested the webpage results against your stack. >> >> Why y

Re: Signed with invalid entitlements

2014-05-18 Thread Dave Kilroy
Basic question but I'll ask anyway - have you deleted all old iOS/Apple certificates from all keychains in KeyChain Access? Especially expired certificates? Dave - "Some are born coders, some achieve coding, and some have coding thrust upon them." - William Shakespeare & Hugh Senior -- Vi

Re: Signed with invalid entitlements

2014-05-18 Thread Nakia Brewer
Yep I believe I have. In system keychain I have only - Apple code signing CA - Apple World Wide Developer Relations CA - software signing In login keychain I have - iPhone Dev - iPhone Dist - developer ID CA - Apple World Wide Developer Relations CA These are listing as valid Sent from my i

Re: Signed with invalid entitlements

2014-05-18 Thread J. Landman Gay
This might help : http://forums.runrev.com/viewtopic.php?t=20416&p=103806#p103806 On May 18, 2014 2:34:32 AM CDT, Nakia Brewer wrote: >Well I'm strait up out of ideas... > >Tried new app ids, new provision profiles, new blank stack etc but no >good. > >4 hours down the drain :)... > > -- Jacqu

Re: Signed with invalid entitlements

2014-05-18 Thread Nakia Brewer
Thanks Jacque, I found that before but doesn't fix my issue unfortunately :( Sent from my iPhone > On 18 May 2014, at 7:45 pm, "J. Landman Gay" wrote: > > This might help : > > http://forums.runrev.com/viewtopic.php?t=20416&p=103806#p103806 > >> On May 18, 2014 2:34:32 AM CDT, Nakia Brewer

Re: Double-Value Unicode?

2014-05-18 Thread Richmond
I hope somebody can understand this: http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=iws-appendixa I can't. Richmond. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage y

Re: Double-Value Unicode?

2014-05-18 Thread Richmond
http://www.unicode.org/versions/Unicode6.2.0/ch03.pdf#G2630 Makes more sense to me. Richmond. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http:/

Re: Signed with invalid entitlements

2014-05-18 Thread Nakia Brewer
What role do they keys play in keychain ? I have heaps of IOS developer and IOS Distribution keys ??? Sent from my iPhone > On 18 May 2014, at 7:54 pm, "Nakia Brewer" > wrote: > > Thanks Jacque, > > I found that before but doesn't fix my issue unfortunately :( > > > > Sent from my iPhone

Re: Double-Value Unicode?

2014-05-18 Thread Richmond
"Surrogates Area: U+D800–U+DFFF When using UTF-16 to represent supplementary characters, pairs of 16-bit code units are used for each character. These units are called surrogates. To distinguish them from ordinary characters, they are allocated in a separate area. The Surrogates Area consists o

Re: Signed with invalid entitlements

2014-05-18 Thread Nakia Brewer
So I tried again deleting everything, including the dev and Dist keys in keychain as well... Bad news still same error. Sent from my iPhone > On 18 May 2014, at 8:01 pm, "Nakia Brewer" > wrote: > > What role do they keys play in keychain ? > > I have heaps of IOS developer and IOS Distribu

[OT] PERL

2014-05-18 Thread Richmond
Can anybody tell me what a % sign [not a hash] as an operator means in PERL? $lo = ($uni - 0x1) % 0x400 + 0xDC00 IFF a % means the same as MOD in Livecode then the formula in the recent stack I made to calculate surrogate pairs is not as bad as it could be and only needs slight modification.

Re: [OT] PERL

2014-05-18 Thread Peter W A Wood
Richmond On 18 May 2014, at 18:31, Richmond wrote: > Can anybody tell me what a % sign [not a hash] as an operator means in PERL? > > $lo = ($uni - 0x1) % 0x400 + 0xDC00 > > IFF a % means the same as MOD in Livecode then > the formula in the recent stack I made to calculate surrogate pairs

Re: Signed with invalid entitlements

2014-05-18 Thread Dave Kilroy
Another basic one but I'll ask anyway - in the LC StandaloneSettings dialog box, have you tried setting the Profile drop-down to blank, exiting the dialog box and saving your app and then returning and selecting your current provisioning profile (just in case LC is still referencing an old one).

Re: [OT] PERL

2014-05-18 Thread Richmond
On 18/05/14 13:53, Peter W A Wood wrote: Richmond On 18 May 2014, at 18:31, Richmond wrote: Can anybody tell me what a % sign [not a hash] as an operator means in PERL? $lo = ($uni - 0x1) % 0x400 + 0xDC00 IFF a % means the same as MOD in Livecode then the formula in the recent stack I ma

Re: Signed with invalid entitlements

2014-05-18 Thread Nakia Brewer
Haven't tried your first suggestion but will give it a go. The App ID is all lower case besides the letters in the Prefix. For example 5DW353199.com.ibss.appname Sent from my iPhone > On 18 May 2014, at 8:54 pm, "Dave Kilroy" wrote: > > Another basic one but I'll ask anyway - in the LC Stan

Re: Signed with invalid entitlements

2014-05-18 Thread Nakia Brewer
Dave, I can't see any option to set the profile to blank... There is no blank line etc that I can click on Sent from my iPhone > On 18 May 2014, at 8:54 pm, "Dave Kilroy" wrote: > > Another basic one but I'll ask anyway - in the LC StandaloneSettings dialog > box, have you tried setting the

Re: Double-Value Unicode?

2014-05-18 Thread Richmond
On 17/05/14 20:54, Scott Rossi wrote: Maybe unnecessary for LC7, but for my work in LC6 (and anybody that's interested), I put together the following functions for converting a unicode surrogate pair to a single value and vice versa: function unicodePairToNum pNum1,pNum2 return (pNum1 - 552

Re: Signed with invalid entitlements

2014-05-18 Thread Nakia Brewer
Just found a way to do that by deleting the profile from my machine.. Bad news is, problem still exists... Sent from my iPhone > On 18 May 2014, at 9:04 pm, "Nakia Brewer" > wrote: > > Dave, > > I can't see any option to set the profile to blank... There is no blank line > etc that I can c

Writing to Mum in Glagolitic script

2014-05-18 Thread Richmond
I have just uploaded a new version of my ПИСМО program for those of you who just cannot wait to write something in Old Church Slavonic: http://andregarzia.on-rev.com/richmond/LANGTOOLS.html Go On! I know that you all feel the urge! Richmond. ___ use

Re: Signed with invalid entitlements

2014-05-18 Thread Colin Holgate
The ID you use in the standalone settings is the second variation. If you are using the first variation it will eventually seem like 58DW393J99.58DW393J99.com.ibss.navtroll. The 58DW393J99 part is added automatically later. On May 18, 2014, at 7:37 AM, Nakia Brewer wrote: > >58DW393J99.com.ib

Re: Signed with invalid entitlements

2014-05-18 Thread Nakia Brewer
Cancel this, figured it out but issue is still occurring... Had enough for one day, off to bed. Sent from my iPhone > On 18 May 2014, at 9:38 pm, "Nakia Brewer" > wrote: > > I may have figured it out but I'm unsure how to fix. > > If I look at my app bundles info plist under bundle identifi

Re: Signed with invalid entitlements

2014-05-18 Thread Nakia Brewer
I may have figured it out but I'm unsure how to fix. If I look at my app bundles info plist under bundle identifier I can see it has a second line in it. 58DW393J99.com.ibss.navtroll com.ibss.navtroll Problem is to fix if I look at the app id in the LCsettings pane it doesn't have the second l

Silly Rabbit

2014-05-18 Thread Richmond
One or two things were worrying me about the silly rabbit; here's a new version: http://forums.runrev.com/viewtopic.php?f=25&t=20290&p=103858#p103858 Richmond. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subsc

Re: Signed with invalid entitlements

2014-05-18 Thread Dave Kilroy
Congratulations on fixing it! Colin is quite right though - in the LC Standalone Settings dialog box only include "com.companyname.appname" in the internal app id - Apple prepends your team number (or whatever they call it) Nakia Brewer wrote > For example > 5DW353199.com.ibss.appname

Re: Signed with invalid entitlements

2014-05-18 Thread Nakia Brewer
FYI this is the console log from when try to install... May 18 21:18:46 Nakias-Iphone mobile_installation_proxy[134] : LaunchServices: Please include the kCFBundleIdentifierKey in the options dictionary when installing an app. May 18 21:18:46 Nakias-Iphone mobile_installation_proxy[134] : Launc

Re: Signed with invalid entitlements

2014-05-18 Thread Nakia Brewer
So in LCSettings i just need below? com.ibss.navtroll I thought I remembered needing the prefix in the past... Sent from my iPhone > On 18 May 2014, at 9:44 pm, "Colin Holgate" wrote: > > The ID you use in the standalone settings is the second variation. If you are > using the first variat

Re: Signed with invalid entitlements

2014-05-18 Thread Nakia Brewer
Finally. It's installed! - combination of two errors. 1: the hidden second line in the App ID (warning be careful of the return key) 2: including the Prefix when it's not needed. Thank you both for your help. Can't believe I have spent an entire afternoon on this ! Sent from my iPhone >

Forum: quota?

2014-05-18 Thread Richmond
"Sorry, the board attachment quota has been reached." Is problematic is one wants to upload an explanatory image. Richmond. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your sub

LockMoves

2014-05-18 Thread Nakia Brewer
Hi, I have a need to move 2 groups at the same time (one menu drops in whilst one drops out). I'm currently using the move command to achieve this but they are moving one at a time (second doesn't start until first finishes).. This works okay, objects move relatively smooth etc.. However The

Re: LockMoves

2014-05-18 Thread Richmond
On 18/05/14 15:37, Nakia Brewer wrote: Hi, I have a need to move 2 groups at the same time (one menu drops in whilst one drops out). I'm currently using the move command to achieve this but they are moving one at a time (second doesn't start until first finishes).. This works okay, objects m

Re: LockMoves

2014-05-18 Thread Nakia Brewer
I am after the move transition. Touch more aesthetically pleasing... Sent from my iPhone > On 18 May 2014, at 10:45 pm, "Richmond" wrote: > >> On 18/05/14 15:37, Nakia Brewer wrote: >> Hi, >> >> I have a need to move 2 groups at the same time (one menu drops in whilst >> one drops out). >> >

Re: LockMoves

2014-05-18 Thread Richmond
On 18/05/14 15:47, Nakia Brewer wrote: I am after the move transition. Touch more aesthetically pleasing... "If the lockMoves property is set to true, when you use the move command to move an object around the screen, the movement does not become visible until the lockMoves is set to false.

Re: Forum: quota?

2014-05-18 Thread Björnke von Gierke
The limit is per account., and you're the weirdo who posts useless images in each post. Go to "User Control Panel" -> "Overview" tab -> "Manage attachments" and delete them all. On 18 May 2014, at 14:11, Richmond wrote: > "Sorry, the board attachment quota has been reached." > > Is problem

Re: LockMoves

2014-05-18 Thread Randy Hengst
Nakia, try something like this: on mouseUp move group "Menu1Group" relative 0,22 without waiting move group "Menu2Group" relative 0,-22 end mouseUp be well, randy - On May 18, 2014, at 7:47 AM, Nakia Brewer wrote: > I am after the move transition. > Touch more aesthetically pleasing..

Re: LockMoves

2014-05-18 Thread Richmond
On 18/05/14 16:20, Randy Hengst wrote: Nakia, try something like this: on mouseUp move group "Menu1Group" relative 0,22 without waiting move group "Menu2Group" relative 0,-22 end mouseUp be well, randy That works perfectly over here! Richmond. __

Re: Forum: quota?

2014-05-18 Thread Richmond
On 18/05/14 16:20, Björnke von Gierke wrote: The limit is per account., and you're the weirdo who posts useless images in each post. And you are the person who thinks he's super qualified to decide which images are useful or not. Richmond. Go to "User Control Panel" -> "Overview" tab ->

Re: LockMoves

2014-05-18 Thread Richmond
Now I'm wondering what value that "lockMoves" has at all. 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/l

Animation Engine: removing pending messages

2014-05-18 Thread Monk in Exile
I'd like to clear all animation engine messages. I've an animation that I want to stop, and when I stop it I delete a bunch of objects - however when they are fading, or otherwise animating AE complains that the controls no longer exist. Any solutions? _

Re: Signed with invalid entitlements

2014-05-18 Thread Dave Kilroy
Ah yes the hidden extra line - forgot about that one - I once remember thinking I would copy and paste version numbers into the Version box ... without realising I was adding a new line each time ... Nakia Brewer wrote > 1: the hidden second line in the App ID (warning be careful of the return >

Re: Naive Q about painting

2014-05-18 Thread Richmond
When I do that I get lines drawn on an imported image and NOT as a set of graphic objects on the card. on mouseUp set the tool to pencil drag from 10,10 to 200,250 end mouseUp This stinks. If one has a stack with several images as controls on it it then becomes impossible to draw obj

LiveCode vs Fermat

2014-05-18 Thread Dar Scott
put 781769^12 + 852723^12 = 874456^12 See http://en.wikipedia.org/wiki/Fermat's_Last_Theorem ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://li

Re: Double-Value Unicode?

2014-05-18 Thread Dar Scott
Hi, everybody! My comments on this topic have been terse and cryptic and thus less helpful that they should be. To make up for that I made a introduction to LiveCode and surrogates and sent it to this list. Unfortunately, the list software recognized it as belabored and is holding it for appr

Re: LockMoves

2014-05-18 Thread Nakia Brewer
This is basically what I am currently doing with the 'without waiting' addition. I will give this a try and see what effect it has. Note: my current implementation works but each object moves one at time (second starts after first finishes) Sent from my iPhone > On 18 May 2014, at 11:33 pm,

Re: LockMoves

2014-05-18 Thread Randy Hengst
The "without waiting" will make the difference… and they'll move at the same time On May 18, 2014, at 4:22 PM, Nakia Brewer wrote: > This is basically what I am currently doing with the 'without waiting' > addition. > > I will give this a try and see what effect it has. > > Note: my current

Re: LockMoves

2014-05-18 Thread Dar Scott
This works for me on Mavericks and LC 6.6.1. on mouseUp set the location of graphic "Rectangle" to 100,100 set the location of graphic "Round Rectangle" to 100,200 set the location of graphic "Oval" to 100,300 wait .7 seconds with messages set the lockMoves to true move graphic "

Re: LiveCode vs Fermat

2014-05-18 Thread Alejandro Tejada
Dar Scott wrote > put 781769^12 + 852723^12 = 874456^12 > > See > http://en.wikipedia.org/wiki/Fermat's_Last_Theorem The result is TRUE... Could this be an error? :o Al -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/LiveCode-vs-Fermat-tp4679702p4679707.html

Removing SVG Transformation Matrix

2014-05-18 Thread Alejandro Tejada
Hi all, Just out of curiosity, Does someone have a handler or function to apply and remove all transformation matrices from SVG files? https://www.google.com.do/search?q=remove+transform+attribute+svg&oq=remove+svg+transform Thanks in advance! Al -- View this message in context: http://runt

Re: LiveCode vs Fermat

2014-05-18 Thread Dar Scott
: ) On May 18, 2014, at 4:28 PM, Alejandro Tejada wrote: > Dar Scott wrote >> put 781769^12 + 852723^12 = 874456^12 >> >> See >> http://en.wikipedia.org/wiki/Fermat's_Last_Theorem > > The result is TRUE... > Could this be an error? :o > > Al > > > > -- > View this message in context: >

Re: Forum: quota?

2014-05-18 Thread Alejandro Tejada
Richmond, it's easier and faster to use Dropbox to share images: https://www.dropbox.com/help/498/en Al -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Forum-quota-tp4679689p4679710.html Sent from the Revolution - User mailing list archive at Nabble.com. __

Re: LiveCode vs Fermat

2014-05-18 Thread Igor de Oliveira Couto
On 19 May 2014, at 8:28 am, Alejandro Tejada wrote: > Dar Scott wrote >> put 781769^12 + 852723^12 = 874456^12 >> >> See >> http://en.wikipedia.org/wiki/Fermat's_Last_Theorem > > The result is TRUE... > Could this be an error? :o Indeed, it is. You can check it here: http://www.wolframalpha.

Re: Forum: quota?

2014-05-18 Thread Björnke von Gierke
On 18 May 2014, at 15:33, Richmond wrote: > On 18/05/14 16:20, Björnke von Gierke wrote: >> The limit is per account., and you're the weirdo who posts useless images in >> each post. > > And you are the person who thinks he's super qualified to decide which images > are useful or not. Your fo

Re: LiveCode vs Fermat

2014-05-18 Thread Glen Bojsza
Near miss syndrome ... Homer Simpson had the same issue http://www.slate.com/blogs/browbeat/2013/10/29/the_simpsons_and_fermat_s_last_theorem_wizard_of_evergreen_terrace_has_brilliant.html On May 18, 2014, at 7:16 PM, Igor de Oliveira Couto wrote: > On 19 May 2014, at 8:28 am, Alejandro Tejada

RE: LockMoves

2014-05-18 Thread Nakia Brewer
After playing with a test stack John Dixon sent me last night (Thanks John, you are the man!) I think the key with moving objects simultaneously is Making sure you include the 'without waiting' syntax. The following works fine: lock moves move grc 5 to the points of grc 1 without waiting

Re: LiveCode vs Fermat

2014-05-18 Thread Dar Scott
My near miss is a little more suitable for LiveCode. Try Homer’s in LiveCode and you get false. Can’t get anything past you folks. Dar Scott On May 18, 2014, at 6:02 PM, Glen Bojsza wrote: > Near miss syndrome ... > > Homer Simpson had the same issue > > http://www.slate.com/blogs/brow

The "FIX:" is in

2014-05-18 Thread Mike Kerner
Well, here goes, now there are two ide "FIX:" reports. Richard has a fix posted for ask/answer dialogs, and I just posted one for resizing headers in datagrids, e.g. for use on mobile. May there be many more coming. I think we should post detailed instructions for everyone on how to hack the IDE

Re: The "FIX:" is in

2014-05-18 Thread Charles E Buchwald
I heartily agree. If it can be done with a plugin, all the better. - Charles On 18 May 2014, at 9:19 PM, Mike Kerner wrote: > I think we should post detailed > instructions for everyone on how to hack the IDE to make it easier for > newbies that haven't done it before, and maybe make this part o

[OT] Your Old CD Collection Is Dying

2014-05-18 Thread Alejandro Tejada
Sad but true... http://hardware.slashdot.org/story/14/05/14/1459235/your-old-cd-collection-is-dying I have been looking for long time the Index CD of a ClipArt Collection named Art Today, advertised on Mac Magazines in the 90's... Still today, no one remembers or have used this clipart collection

Re: Naive Q about painting

2014-05-18 Thread J. Landman Gay
On 5/18/14, 2:00 PM, Richmond wrote: When I do that I get lines drawn on an imported image and NOT as a set of graphic objects on the card. on mouseUp set the tool to pencil drag from 10,10 to 200,250 end mouseUp This stinks. If one has a stack with several images as controls on it it

Re: Double-Value Unicode?

2014-05-18 Thread J. Landman Gay
On 5/18/14, 3:55 PM, Dar Scott wrote: My comments on this topic have been terse and cryptic and thus less helpful that they should be. To make up for that I made a introduction to LiveCode and surrogates and sent it to this list. Unfortunately, the list software recognized it as belabored and is

Re: LiveCode vs Fermat

2014-05-18 Thread J. Landman Gay
On 5/18/14, 6:16 PM, Igor de Oliveira Couto wrote: It would be an excellent idea if during the code refactoring that is happening right now, the LiveCode developers decided to implement one of these libraries as the mathematical engine for LiveCode. Mark Waddingham, lead engineer, got his PHD i

Re: LockMoves

2014-05-18 Thread J. Landman Gay
On 5/18/14, 9:14 AM, Richmond wrote: Now I'm wondering what value that "lockMoves" has at all. The examples given may have explained it. But just in case, move commands issued sequentially will move that way. Even if you use "without waiting" there will still be some lag between the first and

Re: LiveCode vs Fermat

2014-05-18 Thread Mark Wieder
Jacque- Sunday, May 18, 2014, 9:48:53 PM, you wrote: > Mark Waddingham, lead engineer, got his PHD in mathematics so it just > might appeal to him. > I asked him once about rotational computations and he gave me an answer, > of which I understood not a single word. You need to slow it down to m

Re: LiveCode vs Fermat

2014-05-18 Thread J. Landman Gay
On 5/18/14, 11:50 PM, Mark Wieder wrote: Jacque- Sunday, May 18, 2014, 9:48:53 PM, you wrote: Mark Waddingham, lead engineer, got his PHD in mathematics so it just might appeal to him. I asked him once about rotational computations and he gave me an answer, of which I understood not a singl