Re: postgresql bytea (blob?)

2013-05-20 Thread Björnke von Gierke
Hmm maybe "x7" could indicate it's base15? They used to store ascii in that encoding, because it's "shorter" then 8 bits (base16)... Nope, it's not that, and it'd be (number)x or something like that anyway... fumbling around... what if there's a 0 missing at the start (0x is used for octal, base

Re: Dictionary Server nonsense.

2013-05-20 Thread Björnke von Gierke
Try finding the "user extensions" folder of LiveCode. Sometimes it's not set correctly, or set to a weird place. You can see what LC 6.0.1 thinks it should be in the preferences, under "files & memory". If you navigate to that folder, there should be a copy of my stack, and a folder containing t

Re: Image ID conventions

2013-05-20 Thread Monte Goulding
On 21/05/2013, at 7:16 AM, Peter Haworth wrote: > Am I correct in assuming that the IDE will always attempt to resolve an > image id within my stack before looking in any other stacks that are loaded? If you look at the icon docs it explains it. It checks behaviors first then checks the stack.

postgresql bytea (blob?)

2013-05-20 Thread Jose Damaso
Hi - a legacy database at work contains a bytea field that I want to get the information out of. It's rich text that was for whatever reason, was stored as a blob to keep the formatting codes intact -- I'm not even sure what that means since no one here knows much about it and there is no documenta

Re: start using stack

2013-05-20 Thread Mike Bonner
Hmm interesting. My dictionary shows it works on IOS, and I just tested it in the simulator. It worked! Would still get kicked by apple, but interesting nonetheless. I set up a simple stack with 1 button. This code in the button (minus the mangling caused by my email client): *on* mouseUp x,y

Re: start using stack

2013-05-20 Thread Mike Bonner
Ah. That would probably be because it would be "running arbitrary code.." which is against the terms. There might be a sneaky workaround, but if you're wanting to submit it to the app store rather than self/internal use it would probably not be a good idea. Heres the idea though. Copy the stack

Re: start using stack

2013-05-20 Thread Ian Wood
On 20 May 2013, at 23:51, John Dixon wrote: > Mike... > > I would like to use a stack on the on-rev server from within a mobile app... > looking at the dictionary 'go url' is not available to iOS That's because this would be against the iOS developer agreement. The only downloadable code you'

RE: start using stack

2013-05-20 Thread John Dixon
Mike... I would like to use a stack on the on-rev server from within a mobile app... looking at the dictionary 'go url' is not available to iOS > Date: Mon, 20 May 2013 16:43:51 -0600 > Subject: Re: start using stack > From: bonnm...@gmail.com > To: use-livecode@lists.runrev.com > > If you're t

Re: start using stack

2013-05-20 Thread Mike Bonner
If you're talking about remotely putting a stack in use from a desktop app, you'd need to "go url.." first then start using. If you're talking about lc server, it would just be a regular file path relative to the script that is trying to use the library stack. Same directory, (and defaultfolder n

start using stack

2013-05-20 Thread John Dixon
Can I put a stack into the message path that is on the on-rev server ? If so, how do I write the 'start using stack' command ? 'www.mydomain.com/mystack' 'http://mydomain.com/mystack' 'http://www.mydomain.com/mystack' none of these seem to work ? Am I barking up the wrong tree ?

Image ID conventions

2013-05-20 Thread Peter Haworth
I'm setting up a library of images for use within an application in a substack reserved for that purpose. According to the dictionary entry for "id", ids 200,000 to 299,999 are "reserved for application use", which I took to mean my application. However, when I try to change the id of an image to

Re: where are you guys

2013-05-20 Thread Richmond
On 05/20/2013 10:53 PM, Marc Siskin wrote: You are mistaken. Scots are descended from Dwarves. Can't you tell the accent? :-) Och, Aye, I can always catch the accent on my e-mail client! . . . LOL. Richmond. Marc On May 20, 2013, at 3:37 PM, Robert Sneidar mailto:slylab...@me.com>> wr

Re: where are you guys

2013-05-20 Thread Marc Siskin
You are mistaken. Scots are descended from Dwarves. Can't you tell the accent? :-) Marc On May 20, 2013, at 3:37 PM, Robert Sneidar mailto:slylab...@me.com>> wrote: So the Scotts really are descended from hobbits! Bob Sneidar IT Manager Calvary Chapel CM Sent from iPhone On May 17, 2013,

Re: where are you guys

2013-05-20 Thread Richmond
On 05/20/2013 10:37 PM, Robert Sneidar wrote: So the Scotts really are descended from hobbits! Who are the "Scotts"? Personally I'm not a "Scott". http://en.wikipedia.org/wiki/Dinner I am, however, a Scot and I take my dinner at abune 1 of the clock. And, standing at something of the order

Re: where are you guys

