Re: [OT] Gatekeeper

2012-05-09 Thread Guglielmo Braguglia
Hi Pete, get a look there : http://codesigning.ksoftware.net/ ... cheap and with a free, nice utility, to 'sign' your Win applications (/... I use this with my LiveCode Windows Applications, on Mac I'm on the Developer Program and, in the annual fee, it's included the certificate to sign your

Re: [TO] HTML5

2012-05-09 Thread Kay C Lan
On Wed, May 9, 2012 at 1:45 PM, Richmond richmondmathew...@gmail.comwrote: I am beginning to wonder if there might not be a way to have 2 variants of a website (HTML3/4 and HTML5) that can both be connected to a neutral start-page. Of course, may sites already detect if you accessing the

AW: Umlaute get corrupted when transfering livecode from Win to Mac

2012-05-09 Thread Tiemo Hollmann TB
Hi Malte, So you say corrupted standalone texts with umlauts are a standard behavior. But there must be any mechanism working behind the scenes which tries to avoid this, because it doesn't happen every time. From time to time they are not corrupted, but I can't reproduce it. By time I made it as

Re: [TO] HTML5

2012-05-09 Thread Ken Corey
* When will the fact that my website is NOT written in HTML5 will browsers be unable to cope with it? * What you're asking: Whicih is better: HTML4 or HTML5? The question needs to be refined. It's like asking: Which is better: Mac or PC? Emacs or Vi? There's no point in these questions, and

Re: Breakpoints being ignored

2012-05-09 Thread Ken Corey
On 08/05/2012 23:39, Colin Holgate wrote: When you're next in the script editor, look at the bottom of the Debug menu. Is Script Debug Mode checked? I've checked that the debug mode is checked on my environment. It is. I've noticed that there are situations where existing breakpoints from

Re: Breakpoints being ignored

2012-05-09 Thread Kay C Lan
Hard type them, you'll have 100% success. The graphical ones are less than perfect. Making big changes to a script, cutting or pasting large amounts seems to confuse the script editor as to where the graphical breakpoints were set and can simply leave a breakpoint in a portion of a script that

Re: [TO] HTML5

2012-05-09 Thread Peter W A Wood
Richmond What features of HTML5 that aren't in HTML4 would you use? What HTML4 features do you use that have been removed from HTML5? My guess is that the answer to both questions is not very many. In which case, why don't you write you webpages using features that are in both HTML4 and

AW: [TO] HTML5

2012-05-09 Thread Tiemo Hollmann TB
Hi Richmond, up to now, for me HTML5 was an enhancement of HTML4, especially in case of videos, which I wanted to care about, if I would have the needs of the new features. But I have to say I didn't read much about HTML5 up to now. Do you really think - or are there any hard facts? - new browsers

Re: Breakpoints being ignored

2012-05-09 Thread Ken Corey
On 09/05/2012 08:08, Kay C Lan wrote: Hard type them, you'll have 100% success. The graphical ones are less than By 'Hard type', do you mean to put breakpoint in my code?, or do you mean go to the breakpoints tab, right click, and select 'new breakpoint'? -Ken

Re: [OT] Gatekeeper

2012-05-09 Thread Matthias Rebbe
Hi, Am 08.05.2012 um 11:22 schrieb Andrew Henshaw: As far as I was aware all you need to do is sign your apps, if you publish an app to the Mac App Store it already has to be signed. To do this you need the $ 99/year Apple Developer Program, and then you can use a few simple terminal

Re: [OT] Gatekeeper

2012-05-09 Thread Matthias Rebbe
Hi, seems i found an answer already. The revUp newsletter #112 contains an article how to submit an livecode app to the mac app store. http://runrev.com/newsletter/june/issue112/newsletter4.php I just hope that this still works. Regards, Matthias Am 09.05.2012 um 11:54 schrieb Matthias

SHIFTkey horrors

2012-05-09 Thread Richmond
What follows is an extract from a message I have just sent to a colleague; it concerns a really large problem: - Then when the shift key is held down, all the vowels appear, type

Re: SHIFTkey horrors

