Re: LiveCode syntaxhighligthing and autocomplete for Ultraedit available

2014-09-16 Thread Alejandro Tejada
Many Thanks. Should be included in Ken Ray's list: http://www.sonsothunder.com/devres/livecode/downloads/stsMLXEditor.htm#Plugins Al Simon Smith-2 wrote > You can use SublimeText on the PC - the TextMate bundle from > http://revigniter.com/accessory works perfectly. (With sublime text 3 drop >

Re: LiveCode syntaxhighligthing and autocomplete for Ultraedit available

2014-09-16 Thread Skip Kimpel
Anybody create a solution for the iPad? Would love to continue to code when I don't have my laptop handy... SKIP > On Sep 16, 2014, at 2:38 AM, Simon Smith wrote: > > You can use SublimeText on the PC - the TextMate bundle from > http://revigniter.com/accessory works perfectly. (With sublime

Re: LiveCode syntaxhighligthing and autocomplete for Ultraedit available

2014-09-16 Thread Matthias Rebbe | M-R-D
Hi, for iPad there is an Editor called Textastic, which uses TextMate bundles for syntax highlighting. https://itunes.apple.com/en/app/textastic-code-editor-fur/id383577124?mt=8 http://www.textasticapp.com/v5/manual/lessons/How_can_I_add_my_own_syntax_definitions__themes_and_templates.html Rega

LC 7.1 rc1 : anti-aliasing not sticking on Mac OS X version...

2014-09-16 Thread Frans Schoffelen
Hi , We are working on a stack that has a lot of small vector graphics in it. It is only a 7 card stack so nothing big. At a certain point we set the Scale of the stack to 2 to be able to better work on details and saw that NONE of the little grc ovals were anti-aliased. So we wrote a small scri

Looking for open source LiveCode app(s) for a friend doing MEDITATION

2014-09-16 Thread Mark Rauterkus
Hi, A local friend in Pittsburgh, PA, wants an app for meditation. Rather than re-invent the wheel, I was wondering if anyone has anything they've already done and would be willing to share? His biz plan concepts, raw startup, are with a focus on the local city / region. Hope to hear from you if

Re: Looking for open source LiveCode app(s) for a friend doing MEDITATION

2014-09-16 Thread Mark Schonewille
Hi Mark, You might want to write a little more about the requirements of the app. E.g. should it play meditative music from local musicians? Should it provide information about local toko's? What about health monitoring? -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Softwa

Re: AW: OS X codesigning best practise?

2014-09-16 Thread tbodine
>From Apple Developer news email received Sept. 16, 2014: Beginning November 1, 2014, apps submitted to the Mac App Store must be signed with signatures created with OS X Mavericks 10.9 or later (v2 signatures). Apps without v2 signatures will be automatically rejected on upload. If you build cod

PDF Files - Is there a way to read them in LiveCode?

2014-09-16 Thread Jonathan Scott
Hi, I have some PDF files that I'd like to create a search stack for. I looked on the net and found a way to display them in LiveCode, but is there actually a way to read the OCR text that's in each file? If not, there should be. Thanks in advance. _

Missing dragData["image"]

2014-09-16 Thread Alejandro Tejada
Hi All, Chilton Webb posted a question on Facebook: "Hi, I'm trying to drag an image off a webpage into a livecode object. Currently, I'm using dragdata["image"], and it returns empty. Other options return the url the image points to, but none of them return a url to the image itself. In a Coc

Re: Missing dragData["image"]

2014-09-16 Thread Alejandro Tejada
The missing dragData["image"] looks like a bug, because in 2007 it worked fine. Read this post by Ken Ray in this thread: http://runtime-revolution.278305.n4.nabble.com/re-trying-to-get-image-functionality-as-in-RB-td315321.html -- Wayne Durden as

Re: PDF Files - Is there a way to read them in LiveCode?

2014-09-16 Thread Alejandro Tejada
Read the OCR text? Do you mean copy the text of each PDF in a LiveCode text field? Al -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/PDF-Files-Is-there-a-way-to-read-them-in-LiveCode-tp4683312p4683315.html Sent from the Revolution - User mailing list archive a

Unwanted 'Pulsing' when Changing an Image's Angle

2014-09-16 Thread Ray
Greetings, I've got an image of a beach ball, about 100 pixels in both width and height. If I use a repeat loop to cycle through setting the angle of the image from a value of 360 down to 0 it spins, as intended, but it also 'pulses' toward me and away from me, twelve times I believe for eac

Re: Unwanted 'Pulsing' when Changing an Image's Angle

2014-09-16 Thread Alejandro Tejada
Hi Ray, Set the angle of your image only to these values: 0 90 180 270 This worked fine with a rotating Soccer Ball... :) Al -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Missing-dragData-image-tp4683313p4683317.html Sent from the Revolution - User mailing

Re: Unwanted 'Pulsing' when Changing an Image's Angle

2014-09-16 Thread Ray
Al, Thanks, but I was kind of hoping to get a more realistic spinning ball by using a larger variety of angles. Are you sure there's no other way around this? And by the way, why do you think the ball is shrinking and growing inside the bounding rectangle? Thanks, Ray On 9/16/2014 8:50

Re: Unwanted 'Pulsing' when Changing an Image's Angle

2014-09-16 Thread Randy Hengst
I don't know how to totally get rid of the wobble … it seems like there is always a bit one one… but I've seen the pulsing effect when rotating an image with lockLoc set to true. On Sep 16, 2014, at 6:55 PM, Ray wrote: > Al, > > Thanks, but I was kind of hoping to get a more realistic spinnin

