Mobile Browser overlays

2013-01-23 Thread Ralph DiMola
I am trying to overlay a field on a browser control. It's my LC version of
Android toast. I can't see the field even if I set its layer to top. Both
Android and iOS do the same thing. Did I miss something or this not
possible?

Thanks.

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


___
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: Mobile Browser overlays

2013-01-23 Thread Monte Goulding
Do you mean a livecode field or a native one? All livecode objects are in a 
view that is below the native views. You can layer multiple native views on top 
though.

Cheers

Monte

On 24/01/2013, at 3:16 PM, "Ralph DiMola"  wrote:

> I am trying to overlay a field on a browser control. It's my LC version of
> Android toast. I can't see the field even if I set its layer to top. Both
> Android and iOS do the same thing. Did I miss something or this not
> possible?
> 
> Thanks.
> 
> Ralph DiMola
> IT Director
> Evergreen Information Services
> rdim...@evergreeninfo.net
> 
> 
> ___
> 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

--
Monte Goulding

M E R Goulding - software development services
mergExt - There's an external for that!





___
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: Mobile Browser overlays

2013-01-23 Thread Ralph DiMola
Monte,

I was using a livecode field object. This worked on every card except for
the one with the native browser. I will use a native input object and set to
read-only. Is the layer position determined solely by the order they are
created? And I guess there is no transparency possible either.

Thanks!

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 Monte Goulding
Sent: Wednesday, January 23, 2013 11:35 PM
To: How to use LiveCode
Subject: Re: Mobile Browser overlays

Do you mean a livecode field or a native one? All livecode objects are in a
view that is below the native views. You can layer multiple native views on
top though.

Cheers

Monte

On 24/01/2013, at 3:16 PM, "Ralph DiMola"  wrote:

> I am trying to overlay a field on a browser control. It's my LC 
> version of Android toast. I can't see the field even if I set its 
> layer to top. Both Android and iOS do the same thing. Did I miss 
> something or this not possible?
> 
> Thanks.
> 
> Ralph DiMola
> IT Director
> Evergreen Information Services
> rdim...@evergreeninfo.net
> 
> 
> ___
> 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

--
Monte Goulding

M E R Goulding - software development services mergExt - There's an external
for that!





___
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: Mobile Browser overlays

2013-01-23 Thread Monte Goulding
> I will use a native input object and set to

> read-only. Is the layer position determined solely by the order they are
> created?

Yep

> And I guess there is no transparency possible either.


Yes, backgroundColor has an alpha channel.

Cheers

--
M E R Goulding 
Software development services
Bespoke application development for vertical markets

mergExt - There's an external for that!

___
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: Mobile Browser overlays

2013-01-24 Thread Ralph DiMola
Monte,

I don't see a backgroundColor property for the native input control, just
the text color.

Thanks again for all your help!

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 Monte Goulding
Sent: Thursday, January 24, 2013 1:57 AM
To: How to use LiveCode
Subject: Re: Mobile Browser overlays

> I will use a native input object and set to

> read-only. Is the layer position determined solely by the order they 
> are created?

Yep

> And I guess there is no transparency possible either.


Yes, backgroundColor has an alpha channel.

Cheers

--
M E R Goulding
Software development services
Bespoke application development for vertical markets

mergExt - There's an external for that!

___
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: Mobile Browser overlays

2013-01-24 Thread Robert Sneidar
I tried that once and it won't work. The browser control writes directly to the 
monitor (ver od). It's not an actual object. What that means is when you 
activate the browser, it writes over and obscures all other objects on the 
screen. They all become inaccessible. 

I was trying to write a simple app that went to a URL and displayed a full 
screen of a web based streaming video for someone who was very bad with 
computers, and also had poor eyesight. The idea was, just click on the screen 
once to show the video, and again to hide it. The show part worked, but I could 
not hide it because the browser overwrote all that was on the screen, in front 
or in back. 

Bob


On Jan 23, 2013, at 8:16 PM, Ralph DiMola wrote:

> I am trying to overlay a field on a browser control. It's my LC version of
> Android toast. I can't see the field even if I set its layer to top. Both
> Android and iOS do the same thing. Did I miss something or this not
> possible?
> 
> Thanks.
> 
> Ralph DiMola
> IT Director
> Evergreen Information Services
> rdim...@evergreeninfo.net
> 
> 
> ___
> 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: Mobile Browser overlays

2013-01-24 Thread Monte Goulding
It's one of the core props for all native objects.

--
M E R Goulding
Software development services

mergExt - There's an external for that!

On 25/01/2013, at 3:23 AM, "Ralph DiMola"  wrote:

> I don't see a backgroundColor property for the native input control, just
> the text color.

___
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: Mobile Browser overlays

2013-01-24 Thread Monte Goulding
The mobile browser <> desktop browser

--
M E R Goulding
Software development services

mergExt - There's an external for that!

On 25/01/2013, at 5:06 AM, Robert Sneidar  wrote:

> I tried that once and it won't work. The browser control writes directly to 
> the monitor (ver od). It's not an actual object.

___
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: Mobile Browser overlays

2013-01-24 Thread Ralph DiMola
Is it hidden? It does not appear an either the Android or iOS release notes.
I'm using 5.5.3
I'll give it a try(mobileControlSet idOrName, "backgroundColor", "r,g,b,a")
and see what happens.

Thanks

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 Monte Goulding
Sent: Thursday, January 24, 2013 2:27 PM
To: How to use LiveCode
Subject: Re: Mobile Browser overlays

It's one of the core props for all native objects.

--
M E R Goulding
Software development services

mergExt - There's an external for that!

On 25/01/2013, at 3:23 AM, "Ralph DiMola"  wrote:

> I don't see a backgroundColor property for the native input control, 
> just the text color.

___
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: Mobile Browser overlays

2013-01-24 Thread J. Landman Gay

On 1/24/13 1:36 PM, Ralph DiMola wrote:

Is it hidden? It does not appear an either the Android or iOS release notes.
I'm using 5.5.3
I'll give it a try(mobileControlSet idOrName, "backgroundColor", "r,g,b,a")
and see what happens.


It's in the dictionary entry for mobileControlSet, near the top of the 
listed properties, but in the category "Global Properties/All native iOS 
controls". So I'm not sure if it will work on Android but as you say, 
try it.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com

___
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