2013-05-20 Thread Robert Sneidar
So the Scotts really are descended from hobbits! Bob Sneidar IT Manager Calvary Chapel CM Sent from iPhone On May 17, 2013, at 12:02, Richmond wrote: > On 05/17/2013 09:56 PM, Andre Garzia wrote: >> Hey Guys, >> >> Its dinner time. I am wondering where you are! Please tell me over email >> and

Re: where are you guys

2013-05-20 Thread Robert Sneidar
I'm right here! Bob Sneidar IT Manager Calvary Chapel CM Sent from iPhone On May 17, 2013, at 11:56, Andre Garzia wrote: > Hey Guys, > > Its dinner time. I am wondering where you are! Please tell me over email > and possibly over SMS to +552199581066 > > cheers > andre > > -- > http://www.a

Re: Resources Index to learn LiveCode

2013-05-20 Thread Alejandro Tejada
Hi All, Many Thanks Igor and Mark for answering this question! :D and I think that Björnke is correct too, on this one: > No. Make one :P Have a nice day! Al -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Resources-Index-to-learn-LiveCode-tp4665118p4665152.

UnicodeLabel & pulldown menu trouble

2013-05-20 Thread in...@kenjikojima.com
Hi, When I set an unicode label of pulldown menu. I cannot get a menu item. -- Kenji Kojima / 小島健治 http://www.kenjikojima.com/ ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: How to clear the cache

2013-05-20 Thread Mike Bonner
If you aren't using "load" to load the urls, unloading most likely doesn't apply. either a) your system or network is caching, or your isp is cacheing.. either way the easiest solution is to append something to the end of the url each time. Think someone mentioned this but might only be in the foru

Re: How to clear the cache

2013-05-20 Thread Phil Davis
Shawn, There is a simple example in the docs of how to use 'the cachedUrls' as Richmond mentioned: on unloadAll repeat for each line thisURL in the cachedURLs unload URL thisURL end repeat end unloadAll This way you don't have to keep track of your URLs, unless you want to

Re: Hide uiTextFields

2013-05-20 Thread Mike Kerner
Thanks, John - I didn't check that area. I was reading the control-specific pages. On Mon, May 20, 2013 at 11:21 AM, John Dixon wrote: > > Mike... > > Have a read of the iOS relese notes, p.62... you are able to set the > visible of any of the UIView class to 'true or 'false'... as in > > ipho

RE: Hide uiTextFields

2013-05-20 Thread John Dixon
Mike... Have a read of the iOS relese notes, p.62... you are able to set the visible of any of the UIView class to 'true or 'false'... as in iphoneControlSet theID, "visible", "true" as they all share a common set of properties... > From: mikeker...@roadrunner.com > Date: Mon, 20 May 2013

Re: Strange script apearing in the message box

2013-05-20 Thread Francis Nugent Dixon
Hi from Beautiful Brittany, … where I have my head buried in the sand …. Thanks Mark ! Sorry guys, hadn't looked at the forum mail for a few days. Too busy LiveCoding :>) Mea maxima culpa ….. -Francis ___ use-livecode mailing list use-livecode@li

Hide uiTextFields

2013-05-20 Thread Mike Kerner
I don't see it documented anywhere - instead of destroying and recreating uiTextFields and setting all their properties all over again (which I am guessing has GOT to contribute to the slowness of some of the transitions in one of my apps) is there a way to just show/hide them? I suppose I could m

Re: scrolling stack I made

2013-05-20 Thread Thomas McGrath III
Colin, I just checked a build using 6.0.1 and everything runs as expected. The original build was using 5.5.4 where it didn't work. So it seems that something in 5.5.4 has changed for 6.0.1 Thanks Tom -- Tom McGrath III http://lazyriver.on-rev.com mcgra...@mac.com On May 20, 2013, at 8:57 AM,

Re: scrolling stack I made

2013-05-20 Thread Thomas McGrath III
Colin, For once I did not even open the script before I tested and loaded this. I saw the comment mentioning accelerometer and immediately loaded it on my iPad to see it in action. This was run straight from the download. Here is what is happening on my iPhone 4: https://www.dropbox.com/s/4po1t

Re: scrolling stack I made

2013-05-20 Thread Colin Holgate
That's just showing that a script error has happened. All of the logos should be different sizes, and if they're all the same size, like they are in the screenshot, something went wrong. Did you make any changes to the script? ___ use-livecode mailing

Re: scrolling stack I made

2013-05-20 Thread Thomas McGrath III
This screenshot shows an LC logo in the upper middle that seems to be constrained by the square where others seem to be cut out by the square. https://www.dropbox.com/s/vb57wkia6b1l1qq/scrollingParallax2.png Tom -- Tom McGrath III http://lazyriver.on-rev.com mcgra...@mac.com On May 20, 2013,

Re: scrolling stack I made

2013-05-20 Thread Thomas McGrath III
Colin, I tried this (awesome) stack on an iPad Retina and there seems to be a problem with the scrolling logos being cut off. There seems to be a square section either missing or constrained for most logo images. I have a screen shot if you are interested here: https://www.dropbox.com/s/wlesoa