2012-05-09 Thread Mike Bonner
Use a send in time loop to monitor shiftkey() and just leave it running? On Wed, May 9, 2012 at 6:43 AM, Richmond richmondmathew...@gmail.comwrote: What follows is an extract from a message I have just sent to a colleague; it concerns a really large problem:

Re: SHIFTkey horrors

2012-05-09 Thread Richmond
On 05/09/2012 03:53 PM, Mike Bonner wrote: Use a send in time loop to monitor shiftkey() and just leave it running? That sounds a good idea. BUT isn't the 'send' going to slow things down with regard to other keystrokes? On Wed, May 9, 2012 at 6:43 AM, Richmond

Re: SHIFTkey horrors

2012-05-09 Thread Mike Bonner
Shouldn't be a big deal, in fact during the game academy a game loop (interesting code by the way) was used that did all kinds of things at approximately 50fps with enough time to animate, accept keypresses and mouse events etc. Think the stack code can be found in the forums somewhere if you want

Re: SHIFTkey horrors

2012-05-09 Thread Richmond
On 05/09/2012 04:13 PM, Mike Bonner wrote: Shouldn't be a big deal, in fact during the game academy a game loop (interesting code by the way) was used that did all kinds of things at approximately 50fps with enough time to animate, accept keypresses and mouse events etc. Think the stack code can

Re: SHIFTkey horrors

2012-05-09 Thread Mike Bonner
Another option might be to write an external that does the polling and dispatches a message when the shift key is pressed, and there might be other methods of course. Hopefully someone else has a better solution. Either way, unless rev adds the feature sounds like you may have to bite the bullet

Re: SHIFTkey horrors

2012-05-09 Thread Mike Bonner
Oh, btw, don't know if/when it will come put but there is supposedly an updatescreen message in the works (basically the same thing as the game loop but coded at the engine level) so there will be a built in loop that can be used for this sort of thing at some indeterminate time in the future. On

Re: SHIFTkey horrors

2012-05-09 Thread Richmond
On 05/09/2012 04:36 PM, Mike Bonner wrote: Oh, btw, don't know if/when it will come put but there is supposedly an updatescreen message in the works (basically the same thing as the game loop but coded at the engine level) so there will be a built in loop that can be used for this sort of thing

Re: RevDatabaseConnectResult

2012-05-09 Thread Björnke von Gierke
file a bug report. other then that, workaround is obviously to check if revDatabaseConnectResult(gDBID) is empty, and then create your own error. On 02.05.2012, at 03:23, Peter Haworth wrote: Unless I'm misunderstanding something, the above function doesn't work, at least with sqlite. I

Re: SHIFTkey horrors

2012-05-09 Thread Mike Bonner
As mentioned, you can grab the game loop code from the forum and it will do all the loop and setup as written (including dispatching updatescreen) Hope you get a brain storm and find another method. (or a brain tsunami maybe, bigger is better) The walk, picking and beer sounds like a good idea,

Re: SHIFTkey horrors

2012-05-09 Thread Richmond
On 05/09/2012 05:53 PM, Mike Bonner wrote: As mentioned, you can grab the game loop code from the forum and it will do all the loop and setup as written (including dispatching updatescreen) I'm sorry, that seems to have passed me by; can you let me know where I can get hold of the game loop?

Re: SHIFTkey horrors

2012-05-09 Thread Mike Bonner
Yeah, just sent a stack that contains it to you. Its in the stack script with some extra code to do what you want (dispatching a shiftkeyup or shiftkeydown) to the current card. On Wed, May 9, 2012 at 9:17 AM, Richmond richmondmathew...@gmail.comwrote: On 05/09/2012 05:53 PM, Mike Bonner wrote:

SHIFTkey horrors #2

2012-05-09 Thread Richmond
One could be fairly bi*chy and say that, as the Mac system can pick up when the SHIFTkey is UP or DOWN there has been a bit of an oversight on the behalf of Metacard - Runtime Revolution (i.e. somewhere down the evolutionary line), which nobody has seen fit to sort out. Of course, to be fair, it

