Re: android heads up

2018-07-18 Thread Mark Wieder via use-livecode

On 07/18/2018 10:28 PM, Richard Gaskin via use-livecode wrote:


Damn!  I was about to launch my new malware app, "Android OS Update".

I guess I'll have to figure out some other nefarious plan to take over 
the world


;)



I'm sure you'll think of something. 

--
 Mark Wieder
 ahsoftw...@gmail.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

Re: android heads up

2018-07-18 Thread Richard Gaskin via use-livecode

Mark Wieder wrote:

> I just got notice in another usegroup that Google has restricted the
> use of "android" as part of the package name. If you are using the
> "android" as part of your package name or thinking about it for an new
> app, you probably want to change it now.

Damn!  I was about to launch my new malware app, "Android OS Update".

I guess I'll have to figure out some other nefarious plan to take over 
the world


;)

--
 Richard Gaskin
 Fourth World Systems
 Software Design and Development for the Desktop, Mobile, and the Web
 
 ambassa...@fourthworld.comhttp://www.FourthWorld.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


android heads up

2018-07-18 Thread Mark Wieder via use-livecode

FYI:

I just got notice in another usegroup that Google has restricted the use 
of "android" as part of the package name. If you are using the "android" 
as part of your package name or thinking about it for an new app, you 
probably want to change it now.


--
 Mark Wieder
 ahsoftw...@gmail.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


Re: Datagrids and Nested Behaviors

2018-07-18 Thread Tom Glod via use-livecode
Hi Bob, If you really wanna make things interesting . try putting a
grid inside a grid. lol. it almost works.  Which means to me that
"self referencing" is imperfect in the grid library.  that might pertain to
the problems you experience and without the ability to debug the grid
library...its tough going.  But i think I have learned that sometimes when
i find i can't just get something righti end up finding a way easier
way later..hope thats the case for you,

On Mon, Jul 9, 2018 at 2:11 PM, Bob Sneidar via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Hi all.
>
> I'm finally taking the plunge with nested behaviors with datagrids.
> Essentially, I have a button named "modulegrids" whose behavior is set to
> stack "RevDataGridLibraryBehaviorsDataGridButtonBehavior" (the new
> default behavior of a datagrid). I then set the behavior of a datagrid to
> the long id of that button. The behaviors are triggering alright, but
> selectionChanged is not *actually" changing the selection, and calls to the
> library such as the dgHiliedIndex of the datagrid return empty.
>
> So my question is, can behaviors be nested for datagrids?
>
> Bob S
>
>
> ___
> 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: TextAlign not working in fields

2018-07-18 Thread Niggemann, Bernd via use-livecode
Hi Paul,

I hope that Edinburgh will fix the problem.

In the meantime you could try this workaround for your sample stack from QCC.

make a button with this script and use it whenever you change  textAlign or 
width of field "Cloud"

Here I assume you are using margins of 8.

---
on mouseUp
   lock screen
   set the margins of field "Cloud" to 8
   set the hScroll of field "Cloud" to 0
   put the left of field "Cloud" into tLeft
   put the leftMargin of field "Cloud" into tLeftM
   put the formattedRect of line 1 to -1 of field "Cloud" into tRect
   if item 1 of tRect < tLeft + tLeftM then
  subtract tLeft from item 1 of tRect
  set the leftMargin of field "Cloud" to item 1 of tRect * -1 + tLeftM * 2
  set the rightMargin of field "Cloud" to item 1 of tRect
   end if
   unlock screen
end mouseUp
---

I know it sounds weird but it worked for your sample stack.

Kind regards
Bernd


Paul Dupuis wrote:

I filed a bug yesterday: https://quality.livecode.com/show_bug.cgi?id=21426

