Re: Keep taking the tablets

2016-10-12 Thread Mike Kerner
I've done this when I'm trying to debug something, but ya know, one thing I
haven't tried to do, yet, is attach the script editor to a mobile app and
then hack the app more directly while I'm inside of it.

On Wed, Oct 12, 2016 at 12:53 PM, Roger Eller 
wrote:

> On Wed, Oct 12, 2016 at 11:52 AM, Richmond 
> wrote:
>
> > I have a Nextbook Android tablet (Jelly Bean) that was dropped on me by
> my
> > wife
> > when I bought her a MacBook Air; and, frankly, tablets make me think of
> > plastic bath-toys.
> >
> > So, I was wondering about rejigging it with Ubuntu-phone . . .
> >
> > 1. Does anyone know if the Raspberry Pi version of Livecode will work on
> > Ubuntu-phone?
> >
> > 2. As Ubuntu-phone is a Linux variant designed to run on an ARM
> processor,
> > as Android is,
> > also a Linux variant for an ARM processor, does anyone know if
> standalones
> > built for:
> >
> > 2.1. Android, will run on Ubuntu-phone?
> >
> > 2.2. Linux . . .? [presumably the answer to this is 'No' as, currently,
> > Livecode offers Linux standalones for
> > Intel processors only.
> >
> > Richmond.
> >
> >
> I would guess no.  But that doesn't mean you can't have some LiveCode fun
> with it.  Create an Android standalone that has a large text field and an
> "Execute" button that contains - do field "fieldName".  Your field is now a
> basic script editor.  If your build included all of the lc libraries, there
> should be very little that you can't do.  Oh, you might also want a Load
> and Save script button.
>
> ~Roger
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>



-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


more postgres madness

2016-10-12 Thread Dr. Hawkins
It took a bit to track this down,, but the command

SELECT unqKy, ktyp, kywd, usr, tstmp, scr, cmd FROM
dhdbt_testy_xlvi___001 WHERE ((tstmp > '2010-01-01 00:00:00.00-00')
OR (tstmp IS NULL));


is yielding


revdberr,


That's it; just "revdberr,"

This is regardless of whether or not the command gets wrapped with BEGIN/END

This is the normal output for revDataFromQuery() when feeding it an UPDATE
or some such that is not a query, but it should not be happening like this.

This, naturally, is in a block of code that has been working fine for year

I'm using 7.1.4, and posters 9.5.

-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: beepsound on iOS

2016-10-12 Thread Mike Kerner
1. You have to include your own beep sounds with your app.  Use "Copy
Files" in the standalone application settings
2. In your code, use "set the beepsound to" and the path to the file
3. mergAVAudioSessionSetCategory "playback","false","true"*#monte defaults
the speaker to off when barcode is on*
When you're done beeping,mergAVAudioSessionSetCategory "playback" *#revert
to defaults*

On Wed, Oct 12, 2016 at 3:00 AM, John Dixon  wrote:

> Are you supplying a sound file for the beepsound to play ?... as in...
>
> set the beepSound to specialFolderPath("engine") & "/shortbeep.aiff"
>
>
>
> 
> From: use-livecode  on behalf of
> Terry Judd 
> Sent: 12 October 2016 04:24
> To: How to use LiveCode
> Subject: Re: beepsound on iOS
>
> Not quite answering my own question but there might be an interaction with
> mergeAV involved (I'm trying to provide a bit of audio/tactile feedback
> after a QR code is recognised) as the beep seems to sort of work (vibrates
> but doesn't beep) on a previous card before mergeAV is initialized.
>
> Terry...
>
> From: Terry Judd 
> Date: Wednesday, 12 October 2016 1:27 pm
> To: How to use LiveCode 
> Subject: beepsound on iOS
>
> I'm trying to play a simple beep on iOS by setting the beepsound (to
> either "system" or "vibrate") and calling beep, but I'm getting nothing. If
> I place the code in a try/catch statement then the returned error is
> '535,4,1'. Any ideas on what might be going wrong here?
>
> Terry...
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> Runtime Revolution - use-livecode Mailing List mailman/listinfo/use-livecode>
> lists.runrev.com
> This mailing list is intended for discussion relating to using LiveCode.
> To see the collection of prior postings to the list, visit the use-livecode
> Archives
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>



-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: beepsound on iOS

2016-10-12 Thread Terry Judd
Thanks Mike, I’ll give all that a go.

Terry...

On 12/10/2016 9:22 pm, "use-livecode on behalf of Mike Kerner" 
 
wrote:

1. You have to include your own beep sounds with your app.  Use "Copy
Files" in the standalone application settings
2. In your code, use "set the beepsound to" and the path to the file
3. mergAVAudioSessionSetCategory "playback","false","true"*#monte defaults
the speaker to off when barcode is on*
When you're done beeping,mergAVAudioSessionSetCategory "playback" 
*#revert
to defaults*

On Wed, Oct 12, 2016 at 3:00 AM, John Dixon  wrote:

> Are you supplying a sound file for the beepsound to play ?... as in...
>
> set the beepSound to specialFolderPath("engine") & "/shortbeep.aiff"
>
>
>
> 
> From: use-livecode  on behalf of
> Terry Judd 
> Sent: 12 October 2016 04:24
> To: How to use LiveCode
> Subject: Re: beepsound on iOS
>
> Not quite answering my own question but there might be an interaction with
> mergeAV involved (I'm trying to provide a bit of audio/tactile feedback
> after a QR code is recognised) as the beep seems to sort of work (vibrates
> but doesn't beep) on a previous card before mergeAV is initialized.
>
> Terry...
>
> From: Terry Judd 
> Date: Wednesday, 12 October 2016 1:27 pm
> To: How to use LiveCode 
> Subject: beepsound on iOS
>
> I'm trying to play a simple beep on iOS by setting the beepsound (to
> either "system" or "vibrate") and calling beep, but I'm getting nothing. 
If
> I place the code in a try/catch statement then the returned error is
> '535,4,1'. Any ideas on what might be going wrong here?
>
> Terry...
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> Runtime Revolution - use-livecode Mailing List mailman/listinfo/use-livecode>
> lists.runrev.com
> This mailing list is intended for discussion relating to using LiveCode.
> To see the collection of prior postings to the list, visit the 
use-livecode
> Archives
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>



-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your 
subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Subject: Re: LiveCode interface to SCORM /LTI

2016-10-12 Thread Todd Fabacher
Hello Martin and Bill and other educators,

Actually we have been diligent little elves working away since the hangout
meeting.  Based on research, we have decided to focus on 2 interchange
formats: LTI and xAPI [from TinCan and SCORM].

We would like in the near future to have another online meetup where we can
share our findings and hopefully create a path where everyone can work
together to get to our destination quicker. There was a desire to see this
move forward at the meeting, but most had limited resources to commit.

So, Digital Pomegranate will supply the resources, time and money to script
a LiveCode Import/Export interface to LTI and xAPI based Apps. Richard
suggested the MIT Open Source license model as the best option for the
community and we all fully agreed.  We are currently learning all we can
about the formats, the best way to organize them in LiveCode and how to
translate the API calls to an easy LiveCode syntax. Since we are not
experts and in actuality know little of these APIs, we need 2-3 weeks to
begin to create the middleware.

Any help or suggestions would be appreciated. Also, if ANYONE has a system
which we can run query test on that would help us out greatly.


--Todd, William and the Digital Pomegranate Team
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Subject: Re: LiveCode interface to SCORM /LTI

2016-10-12 Thread Earthednet-wp
One thing that occasionally trips me up is my iPad's auto correct. I had meant 
to specifically acknowledge my appreciation to Todd Fabacher and Digital 
Pomegranate for taking on this project. My iPad changed the first word to 
"good". Gotta be careful to read what I type. 

Anyway, thanks, Todd. Wonderful contribution.
Bill

William Prothero
http://es.earthednet.org

> On Oct 12, 2016, at 7:12 AM, Earthednet-wp  wrote:
> 
> Good, that is awesome! I'm excited!
> Bill
> 
> William Prothero
> http://es.earthednet.org
> 
>> On Oct 12, 2016, at 5:00 AM, Todd Fabacher  wrote:
>> 
>> Hello Martin and Bill and other educators,
>> 
>> Actually we have been diligent little elves working away since the hangout
>> meeting.  Based on research, we have decided to focus on 2 interchange
>> formats: LTI and xAPI [from TinCan and SCORM].
>> 
>> We would like in the near future to have another online meetup where we can
>> share our findings and hopefully create a path where everyone can work
>> together to get to our destination quicker. There was a desire to see this
>> move forward at the meeting, but most had limited resources to commit.
>> 
>> So, Digital Pomegranate will supply the resources, time and money to script
>> a LiveCode Import/Export interface to LTI and xAPI based Apps. Richard
>> suggested the MIT Open Source license model as the best option for the
>> community and we all fully agreed.  We are currently learning all we can
>> about the formats, the best way to organize them in LiveCode and how to
>> translate the API calls to an easy LiveCode syntax. Since we are not
>> experts and in actuality know little of these APIs, we need 2-3 weeks to
>> begin to create the middleware.
>> 
>> Any help or suggestions would be appreciated. Also, if ANYONE has a system
>> which we can run query test on that would help us out greatly.
>> 
>> 
>> --Todd, William and the Digital Pomegranate Team
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your subscription 
>> preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: iOS Background Audio rejection.

2016-10-12 Thread Mike Kerner
Why can't you edit the plist file?  I'm pretty sure I have done it in 8 and
I think 8.1, too.

On Tue, Oct 11, 2016 at 5:52 PM, Ralph DiMola 
wrote:

> Randy,
> Thanks!
>
> I'll just make those folders read/write and make the edits. I did not
> realize that the "background audio" option sets UIBackgroundModes key to
> "audio".
>
> Ralph DiMola
> IT Director
> Evergreen Information Services
> rdim...@evergreeninfo.net
> Phone: 518-636-3998 Ex:11
> Cell: 518-796-9332
>
>
> -Original Message-
> From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On
> Behalf Of Randy Hengst
> Sent: Tuesday, October 11, 2016 5:04 PM
> To: How to use LiveCode
> Subject: Re: iOS Background Audio rejection.
>
> I'm still using the same hack on LC8.1 that I used in 7.x. And, it seems
> to work fine with the updates I've sent to apple after iOS 10. I've not
> checked the background audio you mentioned.
>
> be well,
> randy
> www.classroomFocusedSoftware.com
>
> > On Oct 11, 2016, at 3:49 PM, Ralph DiMola 
> wrote:
> >
> > Yes, I checked it because you can't edit the plist files anymore. I
> wanted to delete the "exit on suspend" key. The startup of the app take
> some time(3-6 seconds). When the user returns to the app I want it
> instantly in the same state as when the user left. I know I could save the
> state but just loading the stack and the engine initializing takes too
> long. I've been using the plist hack for years now without any rejections.
> I wonder if ticking the background audio box does more than delete then
> "exit on suspend" key?
> >
> > Thanks
> >
> > Ralph DiMola
> > IT Director
> > Evergreen Information Services
> > rdim...@evergreeninfo.net
> >
> >
> > -Original Message-
> > From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On
> Behalf Of Colin Holgate
> > Sent: Tuesday, October 11, 2016 4:01 PM
> > To: How to use LiveCode
> > Subject: Re: iOS Background Audio rejection.
> >
> > Are you saying that you did check the “Background Audio” box? That would
> be the reason Apple are asking. Why was it you checked that box?
> >
> >
> >> On Oct 11, 2016, at 12:50 PM, Ralph DiMola 
> wrote:
> >>
> >> I just got an Apple rejection with this question.
> >>
> >> -
> >> We began the review of your app but aren't able to continue because we
> need additional information about your app.
> >>
> >> - What features in your app use Background Audio?
> >> 
> >>
> >> I used to just delete the "exit on suspend" key using the plist hack. I
> thought that ticking the "Background Audio box" would do the same. Is there
> another key that is in the plist causing Apple to ask this question?
> >>
> >> Thanks for any help on this.
> >>
> >> Ralph DiMola
> >
> > ___
> > use-livecode mailing list
> > use-livecode@lists.runrev.com
> > Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> > http://lists.runrev.com/mailman/listinfo/use-livecode
> >
> >
> > ___
> > use-livecode mailing list
> > use-livecode@lists.runrev.com
> > Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> > http://lists.runrev.com/mailman/listinfo/use-livecode
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>



-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Subject: Re: LiveCode interface to SCORM /LTI

2016-10-12 Thread Earthednet-wp
Good, that is awesome! I'm excited!
Bill

William Prothero
http://es.earthednet.org

> On Oct 12, 2016, at 5:00 AM, Todd Fabacher  wrote:
> 
> Hello Martin and Bill and other educators,
> 
> Actually we have been diligent little elves working away since the hangout
> meeting.  Based on research, we have decided to focus on 2 interchange
> formats: LTI and xAPI [from TinCan and SCORM].
> 
> We would like in the near future to have another online meetup where we can
> share our findings and hopefully create a path where everyone can work
> together to get to our destination quicker. There was a desire to see this
> move forward at the meeting, but most had limited resources to commit.
> 
> So, Digital Pomegranate will supply the resources, time and money to script
> a LiveCode Import/Export interface to LTI and xAPI based Apps. Richard
> suggested the MIT Open Source license model as the best option for the
> community and we all fully agreed.  We are currently learning all we can
> about the formats, the best way to organize them in LiveCode and how to
> translate the API calls to an easy LiveCode syntax. Since we are not
> experts and in actuality know little of these APIs, we need 2-3 weeks to
> begin to create the middleware.
> 
> Any help or suggestions would be appreciated. Also, if ANYONE has a system
> which we can run query test on that would help us out greatly.
> 
> 
> --Todd, William and the Digital Pomegranate Team
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


RE: iOS Background Audio rejection.

2016-10-12 Thread Ralph DiMola
The iOS device folders are now read-only. I set them to read/write and edited 
the plist files. The background audio setting seemed the easier path but set 
another key also that raised Apples eyebrows and got me rejected.

Ralph DiMola
IT Director
Evergreen Information Services
rdim...@evergreeninfo.net

-Original Message-
From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of 
Mike Kerner
Sent: Wednesday, October 12, 2016 8:21 AM
To: How to use LiveCode
Subject: Re: iOS Background Audio rejection.

Why can't you edit the plist file?  I'm pretty sure I have done it in 8 and I 
think 8.1, too.

On Tue, Oct 11, 2016 at 5:52 PM, Ralph DiMola 
wrote:

> Randy,
> Thanks!
>
> I'll just make those folders read/write and make the edits. I did not 
> realize that the "background audio" option sets UIBackgroundModes key 
> to "audio".
>
> Ralph DiMola
> IT Director
> Evergreen Information Services
> rdim...@evergreeninfo.net
> Phone: 518-636-3998 Ex:11
> Cell: 518-796-9332
>
>
> -Original Message-
> From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On 
> Behalf Of Randy Hengst
> Sent: Tuesday, October 11, 2016 5:04 PM
> To: How to use LiveCode
> Subject: Re: iOS Background Audio rejection.
>
> I'm still using the same hack on LC8.1 that I used in 7.x. And, it 
> seems to work fine with the updates I've sent to apple after iOS 10. 
> I've not checked the background audio you mentioned.
>
> be well,
> randy
> www.classroomFocusedSoftware.com
>
> > On Oct 11, 2016, at 3:49 PM, Ralph DiMola 
> > 
> wrote:
> >
> > Yes, I checked it because you can't edit the plist files anymore. I
> wanted to delete the "exit on suspend" key. The startup of the app 
> take some time(3-6 seconds). When the user returns to the app I want 
> it instantly in the same state as when the user left. I know I could 
> save the state but just loading the stack and the engine initializing 
> takes too long. I've been using the plist hack for years now without any 
> rejections.
> I wonder if ticking the background audio box does more than delete 
> then "exit on suspend" key?
> >
> > Thanks
> >
> > Ralph DiMola
> > IT Director
> > Evergreen Information Services
> > rdim...@evergreeninfo.net
> >
> >
> > -Original Message-
> > From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On
> Behalf Of Colin Holgate
> > Sent: Tuesday, October 11, 2016 4:01 PM
> > To: How to use LiveCode
> > Subject: Re: iOS Background Audio rejection.
> >
> > Are you saying that you did check the “Background Audio” box? That 
> > would
> be the reason Apple are asking. Why was it you checked that box?
> >
> >
> >> On Oct 11, 2016, at 12:50 PM, Ralph DiMola 
> >> 
> wrote:
> >>
> >> I just got an Apple rejection with this question.
> >>
> >> -
> >> We began the review of your app but aren't able to continue because 
> >> we
> need additional information about your app.
> >>
> >> - What features in your app use Background Audio?
> >> 
> >>
> >> I used to just delete the "exit on suspend" key using the plist 
> >> hack. I
> thought that ticking the "Background Audio box" would do the same. Is 
> there another key that is in the plist causing Apple to ask this question?
> >>
> >> Thanks for any help on this.
> >>
> >> Ralph DiMola
> >
> > ___
> > use-livecode mailing list
> > use-livecode@lists.runrev.com
> > Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> > http://lists.runrev.com/mailman/listinfo/use-livecode
> >
> >
> > ___
> > use-livecode mailing list
> > use-livecode@lists.runrev.com
> > Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> > http://lists.runrev.com/mailman/listinfo/use-livecode
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your 
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your 
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>



--
On the first day, God created the heavens and the Earth On the second day, God 
created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode



Re: beepsound on iOS

2016-10-12 Thread John Dixon
Are you supplying a sound file for the beepsound to play ?... as in...

set the beepSound to specialFolderPath("engine") & "/shortbeep.aiff"




From: use-livecode  on behalf of Terry 
Judd 
Sent: 12 October 2016 04:24
To: How to use LiveCode
Subject: Re: beepsound on iOS

Not quite answering my own question but there might be an interaction with 
mergeAV involved (I'm trying to provide a bit of audio/tactile feedback after a 
QR code is recognised) as the beep seems to sort of work (vibrates but doesn't 
beep) on a previous card before mergeAV is initialized.

Terry...

From: Terry Judd 
Date: Wednesday, 12 October 2016 1:27 pm
To: How to use LiveCode 
Subject: beepsound on iOS

I'm trying to play a simple beep on iOS by setting the beepsound (to either 
"system" or "vibrate") and calling beep, but I'm getting nothing. If I place 
the code in a try/catch statement then the returned error is '535,4,1'. Any 
ideas on what might be going wrong here?