Re: SHIFTkey horrors

2012-05-09 Thread Mike Bonner
Root beer is an acquired taste I guess! So is Dr Pepper but in the Texas/NM area it seems to be the cats pajamas. (always wanted to slip that into a sentence) Walking isn't quite the relaxer for me it would be otherwise due to various complications but a nice drive or nap can serve the purpose.

Re: SHIFTkey horrors

2012-05-09 Thread Richmond
On 05/09/2012 06:28 PM, Mike Bonner wrote: Root beer is an acquired taste I guess! So is Dr Pepper but in the Texas/NM area it seems to be the cats pajamas. (always wanted to slip that into a sentence) Yup cats pajamas is rather good; sort of rolls off the tongue in a satisfying sort of way.

Re: Breakpoints being ignored

2012-05-09 Thread Bob Sneidar
I had a situation where certain kinds of errors would uncheck it for me! I had to check it every time before debugging. That problem has not happened in a long time though, and I am running the most recent versions of LC, GLX2 and PowerDebug. Bob On May 8, 2012, at 4:04 PM, Mark Powell

Re: [OT] Gatekeeper

2012-05-09 Thread Peter Haworth
Matthias, Thanks for the link to the article. I've started the process and have doen as much as I can until my Apple Developer Program membership is activated. Maybe this question will be answered once I can get to the Mac Store Guidelines document, but the article says you have to store prefs

Re: [OT] Gatekeeper

2012-05-09 Thread Peter Haworth
Thanks Bill, checking into all these. Pete lcSQL Software http://www.lcsql.com On Tue, May 8, 2012 at 9:07 PM, Bill Vlahos bvla...@mac.com wrote: Pete, Here are some links that were instrumental to me for code signing InfoWallet and one of them has a link to a $49 commercial application to

Re: [OT] Gatekeeper

2012-05-09 Thread Peter Haworth
By the way, whats' with all these cow web sites? There's tucows and my web host is fatcow (who incidentally have a huge selection of 32x32 and 16x16 icons available for free and royalty free). Pete lcSQL Software http://www.lcsql.com On Tue, May 8, 2012 at 9:07 PM, Bill Vlahos bvla...@mac.com

Re: [OT] Gatekeeper

2012-05-09 Thread Tim Jones
And don't forget Don't have a cow, Man!, or Cowabunga, or holy cow!. I believe it's a bovine plot to take over our time line (veiled reference to Heinlein's Number of the Beast). :-O Tim On May 9, 2012, at 10:19 AM, Peter Haworth wrote: By the way, whats' with all these cow web sites?

Re: [OT] Gatekeeper

2012-05-09 Thread Jerry Jensen
And, what the heck is a coworker? On May 9, 2012, at 10:26 AM, Tim Jones wrote: And don't forget Don't have a cow, Man!, or Cowabunga, or holy cow!. I believe it's a bovine plot to take over our time line (veiled reference to Heinlein's Number of the Beast). :-O Tim On May 9,

Re: [OT] Gatekeeper

2012-05-09 Thread Tim Jones
Someone that Orks cows. :-P On May 9, 2012, at 10:35 AM, Jerry Jensen wrote: And, what the heck is a coworker? On May 9, 2012, at 10:26 AM, Tim Jones wrote: And don't forget Don't have a cow, Man!, or Cowabunga, or holy cow!. I believe it's a bovine plot to take over our time line

Re: [OT] Gatekeeper

2012-05-09 Thread Andrew Henshaw
Yes it will, ive had an app rejected for writing to the preferences folder. I stick with ~/Library/Application Support/app-identifier and just put everything in there. From June 1st there is also sandboxing to contend with for the Mac App Store, but I understand sandboxing and the gatekeeper

Re: [ANN] - SQLiteAdmin Version 1.2.0 released

2012-05-09 Thread Michael Chean
Strange, downloading in Chrome indicates that the window trial may be malicious. I've not seen that before. On Sun, May 6, 2012 at 2:06 PM, Peter Haworth p...@lcsql.com wrote: I'm happy to announce the availability of version 1.2.0 of SQLiteAdmin, my SQLite database administration program