Re: Unwanted 'Pulsing' when Changing an Image's Angle

2014-09-16 Thread Terry Judd
I think if you set the lockLoc of the image to false it should behave as expected. Otherwise you could create a series of images and iteratively set the icon of a button to animate it. Terry... On 17/09/2014 10:16 am, "Randy Hengst" wrote: >I don't know how to totally get rid of the wobble Š it

Re: Unwanted 'Pulsing' when Changing an Image's Angle

2014-09-16 Thread Alejandro Tejada
Randy Hengst wrote > I don't know how to totally get rid of the wobble … > it seems like there is always a bit one one… > but I've seen the pulsing effect when > rotating an image with lockLoc set to true. Yes, lockLoc produces this effect in a rotating image. :( Check if this handler posted b

accessing database table on iPad

2014-09-16 Thread Frantz Charles
To all, I need your expertise help to solve this issue I encounter in the app I am creating. Here is the problem:I create a SQLite database with 2 tables containing data. The database is saved in the same folder than the app. I can access with ease the database and read the records from my deskt

Re: Unwanted 'Pulsing' when Changing an Image's Angle

2014-09-16 Thread Ray
Fantastic! Setting LockLoc to false did the trick. I wonder why lockLoc set to false creates this pulsing effect (the image is actually getting smaller and returning to its original size) in the first place. Anyway, problem solved. And Alejandro, many thanks for sharing the code which I thin

Re: Unwanted 'Pulsing' when Changing an Image's Angle

2014-09-16 Thread Terry Judd
On 17/09/2014 11:40 am, "Ray" wrote: >Fantastic! Setting LockLoc to false did the trick. I wonder why >lockLoc set to false creates this pulsing effect (the image is actually >getting smaller and returning to its original size) in the first place. With the image selected, try setting differe

RE: accessing database table on iPad

2014-09-16 Thread Ralph DiMola
Frantz, Let's see if we get to the bottom of this. First: If the db does not exist SQLite will create a blank one. This is the good news! You know that your DB code is working. You can always check if your "real" db is open by making sure one or more of your tables is returned by the revDatabaseTa

Re: LiveCode syntaxhighligthing and autocomplete for Ultraedit available

2014-09-16 Thread Skip Kimpel
Thanks Matthias, In theory this shoul work... Does anybody actually have this successfully running on an iPad with Textastic?I get LiveCode to show up as an option in syntax definition but it is not doing anything to format the text. Just curious. SKIP > On Sep 16, 2014, at 5:53 AM,

Re: LiveCode syntaxhighligthing and autocomplete for Ultraedit available

2014-09-16 Thread Skip Kimpel
Interestingly enough, LiveCode actually appears natively without installing the irev tmBundles. However, choosing that OR the installed irev option still do not do anything. SKIP > On Sep 16, 2014, at 10:32 PM, Skip Kimpel wrote: > > Thanks Matthias, > > In theory this shoul work... Does any

Re: Unwanted 'Pulsing' when Changing an Image's Angle

2014-09-16 Thread Alejandro Tejada
Ray Horsley-2 wrote > Fantastic! Setting LockLoc to false did the trick. I wonder why > lockLoc set to false creates this pulsing effect (the image is actually > getting smaller and returning to its original size) in the first place. > > Anyway, problem solved. > > And Alejandro, many thanks

Re: LiveCode syntaxhighligthing and autocomplete for Ultraedit available

2014-09-16 Thread Peter Haworth
Hi Skip, If you're using the revigniter bundle, the files have to have ? wrote: > Thanks Matthias, > > In theory this shoul work... Does anybody actually have this successfully > running on an iPad with Textastic?I get LiveCode to show up as an > option in syntax definition but it is not doin

Re: accessing database table on iPad

2014-09-16 Thread Peter Haworth
Sounds like the path to your db is wrong. LC happily creates an empty file for you which is not even formatted as an sqlite db! I've always thought that was flat out wrong. I would check that your db file exists before calling revdatabaseopen with the exists() function. Pete lcSQL Software On Se

Listing & Filtering files

2014-09-16 Thread JB
You want some of the best ways to list and filter files? Here it is from the experts with a stack download to help. http://lessons.runrev.com/s/lessons/m/4071/l/16635-file-and-folders-part-1 John Balgenorth ___ use-livecode mailing list use-livecode@li

Re: Listing & Filtering files

2014-09-16 Thread JB
It says this is PART 1. Does anyone know where Part 2 is? John Balgenorth On Sep 16, 2014, at 9:25 PM, JB wrote: > You want some of the best ways to list and filter files? > Here it is from the experts with a stack download to help. > > http://lessons.runrev.com/s/lessons/m/4071/l/16635-fil

Re: Listing & Filtering files

2014-09-16 Thread Paul Hibbert
http://lessons.runrev.com/m/4071/l/17080-files-and-folders-part-2 The link is in the top right corner of part 1. :-) Paul On Sep 16, 2014, at 9:30 PM, JB wrote: > It says this is PART 1. > > Does anyone know where Part 2 is? > > John Balgenorth > > > > On Sep 16, 2014, at 9:25 PM, JB wro

Re: Listing & Filtering files

2014-09-16 Thread JB
Thanks for the info on the link for part 2. I am color blind on reds and greens and after you pointing it out I see it. Before that it kind of disappears and makes it easy to miss. John Balgenorth On Sep 16, 2014, at 9:54 PM, Paul Hibbert wrote: > http://lessons.runrev.com/m/4071/l/17080-file