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
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
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 ":"
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"
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
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
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://..
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
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