Re: Dictionary Server nonsense.

2013-05-20 Thread Richmond
On 05/20/2013 03:12 PM, Richmond wrote: On 05/20/2013 02:51 PM, Shawn Blc wrote: In the meantime you can use BvG Docu 2, that's what I'm doing. http://bjoernke.com/?target=bvgdocu Oddly enough, every time I start up Livecide OSS 6.0.1 on Linux it loads Bjoerne's plug-in, and then builds it;

Re: Dictionary Server nonsense.

2013-05-20 Thread Richmond
On 05/20/2013 02:51 PM, Shawn Blc wrote: In the meantime you can use BvG Docu 2, that's what I'm doing. http://bjoernke.com/?target=bvgdocu Oddly enough, every time I start up Livecide OSS 6.0.1 on Linux it loads Bjoerne's plug-in, and then builds it; so it is obviously not saving. If I clo

Re: Dictionary Server nonsense.

2013-05-20 Thread Shawn Blc
In the meantime you can use BvG Docu 2, that's what I'm doing. http://bjoernke.com/?target=bvgdocu On Mon, May 20, 2013 at 6:44 AM, Richmond wrote: > On 05/20/2013 02:31 PM, Mark Schonewille wrote: > >> Hi Richmond, >> >> I think this is only for downloading user comments. >> > > Probably: but

Re: Dictionary Server nonsense.

2013-05-20 Thread Richmond
On 05/20/2013 02:31 PM, Mark Schonewille wrote: Hi Richmond, I think this is only for downloading user comments. Probably: but is still stuffs the whole of Livecode if one tries to use it. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http:

Re: DataGrid Helper - Registering the product

2013-05-20 Thread Thomas McGrath III
Been there many times myself…. Hope you get your project done in time. -- Tom McGrath III http://lazyriver.on-rev.com mcgra...@mac.com On May 18, 2013, at 5:59 AM, Nigel Soden wrote: > I have made a completer and utter idiot of myself. ___ use-li

Re: Dictionary Server nonsense.

2013-05-20 Thread Mark Schonewille
Hi Richmond, I think this is only for downloading user comments. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer KvK: 50277553 Use Color Converter to convert CMYK, RGB, RAL, XYZ

Dictionary Server nonsense.

2013-05-20 Thread Richmond
The whole thing with the "Dictionary Server Error" does not seem to make much sense as, as far as I understand, all the documentation files are stored locally. For instance, on my Linux Main Box they are stored here: /home/jrm/.runrev/components/livecodecommunity-6.0.1-rc-1/Documentation/ and t

Re: Unicode display on Linux.

2013-05-20 Thread Richmond
On 05/19/2013 05:46 PM, Warren Samples wrote: On 05/19/2013 09:23 AM, Richmond wrote: Bug report or no bug report, I have to work with LC 4.5. A sorted out bug would appear in a later version; one for which I, currently (and many others, I suspect) do not have the money to buy. Therefore, fro

Re: Strange script apearing in the message box

2013-05-20 Thread Mark Schonewille
Hi Francis, That's what the long discussion with the subject "Dictionary Server Error" is about. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer KvK: 50277553 Use Color Conve

Strange script apearing in the message box

2013-05-20 Thread Francis Nugent Dixon
Hi from Beautiful Brittany, LiveCode Build 1502, Version 5.5.4, Personal Version While developing a stack : I show the Message Box (cmd-M), I click on "Dictionary" in the LiveCode menu, 'cos I've forgotten how to code a command. Immediately, the message box is filled up with hundreds of lines o

Re: Resources Index to learn LiveCode

2013-05-20 Thread Mark Schonewille
Hi Alejandro, I have started a page with links for beginners. http://qery.us/3gy -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer KvK: 50277553 Use Color Converter to convert CM

Re: Resources Index to learn LiveCode

2013-05-20 Thread Björnke von Gierke
On 20.05.2013, at 01:09, Alejandro Tejada wrote: > Does exists a single page with an index of all resources (free or not) > available to learn programming in this platform No. Make one :P -- Use an alternative Dictionary viewer: http://bjoernke.com/bvgdocu/ Chat with other RunRev developers:

Re: Resources Index to learn LiveCode

2013-05-20 Thread Igor de Oliveira Couto
On 20/05/2013, at 9:09 AM, Alejandro Tejada wrote: > Does exists a single page with an index of all resources (free or not) > available to learn programming in this platform, that I could sent > to anyone interested in learning to program using LiveCode? A good starting point might be: http://l

Re: scrolling stack I made

2013-05-20 Thread Mark Talluto
That is a wonderful franchise to be a part of. My kids love Thomas. We have all the movies, books, and a number of trains. Mark canelasoftware.com On May 19, 2013, at 6:31 PM, Colin Holgate wrote: > The landscape in the background is the Island of Sodor. I borrowed the layers > from a menu I