Terry...
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode
Runtime Revolution - use-livecode Mailing 
List
lists.runrev.com
This mailing list is intended for discussion relating to using LiveCode. To see 
the collection of prior postings to the list, visit the use-livecode Archives

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


iOS browser widget : prevent scroll bouncing ?

2016-10-12 Thread Yann Le Bihan
Hi all,

For the needs of my current project, the browser widget is used a lot for the 
UI and should not have the default scroll bouncing behaviour, which doesn't 
make it feel "app-like" enough.

I tried some classical javascript/css approaches that work well on web pages 
(preventing default on the touchmove event, setting the body's position to 
"fixed") but with no success, neither did I find an answer in the various 
LiveCode sources I searched. All I know for the moment is that the iOS API 
allows to disable this feature, since a Unity mobile webview plugin I own does 
it by default.

Would anybody know if there is a solution to have this control stay in place 
whatever the scrolling gestures, and handle those events only for interacting 
with the content ?

Thanks very much in advance,

Yann Le Bihan
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Keep taking the tablets

2016-10-12 Thread Richmond
I have a Nextbook Android tablet (Jelly Bean) that was dropped on me by 
my wife
when I bought her a MacBook Air; and, frankly, tablets make me think of 
plastic bath-toys.


So, I was wondering about rejigging it with Ubuntu-phone . . .

