Re: Intel CPU for Android Devices

2018-03-31 Thread Todd Fabacher via use-livecode
Thanks Ralph...I will test. --Todd On Sat, Mar 31, 2018 at 4:19 PM, Ralph DiMola wrote: > I have an old Samsung Galaxy Tab 3 10.1 the has an Intel Atom processor and > it runs LC 8.1.9/9.0(rc)1 apps. The apps are a bit slow but do run(I > wonder > if there's

Re: do. command. safety. ?

2018-03-31 Thread Richard Gaskin via use-livecode
Jacque wrote: > could you provide an example where the embedded command would actually > execute? A variant of Mark's example which executes when passed to fooEvil but not when pass to fooGood: on mouseUp put "into x "&";answer GOTCHA & word 1 of the params #" \ into tUserInput

Re: Multiple Windows

2018-03-31 Thread Richard Gaskin via use-livecode
Richmond Mathewson wrote: > I know the idea of being able to display different cards from one > stack in different windows is something that has exercised many > people for a long time. > > I had a fantasy that ran like this: > > [pseudoCode] > > show card 6 of stack "Stack1" in stack

Re: do. command. safety. ?

2018-03-31 Thread Alex Tweedly via use-livecode
The question is exactly what did you type into the field ? It's unclear whether the quotes in your email are part of the email, or part of the field content. Here's a case that definitely shows the difference: button "Button" on mouseup   localtVar, tX   do"put "&& quote& thetextoffld1&

RE: Browser Widget Document Download

2018-03-31 Thread Ralph DiMola via use-livecode
Hey BR, The link is going to a content management system(Adobe I think) http://www.gasb.org/cs/ContentServer?c=Document_C=1176169676825= ame=GASB%2FDocument_C%2FDocumentPage The file name is buried in the html but not the path. It's in an iFrame but it gets rendered by some unknown SW on iOS. On

RE: Intel CPU for Android Devices

2018-03-31 Thread Ralph DiMola via use-livecode
I have an old Samsung Galaxy Tab 3 10.1 the has an Intel Atom processor and it runs LC 8.1.9/9.0(rc)1 apps. The apps are a bit slow but do run(I wonder if there's emulating going on?). I have not installed from the store. I side-load using adb. Is the app visible on the PlayStore to the devices?

Re: do. command. safety. ?

2018-03-31 Thread Dr. Hawkins via use-livecode
On Fri, Mar 30, 2018 at 9:02 AM, Mark Waddingham via use-livecode < use-livecode@lists.runrev.com> wrote: > > do "put " && quote & user input & quote && "into x" -- not safe > Thus, do "initiate global thermonuclear war" :) Was shazam the statistical package that actually implemented that

Re: do. command. safety. ?

2018-03-31 Thread J. Landman Gay via use-livecode
BTW, I know this works and is dangerous: do It's the insertions that don't seem to be affected. On 3/31/18 2:03 PM, J. Landman Gay via use-livecode wrote: At the risk of appearing to be obtuse...I tried both versions of the "do" and got the same results. In each case, the variable was

Re: do. command. safety. ?

2018-03-31 Thread J. Landman Gay via use-livecode
At the risk of appearing to be obtuse...I tried both versions of the "do" and got the same results. In each case, the variable was populated but no code was executed. In a test stack with one field and one button, I entered ";set the backcolor of btn 1 to blue;put ". In the button script I

Re: Browser Widget Document Download

2018-03-31 Thread Sannyasin Brahmanathaswami via use-livecode
When I set the widget to the url the PDF displays. When I put the url into a var "put url (tURL) into MyVar" I see some html/javascript in MyVar but no PDF. What I would like to do is download the PDF on both mobile platforms. Is this even possible with LC? BR: can you send the URL? Typically,

Re: Intel CPU for Android Devices

2018-03-31 Thread J. Landman Gay via use-livecode
I don't have a solution, but the Play Store lets you set incompatible versions or devices. Those won't show up in searches, or if the user gets there some other way there's a banner saying the app is incompatible with the device. -- Jacqueline Landman Gay | jac...@hyperactivesw.com

Re: Multiple Windows

2018-03-31 Thread dunbarx via use-livecode
Richmond. I saw your construction of two stacks displayed in a "frame", so it appeared that two cards were simultaneously present in a single "stack". I see what you are after; the goal being be able to navigate in each card separately. Why only two? Anyway, I have never needed such a feature,

Intel CPU for Android Devices

2018-03-31 Thread Todd Fabacher via use-livecode
I am running into a problem where the Android device uses Intel CPU and NOT Arm. It does not rum from the store on the device. Has anyone installed and run a LiveCode Android App on an Intel device. I have an 11am meeting on Monday, so any answer on the holiday weekend would be much appreciated.

Re: variable xref

2018-03-31 Thread Rick Harrison via use-livecode
Whenever you deprecate code you may be destroying someone’s life’s coding work. There should always be at least a rock solid migration utility offered that will make any such deprecations completely smooth, and painless for anyone who has to make the changes. Just my 2 cents for the day. ;-)

Multiple Windows

2018-03-31 Thread Richmond Mathewson via use-livecode
I know the idea of being able to display different cards from one stack in different windows is something that has exercised many people for a long time. I had a fantasy that ran like this: [pseudoCode] show card 6 of stack "Stack1" in stack "subStack1" How daft is that? Richmond.