This seems to me to be a pretty serious bug, however, Panos enlightened
me that there is a nearly identical bug from 2013 (see
https://quality.livecode.com/show_bug.cgi?id=11345). This bug - namely
if you have a long line of text in a field, whether wrap is on or off,
scrolling does not work as expected when the text is center or right
aligned. You can not scroll to see all the text. It is rendered outside
the boundaries of the scrollable areas of the field!

___
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: TextAlign not working in fields

2018-07-18 Thread Tom Glod via use-livecode
i tested the sample stack and it seemed to work fine in 9 ...alignment
worked as expected. win 10 / lc 9.0... hope it gets fixed soon seems like a
major one for some people.

On Wed, Jul 18, 2018 at 2:13 PM, dunbarxx via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Hi.
>
> I made a field with lots of long lines of text in it. I set the align all
> over the place. Both vertical and horizontal scrolling seem to work
> smoothly
> all the way from beginning to end.
>
> I read the bug report. Can you give an explicit recipe?
>
> Mac OS 10.13  LC 8.1.9
>
> Craig Newman
>
>
>
> --
> Sent from: http://runtime-revolution.278305.n4.nabble.com/
> Revolution-User-f278306.html
>
> ___
> 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: TextAlign not working in fields

2018-07-18 Thread dunbarxx via use-livecode
Hi.

I made a field with lots of long lines of text in it. I set the align all
over the place. Both vertical and horizontal scrolling seem to work smoothly
all the way from beginning to end.

I read the bug report. Can you give an explicit recipe?

Mac OS 10.13  LC 8.1.9

Craig Newman



--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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 12 compatibility (panagiotis merakos)

2018-07-18 Thread Andrew Bell via use-livecode
Based on the fact that my apps are still crashing on load in iOS 12  
beta 4 (16A5327f) I can only assume that Fortnite was NOT written in  
Livecode ;)


--Andrew Bell



From: panagiotis merakos 
To: How to use LiveCode 
Subject: Re: iOS 12 compatibility
Message-ID:

Content-Type: text/plain; charset="UTF-8"

BTW Fortnite app seems to have suffered from a similar problem on iOS 12,
and a user on Reddit said that this was fixed on iOS 12 beta 4. Fingers
crossed :)

Best,
Panos
--

On Wed, Jul 18, 2018 at 8:37 AM, panagiotis merakos 
wrote:


Hi all,

iOS 12 beta 4 is out today. I will install it on our test device and have
a play tomorrow. If anyone tries it sooner, please post your results here :)

Best regards,
Panos
--



___
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: How to create a QR Code Version 14 (73x73modules)

2018-07-18 Thread Bob Sneidar via use-livecode
And the Brits thought THEY were the clever ones! 

Bob S


> On Jul 17, 2018, at 17:47 , J. Landman Gay via use-livecode 
>  wrote:
> 
> He's my hero too. He just fixed a JSON crasher that only happened on Android 
> 6.x. Clever.
> 
> --
> 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


TextAlign not working in fields

2018-07-18 Thread Paul Dupuis via use-livecode
LC Community:

I filed a bug yesterday: https://quality.livecode.com/show_bug.cgi?id=21426