Re: [OT] Gatekeeper

2012-05-09 Thread Bob Sneidar
They must be only for subscribers. There is no link on the home page for downloads or icons. Bob On May 9, 2012, at 10:19 AM, Peter Haworth wrote: By the way, whats' with all these cow web sites? There's tucows and my web host is fatcow (who incidentally have a huge selection of 32x32 and

Re: Breakpoints being ignored

2012-05-09 Thread stephen barncard
Speaking of GLX2, I'd love to use it but I can't trust it not to implode for no reason. Sometimes it just gets lost or doesn't show handlers on the left. Perhaps a memory leak? Errors are not reported properly or not at all. And UNDO is completely broken. Bob, do you not have any issues with it?

Re: [ANN] - SQLiteAdmin Version 1.2.0 released

2012-05-09 Thread Bob Sneidar
I get that on a Mac all the time, the first time I open a file I have downloaded from the internet. Bob On May 9, 2012, at 11:16 AM, Michael Chean wrote: Strange, downloading in Chrome indicates that the window trial may be malicious. I've not seen that before.

Re: [OT] Gatekeeper

2012-05-09 Thread Bob Sneidar
I take that back. http://www.fatcow.com/free-icons They must be only for subscribers. There is no link on the home page for downloads or icons. Bob On May 9, 2012, at 10:19 AM, Peter Haworth wrote: By the way, whats' with all these cow web sites? There's tucows and my web host is

Re: [TO] HTML5

2012-05-09 Thread stephen barncard
Use the server globals to detect the browser and have it both ways. We have to do that for the mobiles anyway. On Wed, May 9, 2012 at 12:21 AM, Tiemo Hollmann TB toolb...@kestner.dewrote: Hi Richmond, up to now, for me HTML5 was an enhancement of HTML4, especially in case of videos, which I

Re: [ANN] - SQLiteAdmin Version 1.2.0 released

2012-05-09 Thread Tim Jones
Guilty until proven innocent. Because so many people simply set Automatically Open Safe Files in Safari, Apple had to take the extra step to protect the unknowledgeable from their own missteps. Tim On May 9, 2012, at 11:28 AM, Bob Sneidar wrote: I get that on a Mac all the time, the first

Re: [ANN] - SQLiteAdmin Version 1.2.0 released

2012-05-09 Thread Peter Haworth
Hi Michael, Yes, it's an unfortunate bug in Chrome and nobody seems to know what causes it. You may have downlaoded before I changed the web site but I put a note on there now. If you re on 1.2.0, I suggest you get the latest version at www.lcsql.com/sqliteadmin.html. Sorry for the

Re: [OT] Gatekeeper

2012-05-09 Thread Peter Haworth
Thanks Andrew. I will have to change my app then. I guess I can put some version-dependant code at startup to move the prefs file to it's new location if necessary. Don't like the sound of the sandbox! I guess I should look into that before making a final decision on whether I want this thing

Re: Breakpoints being ignored

2012-05-09 Thread Bob Sneidar
Actually, Mark Weider has done a lot to make GLX2 stable and better. The current version seems to be working really well. To my knowledge, PowerDebug has never been the source of any issues I have run into, but my memory is really bad so take that with a grain of salt. The issues I have had

Re: [OT] Gatekeeper

2012-05-09 Thread Bob Sneidar
Wasn't there a discussion that the sandbox would become mandatory at some point for app store apps, or was that a misnomer? Bob On May 9, 2012, at 11:49 AM, Peter Haworth wrote: Thanks Andrew. I will have to change my app then. I guess I can put some version-dependant code at startup to

SHIFTkey Fun

2012-05-09 Thread Richmond
Try this rather simple exercise: Make yourself a stack with 1 field called OUTPUTX and put this into the card script: on rawKeyDown RAWK put RAWK into fld OUTPUTX end rawKeyDown and play with the thing. On Linux, when I press the SHIFTkey I get 65505; a similar sort of thing with Windows;

Re: Breakpoints being ignored

2012-05-09 Thread Mark Wieder
Bob Sneidar bobs@... writes: I had a situation where certain kinds of errors would uncheck it for me! I had to check it every time before debugging. That problem has not happened in a long time though, and I am running the most recent versions of LC, GLX2 and PowerDebug. This can happen if

Re: SHIFTkey Fun

2012-05-09 Thread Peter Haworth
Richmond, I don;t know if this helps your application or not but the dictionary says that on Macs those keys don't result in rawkeydow, UNLESS another key is pressed at the same time. Not sure if you then get 2 rawkeydown events or what. Pete lcSQL Software http://www.lcsql.com On Wed, May 9,

Re: SHIFTkey Fun

2012-05-09 Thread Richmond
On 05/09/2012 10:18 PM, Peter Haworth wrote: Richmond, I don;t know if this helps your application or not but the dictionary says that on Macs those keys don't result in rawkeydow, UNLESS another key is pressed at the same time. Not sure if you then get 2 rawkeydown events or what. QUITE!

Re: Breakpoints being ignored

2012-05-09 Thread Mark Wieder
Bob Sneidar bobs@... writes: Actually, Mark Weider has done a lot to make GLX2 stable and better. Thanks! The current version seems to be working really well. To my knowledge, PowerDebug has never been the source of any issues I have run into, but my memory is really bad so take that with

[OT] Free icons

2012-05-09 Thread Richmond
Just found these: http://www.gosquared.com/liquidicity/archives/category/icons ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: SHIFTkey Fun

2012-05-09 Thread dunbarx
Peter, You only get one rawKeyDown, followed by one keyDown. The message watcher, which usually floods with events every time you breathe, shows nothing at all for any of the four control keys on a Mac. Craig -Original Message- From: Peter Haworth p...@lcsql.com To: How to use

Re: SHIFTkey Fun

2012-05-09 Thread Richmond
On 05/09/2012 10:35 PM, dunb...@aol.com wrote: Peter, You only get one rawKeyDown, followed by one keyDown. The message watcher, which usually floods with events every time you breathe, shows nothing at all for any of the four control keys on a Mac. At the risk of looking like a 4 year

Re: SHIFTkey Fun

2012-05-09 Thread Richmond
On 05/09/2012 10:32 PM, Richmond wrote: On 05/09/2012 10:18 PM, Peter Haworth wrote: Richmond, I don;t know if this helps your application or not but the dictionary says that on Macs those keys don't result in rawkeydow, UNLESS another key is pressed at the same time. Not sure if you then

Re: SHIFTkey Fun

2012-05-09 Thread dunbarx
Richmond. I'm with you. The KeyCap utility would show a screen keyboard, and a keypress (or combo) would darken the associated key(s) on screen. All control keys worked, and for good measure, the characters on the screen keyboard would change to show the modified character. So even if LC

Re: SHIFTkey Fun

2012-05-09 Thread Ken Corey
Yes, there's no raw key access on MacOS Why not code around it? Much as I'd like RunRev to respond to each and every request, it makes sense for them to fix the things we cannot do, rather than doing it the way we'd like. In the stack script: - on openStack

Re: [OT] Gatekeeper

2012-05-09 Thread Peter Haworth
Hi Andrew, As someone who has obviously been through this process, I'm hoping you can enlighten me on a few things. There is a document named Mac App Store Review Guide on the Apple Developers web site which includes several things in it that are an issue for me, e.g.: -* Apps that are beta,

my 1st iOS app is online

2012-05-09 Thread Matthias Rebbe
Hi, today my 1st iOS app - created with LC - passed successfully the apple review (after the 1st attempt) and is now online in the app store. http://itunes.apple.com/en/app/qr2vcard/id523776887?l=enls=1mt=8 It´s a very simple app. Nothing with a wow effect. It just scans QR codes for vCard

Re: [OT] Gatekeeper

2012-05-09 Thread Andrew Henshaw
They keep putting it back, the current deadline is June 1st, after that all new apps and updates will have to be sandboxed, unless of course they put it back again! On 9 May 2012, at 20:00, Bob Sneidar wrote: Wasn't there a discussion that the sandbox would become mandatory at some

Re: [OT] Mac App Store (was Gatekeeper)

2012-05-09 Thread Andrew Henshaw
No problem, For the Mac App Store if you show a demo screen the app will be rejected. If you have your own license keys, thats another rejection. Update checks = rejection. Basically anything on that list is checked, and they seem to be a lot more thorough than they are on the iOS store.

Re: [OT] Mac App Store (was Gatekeeper)

2012-05-09 Thread Peter Haworth
Thanks Andrew, that helps a lot. Still wondering about the license agreement issue though. Pretty sure I'd be rejected for that since I display it within the program the first time it's run. Does the App store have its own built in mechnism for license agreements? Also, pretty sure the MAS

Re: array mystery

2012-05-09 Thread Peter Haworth
Hi Peter, I know this is a bit late but I just remembered there's a pretty cool screen scraping plugin for Firefox called Outwit Hub. I've used it a few times and it's worked very nicely. Probably too late for you now since you've written LC handlers to do it. Pete lcSQL Software

Re: SHIFTkey Fun

2012-05-09 Thread Mark Wieder
Ken Corey ken@... writes: Doesn't that accomplish most of what you wanted in an admittedly bass-ackwards way? That's the way GLX2 handle this as well, FWIW. -- Mark Wieder ___ use-livecode mailing list use-livecode@lists.runrev.com Please

rev cgi at Bluehost: libX11.so.6 not found

2012-05-09 Thread FORD JR, CURT
I'm trying to setup a registration system using the old rev engine (linux) and cgi scripts. The user fills in a form on a web page, clicks a button, and the script should start the engine, do some tasks, and display some information returned by the script. There are no problems in testing on

Re: [ANN] - SQLiteAdmin Version 1.2.0 released

2012-05-09 Thread Michael Chean
Ok downloaded it and tried it with an database Received and error: Error executing SQL Pragma user_version revdberr, Database Error: undefined Sqllite error Query: Pragma user_version. btw in this situation the db has a .db3 extension. Don't ask me why I inherited it I also use SQLite2009 pro,

Re: [ANN] - SQLiteAdmin Version 1.2.0 released

2012-05-09 Thread Michael Chean
Ok my mistake that is the encryption causing that problem. Do you handle that? On Wed, May 9, 2012 at 4:20 PM, Michael Chean mp.ch...@gmail.com wrote: Ok downloaded it and tried it with an database Received and error: Error executing SQL Pragma user_version revdberr, Database Error:

Re: [ANN] - SQLiteAdmin Version 1.2.0 released

2012-05-09 Thread Peter Haworth
Hi Michael, Never seen that one before. Probably SQlite2009 doesn't try to get the user version of the db. The .db3 extension shouldnt matter, sqlite doesn't care what extension you use. Any chance you could send me a copy of your db so I can try it here? This right when it opens the db so it

Re: [ANN] - SQLiteAdmin Version 1.2.0 released

2012-05-09 Thread Peter Haworth
How are you encrypting it? There's no built in encryption for sqlite3 but a few thrird party products that do it, in fact I notice SQLite2009 does it. If you're using it's encryption, there's probably no way I can key into it, sorry. Pete lcSQL Software http://www.lcsql.com On Wed, May 9,

Re: [ANN] - SQLiteAdmin Version 1.2.0 released

2012-05-09 Thread Michael Chean
Probably can't send it to you, but I'll look into it. On Wed, May 9, 2012 at 4:55 PM, Peter Haworth p...@lcsql.com wrote: How are you encrypting it? There's no built in encryption for sqlite3 but a few thrird party products that do it, in fact I notice SQLite2009 does it. If you're using

Re: Breakpoints being ignored

2012-05-09 Thread stephen barncard
Agreed! and thanks to Jerry for opening up the code to OSS. I didn't mean to diminish Mark's work on GLX2, I'm just frustrated with the current state of affairs with editors in Livecode in general. I've been spoiled by and used to Remo for years and have been comfortable with it, considered it

Hosting Companies: Was Gatekeeper

2012-05-09 Thread Bill Vlahos
I'm looking for a new hosting company and FatCow gets some pretty good reviews and seems reasonably priced at just under $5 per month. What are you folks using who are happy with their hosting company? Bill Vlahos _ InfoWallet (http://www.infowallet.com) is about keeping your

Re: Hosting Companies: Was Gatekeeper

2012-05-09 Thread Peter Haworth
Hi Bill, I'm using fatcow as I mentioned and have been generally happy with them. As background, I wanted somewhere that would get a web site up and running quickly with the minimum of html coding necessary from me. Fatcow have a basic drag and drop web designer (Weebly) which I used and more

Re: [OT] Mac App Store (was Gatekeeper)

2012-05-09 Thread Kay C Lan
On Thu, May 10, 2012 at 5:37 AM, Andrew Henshaw hens...@me.com wrote: The MAS store does not offer a demo or trial version, people just buy it. If they want a demo they can go to your website and try that. I don't understand. I thought the origin of this post was to do with GateKeeper and

script works only during debugging

2012-05-09 Thread Nicolas Cueto
Hello All, A script that processes some text data and then sets a card's custom-property to that data has inconsistent results. In the debugger window it works fine. I put a breakpoint in the script, run it, and when the script pauses, I click Continue and, when the script exits, the

Re: SHIFTkey Fun

2012-05-09 Thread Richard Gaskin
Richmond wrote: This whole thing is a pox, as I don't have this problem with Windows or Linux (because Livecode detects a MOD-keydown as a rawKeyDown and spits out a Unicode value). The thing that interests me here is that, in Mac OS 7,8,9, 10.2 there was a program called 'Keycaps' which

Re: [OT] Gatekeeper

2012-05-09 Thread Kay C Lan
On Thu, May 10, 2012 at 1:19 AM, Peter Haworth p...@lcsql.com wrote: By the way, whats' with all these cow web sites? There's tucows The Ultimate Collection of Winsock Software ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit

Re: rev cgi at Bluehost: libX11.so.6 not found

2012-05-09 Thread Richard Gaskin
Curt Ford wrote: Does anyone have experience with a rev cgi at Bluehost? I stopped using Bluehost many years ago when I discovered that they use a common error log for all users of a given machine, and worse, were aware of the problem and have no plans to fix it. RunRev's answer for problems

Re: Hosting Companies: Was Gatekeeper

2012-05-09 Thread Bill Vlahos
Pete, I only see two types of accounts and one isn't really much of an account other than a place to park a domain. The other one says unlimited domains but I don't see any mention of number of web pages. It looks like they only support POP email no IMAP. Do you have access to the server

Re: Breakpoints being ignored

2012-05-09 Thread J. Landman Gay
On 5/9/12 8:27 PM, stephen barncard wrote: 1. The native editor is stable, but has oddities that annoy, like that unnecessary double-enter compile-and-close window thing, or the lack of a charcoal motif, that is easier on the eyes of the myopic. I couldn't get the stack-wide search to work.

Re: script works only during debugging

2012-05-09 Thread dunbarx
This has happened to me intermittantly ever since 1987, with HC. I never quite know how it resolves, though it usually does. I can swear that sometimes code works, and sometimes not, even though I have made no changes. And your point about a script runnding just fine through the debugger, but

Re: Hosting Companies: Was Gatekeeper

2012-05-09 Thread Bill Vlahos
I used their live chat feature (very nice BTW) and they say the limits on pages are when using their build tools. If you build your site and FTP the files up there is no limit to the number of pages. They claim that IMAP is supported even thought he web site says just POP. And they do provide

Re: Breakpoints being ignored

2012-05-09 Thread Kay C Lan
Sorry for the slow reply, but yes, type the word 'breakpoint' into your scripts. I got sick and tired of Rev skipping graphical breakpoints that I just type them in now. NEVER had one missed since. On Wed, May 9, 2012 at 4:12 PM, Ken Corey k...@kencorey.com wrote: On 09/05/2012 08:08, Kay C Lan

Re: rev cgi at Bluehost: libX11.so.6 not found

2012-05-09 Thread stephen barncard
Livecode server works just fine at Dreamhost. And they have some of the best uptime and support in the industry, at competitive prices. Thanks to Andre for helping me get it running. All you need is a properly made .htaccess file at the top of the domain - no modification of Apache, which one

Re: script works only during debugging

2012-05-09 Thread Kay C Lan
Is your referencing correct? Does this involve multiples stacks (substacks) or multiple cards. Do you have unrelated stacks (Pluggin/Utility) open at the same time? Is the reason it works with the debugger is that when the debugger comes up the appropriate card/stack is bought into focus? Have

Re: SHIFTkey Fun

2012-05-09 Thread Kay C Lan
On Thu, May 10, 2012 at 10:33 AM, Richard Gaskin ambassa...@fourthworld.com wrote: Seems far more likely than the folks at RunRev sitting around their conference table thinking of ways that many years later they may be able to thwart Richmond's plans. ;) ROFL because I can actually envisage

Re: SHIFTkey Fun

2012-05-09 Thread Richmond
On 05/10/2012 06:52 AM, Kay C Lan wrote: On Thu, May 10, 2012 at 10:33 AM, Richard Gaskin ambassa...@fourthworld.com wrote: Seems far more likely than the folks at RunRev sitting around their conference table thinking of ways that many years later they may be able to thwart Richmond's plans. ;)

Re: script works only during debugging

2012-05-09 Thread Nicolas Cueto
Kay C Lan suggested: Is your referencing correct? Replaced all this and me and field references with explicit names. Still no go. Does this involve multiples stacks (substacks) or multiple cards. Nope. Do you have unrelated stacks (Pluggin/Utility) open at the same time? MobGUI and

Re: rev cgi at Bluehost: libX11.so.6 not found

2012-05-09 Thread J. Landman Gay
Thanks very much for this -- I wasn't able to get the first version of RevServer working at JaguarPC and I'm positive it was for the same reasons you had. Now that I have a recipe maybe I'll try it again. Would love to get it going. JaguarPC, btw, has no problems with old-style cgis.

Re: script works only during debugging

2012-05-09 Thread J. Landman Gay
On 5/9/12 11:34 PM, Nicolas Cueto wrote: Fingers crossed for other suggestions, cause I sure want to avoid Craig's suggestion that I retyp the whole code... It's happened to me too and I can't remember how I fixed it, or even if I did. It's so odd when it works in the debugger but not

Re: my 1st iOS app is online

2012-05-09 Thread J. Landman Gay
On 5/9/12 4:08 PM, Matthias Rebbe wrote: Hi, today my 1st iOS app - created with LC - passed successfully the apple review (after the 1st attempt) and is now online in the app store. http://itunes.apple.com/en/app/qr2vcard/id523776887?l=enls=1mt=8 Congratulations Matthias! I know how it

Re: my 1st iOS app is online

2012-05-09 Thread Monte Goulding
Fantastic use of mergExt I must say ;-) mergZXing + mergPop anything else? Don't forget you get a free month access if you do a mini case study for mergExt.com! See Todd's for an example: http://mergext.com/flat-out-fitness/ Cheers On 10/05/2012, at 7:08 AM, Matthias Rebbe wrote: Hi,

Re: script works only during debugging

2012-05-09 Thread Kay C Lan
On Thu, May 10, 2012 at 12:34 PM, Nicolas Cueto nicon...@gmail.com wrote: Fingers crossed for other suggestions, cause I sure want to avoid Craig's suggestion that I retyp the whole code... e Cheers. You may not have to do that, you could try simply copying and pasting the entire script

Re: [OT] Mac App Store (was Gatekeeper)

2012-05-09 Thread Guglielmo Braguglia
Hi Andy, please, can you clarify this point ? How you check the validity of the 'MAS receipt file' from inside a LiveCode program ? Thanks in advance, Regards, Guglielmo On 09.05.2012 23:37, Andrew Henshaw wrote: ... Then add in the checking of the 'MAS reciept file' and you are good to