Re: Running Livecode apps on Microsoft Surface

2012-11-18 Thread Roger Eller
There are two flavors of Surface. The ARM platform has no LC support, obviously. But the Surface Pro (i5 platform) is a standard PC in a tablet format, and therefore should be capable of running standard desktop applications made with LiveCode. ~Roger On Sun, Nov 18, 2012 at 3:21 PM, Francis Nu

Re: Non-blocking URL commands

2012-11-18 Thread Jan Schenkel
Yup, it should work pretty much the same and is called (rather unimaginatively): qrtHTTP_SetSSLVerification [true|false] HTH, Jan Schenkel.  = Quartam Reports & PDF Library for LiveCode www.quartam.com = "As we grow older, we grow both wiser and more foolish at the same time." (La Roc

Running Livecode apps on Microsoft Surface

2012-11-18 Thread Francis Nugent Dixon
Hi from Beautiful Brittany, I may have gone for an iPad, except that there was never any way of running native LiveCode on it (I mean under OS X). IOS and Android are certainly not my cup of tea ! It seems that "Surface" can run Vista apps. Does this mean that I can run Livecode apps (suitably red

Re: Non-blocking URL commands

2012-11-18 Thread Andrew Kluthe
Jan, Is there an equivalent to libUrlSetSSLVerification false with your library? The rest interface I want to run some tests against uses SSL, but the only workaround I had with rev to get it to work on certain machines was to do that. Andrew On Sun, Nov 18, 2012 at 12:56 PM, Andrew Kluthe wrot

Re: Non-blocking URL commands

2012-11-18 Thread Andrew Kluthe
Going to check this out. I am only really looking for desktop support for now, but I was looking at libRevCurl from the late Mark Smith. Let me take a look at this. It certainly looks promising. Kind regards, Andrew On Sun, Nov 18, 2012 at 8:33 AM, Jan Schenkel wrote: > Hi Andrew, > > I took a s

Re: "Badge" in answer modal?

2012-11-18 Thread Richmond
On 11/18/2012 08:04 PM, Mark Schonewille wrote: Hi Richmond, You need to set the gRevAppIcon and the gRevSmallAppIcon to an existing ID number of an image control. You can also use the commands answer error, answer information, answer question and answer warning. -- Best regards, Mark Schon

Re: "Badge" in answer modal?

2012-11-18 Thread Peter M. Brigham
You can set the global variables gRevAppIcon and gRevSmallAppIcon. Here's a handler that I use. Substitute the id of the images you want to display at the beginning of the handler. The icons seem to be reset at idle, so you have to call the setUpIcons handler before every "answer…" command. on

Re: "Badge" in answer modal?

2012-11-18 Thread Mark Schonewille
Hi Richmond, You need to set the gRevAppIcon and the gRevSmallAppIcon to an existing ID number of an image control. You can also use the commands answer error, answer information, answer question and answer warning. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Eng

Re: http://www.haiku-os.org/

2012-11-18 Thread Dr. Hawkins
On Sat, Nov 17, 2012 at 8:43 PM, kee nethery wrote: > My understanding was that BeOS had few drivers and few protocol stacks whereas > the NeXT Mach version of Unix had everything. BeOS was very shiny but not full >featured. Unix rugged robust reliable but not sexy. From what I recall, it was >no

using send to "multi-task" ? [was: Non-blocking URL commands]

2012-11-18 Thread Dr. Hawkins
On Fri, Nov 16, 2012 at 2:13 PM, Monte Goulding wrote: > It means other scripts can run but the script executing the post is blocked > waiting for it >to return. It's how your users manage to execute other things while the http >request is >going on. Disable anything you don't want them to do wh

"Badge" in answer modal?

2012-11-18 Thread Richmond
In 4.5 if I have something that goes like this in a button: on mouseup answer "disabled in DEMO" --do something fancy end mouseUp the answer message comes up with a RunRev icon from version 2. I am wondering how to replace that badge with either: 1. nothing, or 2. an icon of my choice.

Re: Android 4, post problem in detail

2012-11-18 Thread Takashi Yoshino
Hi Pierre, Thank you for your information. I can use Post script. But I found that Post action of Android 3 and Android 4 is different. Anyway, best regard for your information. I can continue my programming. _.__ ._ _. ._ ._.__ .. ._._. _._ . ..__ ._.__ ._._. ___. .._ __.. __ .._ Takashi Yosh

Re: Scrolling List Field/Table

2012-11-18 Thread Peter M. Brigham
Maybe an extra right-justified field covering the column in question, set to scroll with the main field. There have been a number of posting in the past re getting two fields to scroll in unison, see the archives. More complicated but quite do-able. Keep in mind that you can set the scroll of an

Re: Non-blocking URL commands

2012-11-18 Thread Jan Schenkel
Hi Andrew, I took a stab at an asynchronous HTTP library a while back. You can download the current version at: Note that it is based on raw socket communication so only available for the desktop engines, not the mobile or server engine

Re: Scrolling List Field/Table

2012-11-18 Thread Peter Haworth
Hi Jacque, I'm converted! Just not quite 100% there yet. If I'm not mistaken, I have the same right justification problem if I use a standard table. I'd like to use the para style properties because no scrolling issues that way. I wonder if I can simulate the right justification.. maybe put the

Re: Android 4, post problem in detail

2012-11-18 Thread Pierre Sahores
Hi Takashi, Sorry for the error in previous post. Please, read : post URLEncode("kind=test2") to URL MIAS instead at line 8. Try : put "http://m3-shiga.yoslab.net/m3is_v4_debug/test.php"; into MIAS get url (MIAS & "?function=test") if it is not "" then ### parse your $_GET r

Re: Android 4, post problem in detail

2012-11-18 Thread Pierre Sahores
Hi Takashi, Sorry for the error in previous post. Please, read : post URLEncode("kind=test2") to URL MIAS instead at line 3. Try : put "http://m3-shiga.yoslab.net/m3is_v4_debug/test.php"; into MIAS get url (MIAS & "?function=test") if it is not "" then ### parse your $_G

Re: Android 4, post problem in detail

2012-11-18 Thread Pierre Sahores
Hi Takashi, Sorry for the error in previous post. Please, read : get url (MIAS & "?function=test") instead at line 3. Try : put "http://m3-shiga.yoslab.net/m3is_v4_debug/test.php"; into MIAS get url (MIAS & "?function=test") if it is not "" then ### parse your $_GET r

Re: Android 4, post problem in detail

2012-11-18 Thread Pierre Sahores
Hi Takashi, Sorry for the error in previous post. Please, read : if it is not "" then ### parse your $_POST or $_POST_RAW response end if instead at line 11. Try : put "http://m3-shiga.yoslab.net/m3is_v4_debug/test.php"; into MIAS get url MIAS & "?function=test"

Re: Android 4, post problem in detail

2012-11-18 Thread Pierre Sahores
Hi Takashi, Try : put "http://m3-shiga.yoslab.net/m3is_v4_debug/test.php"; into MIAS get url MIAS & "?function=test" if it is not "" then ### parse your $_GET response end if set httpHeaders to "Content-type: application/x-www-form-urlencoded" & retur