This seems to me to be a pretty serious bug, however, Panos enlightened
me that there is a nearly identical bug from 2013 (see
https://quality.livecode.com/show_bug.cgi?id=11345). This bug - namely
if you have a long line of text in a field, whether wrap is on or off,
scrolling does not work as expected when the text is center or right
aligned. You can not scroll to see all the text. It is rendered outside
the boundaries of the scrollable areas of the field!

This bug has apparently been present since at least version 6.7.11 and
perhaps earlier and yet is still present in LiveCode 9.

Without starting a general thread on how good or not good LiveCode is at
fixing bugs (personally I think they do a fine job with limited
resources), I am asking whether others have run into these bugs and what
you may have done for a work-around?

In my specific case, we are creating a "frequency" cloud (or work cloud)
where certain words/phrases are shown in larger text relative to how
offten they occur. This looks best when the text is one long lone,
wrapped and centered. If you look at the sample stack for bug 21426 with
the text centered (there is a button for that) and resize large so all
the text fits, you'll see what it (should) look like.

Does any one else need this bug fixed?



___
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: How to create a QR Code Version 14 (73x73modules)

2018-07-18 Thread Matthias Rebbe via use-livecode
I´ve filed an enhancement request now 
 and attached the patched 
library file and an updated api.lcdoc  with 2 additional examples to the 
request.


Matthias




> Am 18.07.2018 um 02:13 schrieb Matthias Rebbe via use-livecode 
> :
> 
> Monte,
> 
> you are my hero. :)
> 
> I´ve changed line 1486 to 
> command qrCreate pImg, pData, pECC, pSize, pMask, pMinVersion, pMaxVersion
> 
> and changed the line 1525  from 
> repeat with tVersion = 1 to 40
> to
> if pMinVersion is empty then put 1 into pMinVersion
> if pMaxVersion is empty then put 40 into pMaxVersion
> repeat with tVersion = pMinVersion to pMaxVersion
> 
> It´s working! ! ! 
> 
> I will open an enhancement report tomorrow afternoon and will add my patch 
> after i´ve added some additional code for error handling in case pMinVersion 
> is greater than pMaxVersion or if pMaxVersion >40 and so on.
> 
> Thank you very much. 
> 
> Matthias
> 
> 
>> Am 18.07.2018 um 01:29 schrieb Monte Goulding via use-livecode 
>> :
>> 
>> Hi Matthias
>> 
>> This looks like a relatively easy patch to make. Probably adding min version 
>> and max version optional parameters which default to 1 and 40 then using 
>> those in the loop to find the min version at line 1525 of the script. Then 
>> you just use 14,14 for the parameters.
>> 
>> It would be great if you would open an enhancement report and if so inclined 
>> contribute the patch in case others hit the same requirement.
>> 
>> Cheers
>> 
>> Monte
>> 
>>> On 18 Jul 2018, at 8:20 am, Matthias Rebbe via use-livecode 
>>>  wrote:
>>> 
>>> Hi.
>>> 
>>> My app needs to create qr codes. This is not a problem so far, as 
>>> Splash21´s  qrCode library is now included in Livecode.
>>> 
>>> My problem is that i need to create qr Codes with exact version 14, which 
>>> has a matrix size of 73 x 73. The customer needs exact that kind of code. 
>>> The codes are scanned by a parcel service and the tech papers of the parcel 
>>> service note exact those requirements.
>>> 
>>> As the  qrCode library in LC automatically decides according to the number 
>>> and types of the characters, what version is used for creation, i am not 
>>> sure if this is even possible. But is there a way to create just version 14 
>>> codes regardless of the number of character? Maybe with a modified library?
>>> 
>>> Regards,
>>> 
>>> Matthias
>>> 
>>> 
>>> ___
>>> 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

Re: how to refresh LC IDE dictionary after i changed a api.lcdoc file?

2018-07-18 Thread panagiotis merakos via use-livecode
Hi Matthias,

Not sure if this will work, but try deleting the Documentation Cache folder
of the LC version you modified:

/Users//Library/Application Support/RunRev/Documentation Cache/ ..

Best,
Panos
--

On Wed, Jul 18, 2018 at 10:51 AM, Matthias Rebbe via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Hi,
>
> i changed some information in an api.lcdoc file of an extension. In my
> case i added some additional examples. Each new example with a leading
> “Example:” tag.
> How do i get that new information displayed in the dictionary. Even after
> a restart of LC i just see the old information, but not the updated one.
> Do i have to refresh the dictionary cache or what ever in some way?
>
> Regards,
>
> Matthias
>
>
> ___
> 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

how to refresh LC IDE dictionary after i changed a api.lcdoc file?

2018-07-18 Thread Matthias Rebbe via use-livecode
Hi,

i changed some information in an api.lcdoc file of an extension. In my case i 
added some additional examples. Each new example with a leading  “Example:” 
tag.  
How do i get that new information displayed in the dictionary. Even after a 
restart of LC i just see the old information, but not the updated one.
Do i have to refresh the dictionary cache or what ever in some way?