1. Does anyone know if the Raspberry Pi version of Livecode will work on 
Ubuntu-phone?


2. As Ubuntu-phone is a Linux variant designed to run on an ARM 
processor, as Android is,
also a Linux variant for an ARM processor, does anyone know if 
standalones built for:


2.1. Android, will run on Ubuntu-phone?

2.2. Linux . . .? [presumably the answer to this is 'No' as, currently, 
Livecode offers Linux standalones for

Intel processors only.

Richmond.

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Keep taking the tablets

2016-10-12 Thread Roger Eller
On Wed, Oct 12, 2016 at 11:52 AM, Richmond 
wrote:

> I have a Nextbook Android tablet (Jelly Bean) that was dropped on me by my
> wife
> when I bought her a MacBook Air; and, frankly, tablets make me think of
> plastic bath-toys.
>
> So, I was wondering about rejigging it with Ubuntu-phone . . .
>
> 1. Does anyone know if the Raspberry Pi version of Livecode will work on
> Ubuntu-phone?
>
> 2. As Ubuntu-phone is a Linux variant designed to run on an ARM processor,
> as Android is,
> also a Linux variant for an ARM processor, does anyone know if standalones
> built for:
>
> 2.1. Android, will run on Ubuntu-phone?
>
> 2.2. Linux . . .? [presumably the answer to this is 'No' as, currently,
> Livecode offers Linux standalones for
> Intel processors only.
>
> Richmond.
>
>
I would guess no.  But that doesn't mean you can't have some LiveCode fun
with it.  Create an Android standalone that has a large text field and an
"Execute" button that contains - do field "fieldName".  Your field is now a
basic script editor.  If your build included all of the lc libraries, there
should be very little that you can't do.  Oh, you might also want a Load
and Save script button.

~Roger
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode