Re: revGoURL "mailto" bug ?

2012-10-25 Thread stephen barncard
doesn't do the same thing. On Thu, Oct 25, 2012 at 2:05 PM, kee nethery wrote: > Wouldn't you URLencode this stuff since mailto: is a URI prefix? > Kee Nethery > > > On Oct 24, 2012, at 10:41 PM, Bob Earp wrote: > > > I'm using revGoURL to send eMails to Apple Mail as follows; > > > > put "mail

Re: revGoURL "mailto" bug ?

2012-10-25 Thread kee nethery
Wouldn't you URLencode this stuff since mailto: is a URI prefix? Kee Nethery On Oct 24, 2012, at 10:41 PM, Bob Earp wrote: > I'm using revGoURL to send eMails to Apple Mail as follows; > > put "mailto:?"&; lSubjectTxt & "&" & lAddresses & "&" & lBodyTxt into lMailMsg > revGoURL lMailMsg > > I

Re: revGoURL "mailto" bug ?

2012-10-24 Thread stephen barncard
percent % is %25 it's just hex ascii On Wed, Oct 24, 2012 at 11:32 PM, stephen barncard < stephenrevoluti...@barncard.com> wrote: > yeah, replace the entities for this email stuff 'the usual suspects' > won't work unless escaped or translated. > > function fixURL pURL > replace ":"

Re: revGoURL "mailto" bug ?

2012-10-24 Thread stephen barncard
yeah, replace the entities for this email stuff 'the usual suspects' won't work unless escaped or translated. function fixURL pURL replace ":" with "%3A" in pURL replace "?" with "%3F" in pURL replace "/" with "%2F" in pURL replace "<" with "%3C" in pURL replace ">" with "%3E"

Re: revGoURL vs Launch URL and multitasking on iPad

2012-09-12 Thread J. Landman Gay
On 9/12/12 6:17 AM, stgoldb...@aol.com wrote: Some of the apps I'm working on for iPhone and iPad contain links to specific URLs on the Internet. However, at least on my iPad 1 (Version 5.1.1), when closing the Internet browser, I am not taken back to the original card in the LiveCode app that

Re: revGoURL

2011-08-09 Thread J. Landman Gay
On 8/9/11 9:31 AM, Richmond Mathewson wrote: On 08/09/2011 01:59 PM, John Dixon wrote: Have a look at 'ftp' in the dictionary, that will do it for you The problem about this is that it presupposes that one knows the ftp address; where the 'normal' download method would be via a web-page as

Re: revGoURL

2011-08-09 Thread Richmond Mathewson
On 08/09/2011 01:59 PM, John Dixon wrote: Have a look at 'ftp' in the dictionary, that will do it for you The problem about this is that it presupposes that one knows the ftp address; where the 'normal' download method would be via a web-page as http://... the GET URL "ftp://..

Re: revGoURL

2011-08-09 Thread Mark Schonewille
Hi Richmond, It impossible to use revGoUrl (now launch url) without webbrowser, unless you trick your operating system. It is possible to use the put url function together with the urlStatus function. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepag

RE: revGoURL

2011-08-09 Thread John Dixon
Have a look at 'ftp' in the dictionary, that will do it for you > Date: Tue, 9 Aug 2011 13:24:23 +0300 > From: richmondmathew...@gmail.com > Is it possible to use revGoURL to download files without the mediation > of the end-user's web-browser? > > Or, put another way: it it possible to hav