Regards,

Matthias


___
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 12 compatibility

2018-07-18 Thread panagiotis merakos via use-livecode
BTW Fortnite app seems to have suffered from a similar problem on iOS 12,
and a user on Reddit said that this was fixed on iOS 12 beta 4. Fingers
crossed :)

Best,
Panos
--

On Wed, Jul 18, 2018 at 8:37 AM, panagiotis merakos 
wrote:

> Hi all,
>
> iOS 12 beta 4 is out today. I will install it on our test device and have
> a play tomorrow. If anyone tries it sooner, please post your results here :)
>
> Best regards,
> Panos
> --
>
> On Wed, Jul 4, 2018 at 6:24 PM, Colin Holgate via use-livecode <
> use-livecode@lists.runrev.com> wrote:
>
>> Beta 3 of iOS 12 came out today. Apps still crash.
>>
>>
>> > On Jul 4, 2018, at 2:16 AM, panagiotis merakos 
>> wrote:
>> >
>> > Thanks for the update @Colin
>> >
>> > For anyone interested, I just filed a bug report:
>> >
>> > https://quality.livecode.com/show_bug.cgi?id=21396 <
>> https://quality.livecode.com/show_bug.cgi?id=21396>
>> >
>> > Best,
>> > Panos
>> > --
>> >
>> > On Tue, Jul 3, 2018 at 11:16 PM, Colin Holgate via use-livecode <
>> use-livecode@lists.runrev.com >
>> wrote:
>> > Skype also crashes. With Adobe AIR apps a current app crashes, but one
>> from
>> > four years ago doesn’t. Hopefully Apple will fix things.
>> >
>> > On Tue, Jul 3, 2018 at 1:53 PM panagiotis merakos via use-livecode <
>> > use-livecode@lists.runrev.com >
>> wrote:
>> >
>> > > Hello Andrew,
>> > >
>> > > No we did not have a chance to look at it yet, but we are aware of the
>> > > issue. I think I had filed a bug report a week ago, I'll double check
>> and
>> > > let you know.
>> > >
>> > > Best
>> > > Panos
>> > > --
>> > >
>> > > On Tue, Jul 3, 2018, 21:34 Andrew Bell via use-livecode <
>> > > use-livecode@lists.runrev.com >
>> wrote:
>> > >
>> > > > Had my first customer complaint about the app not working on their
>> > > > device running the iOS 12 beta. Luckily I was able to point to a
>> blog
>> > > > post about how Fortnite also crashes under iOS 12 and explained how
>> > > > their development budget is WAY larger to buy some time ;)
>> > > >
>> > > > Has the mothership had a chance to investigate this and/or should I
>> > > > submit a report to bugzilla?
>> > > >
>> > > > --Andrew Bell
>> > > >
>> > > > > Date: Tue, 26 Jun 2018 17:45:42 +0100
>> > > > > From: panagiotis merakos > merak...@gmail.com>>
>> > > > > To: How to use LiveCode > use-livecode@lists.runrev.com>>
>> > > > > Cc: and...@midwestcoastmedia.com > ia.com>
>> > > > > Subject: Re: iOS 12 compatibility
>> > > > > Message-ID:
>> > > > >   <
>> > > > ca+jfeq8+1ptdywsvsa0xk6asrdcqnrk8v+9xtbyod5ufdyv...@mail.gmail.com
>> > yv...@mail.gmail.com>>
>> > > > > Content-Type: text/plain; charset="UTF-8"
>> > > > >
>> > > > > Hi Andrew,
>> > > > >
>> > > > > oh what fun!
>> > > > >
>> > > > > I will install iOS 12 beta in one of our office devices and
>> investigate
>> > > > > tomorrow. After a quick google search it seems that other non-LC
>> apps
>> > > > crash
>> > > > > on startup on iOS 12 beta, so probably Apple has changed
>> something.
>> > > > >
>> > > > > BTW what version of LC / MacOS/ Xcode did you use to build the
>> > > > > standalone(s)?
>> > > > >
>> > > > > Best,
>> > > > > Panos
>> > > > > --
>> > > >
>> > > >
>> > > >
>> > > > ___
>> > > > 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 <
>> 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 <
>> 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 <
>> 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, unsubs

Re: iOS 12 compatibility

2018-07-18 Thread panagiotis merakos via use-livecode
Hi all,

iOS 12 beta 4 is out today. I will install it on our test device and have a
play tomorrow. If anyone tries it sooner, please post your results here :)

Best regards,
Panos
--

On Wed, Jul 4, 2018 at 6:24 PM, Colin Holgate via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Beta 3 of iOS 12 came out today. Apps still crash.
>
>
> > On Jul 4, 2018, at 2:16 AM, panagiotis merakos 
> wrote:
> >
> > Thanks for the update @Colin
> >
> > For anyone interested, I just filed a bug report:
> >
> > https://quality.livecode.com/show_bug.cgi?id=21396 <
> https://quality.livecode.com/show_bug.cgi?id=21396>
> >
> > Best,
> > Panos
> > --
> >
> > On Tue, Jul 3, 2018 at 11:16 PM, Colin Holgate via use-livecode <
> use-livecode@lists.runrev.com >
> wrote:
> > Skype also crashes. With Adobe AIR apps a current app crashes, but one
> from
> > four years ago doesn’t. Hopefully Apple will fix things.
> >
> > On Tue, Jul 3, 2018 at 1:53 PM panagiotis merakos via use-livecode <
> > use-livecode@lists.runrev.com >
> wrote:
> >
> > > Hello Andrew,
> > >
> > > No we did not have a chance to look at it yet, but we are aware of the
> > > issue. I think I had filed a bug report a week ago, I'll double check
> and
> > > let you know.
> > >
> > > Best
> > > Panos
> > > --
> > >
> > > On Tue, Jul 3, 2018, 21:34 Andrew Bell via use-livecode <
> > > use-livecode@lists.runrev.com >
> wrote:
> > >
> > > > Had my first customer complaint about the app not working on their
> > > > device running the iOS 12 beta. Luckily I was able to point to a blog
> > > > post about how Fortnite also crashes under iOS 12 and explained how
> > > > their development budget is WAY larger to buy some time ;)
> > > >
> > > > Has the mothership had a chance to investigate this and/or should I
> > > > submit a report to bugzilla?
> > > >
> > > > --Andrew Bell
> > > >
> > > > > Date: Tue, 26 Jun 2018 17:45:42 +0100
> > > > > From: panagiotis merakos  merak...@gmail.com>>
> > > > > To: How to use LiveCode  use-livecode@lists.runrev.com>>
> > > > > Cc: and...@midwestcoastmedia.com  midwestcoastmedia.com>
> > > > > Subject: Re: iOS 12 compatibility
> > > > > Message-ID:
> > > > >   <
> > > > ca+jfeq8+1ptdywsvsa0xk6asrdcqnrk8v+9xtbyod5ufdyv...@mail.gmail.com
>  2b9xtbyod5ufdyv...@mail.gmail.com>>
> > > > > Content-Type: text/plain; charset="UTF-8"
> > > > >
> > > > > Hi Andrew,
> > > > >
> > > > > oh what fun!
> > > > >
> > > > > I will install iOS 12 beta in one of our office devices and
> investigate
> > > > > tomorrow. After a quick google search it seems that other non-LC
> apps
> > > > crash
> > > > > on startup on iOS 12 beta, so probably Apple has changed something.
> > > > >
> > > > > BTW what version of LC / MacOS/ Xcode did you use to build the
> > > > > standalone(s)?
> > > > >
> > > > > Best,
> > > > > Panos
> > > > > --
> > > >
> > > >
> > > >
> > > > ___
> > > > 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 <
> 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 <
> 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 <
> 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