RE: Hard case

2021-08-12 Thread Ralph DiMola via use-livecode
How do we create Google PlayStore App bundles?

>From PlayStore...

New Android App Bundle and target API level requirements in 2021

Starting August 2021, new apps will be required to target API level 30 (Android 
11) and use the Android App Bundle publishing format. Starting November 2021, 
all app updates will be required to target API level 30 (Android 11). This will 
replace the APK as the standard publishing format. 

Apps with a download size of more than 150 MB are now supported by Play Asset 
Delivery and Play Feature Delivery. 

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: Hard case

2021-08-12 Thread matthias rebbe via use-livecode
Ah, i see.

While testing Richmonds expression i tested also some other expressions i 
wanted to know if they work in a switch statement. Therefore i used the answer 
dialog to see, which case was 'executed'.



> Am 12.08.2021 um 15:46 schrieb Craig Newman via use-livecode 
> :
> 
> Hi.
> 
> The parentheses around your case statement:
> 
> case (xitem contains "@“)
> 
> are fine, though unnecessary, unless you just like them for readability.
> 
> I just wanted to point out that in the line:
> 
>> answer "xItem contains @"
> 
> The quotes are not merely superfluous, rather, they must not be there at all.
> 
> Craig
> 
>> On Aug 12, 2021, at 8:44 AM, Craig Newman  wrote:
>> 
>>> answer "xItem contains @"
> 
> ___
> 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: Hard case

2021-08-12 Thread Craig Newman via use-livecode
Hi.

The parentheses around your case statement:

case (xitem contains "@“)

are fine, though unnecessary, unless you just like them for readability.

I just wanted to point out that in the line:

> answer "xItem contains @"

The quotes are not merely superfluous, rather, they must not be there at all.

Craig

> On Aug 12, 2021, at 8:44 AM, Craig Newman  wrote:
> 
>> answer "xItem contains @"

___
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: Hard case

2021-08-12 Thread matthias rebbe via use-livecode

With my sample script i  just wanted to show to Richmond  that

case (xitem contains "@")

definitely works. Or did i misread his post?





> Am 12.08.2021 um 14:44 schrieb Craig Newman via use-livecode 
> :
> 
> You must not include quotes in the answer line. That will always simply 
> return the string "xItem contains @“
> But losing those quotes does indeed return “true”.
> 
> Craig
> 
>> On Aug 12, 2021, at 6:24 AM, matthias rebbe via use-livecode 
>>  wrote:
>> 
>> 
>> put "@ " into xItem
>> 
>> switch
>> 
>> case (xItem contains "@")
>> 
>> answer "xItem contains @"
>> 
>> break
>> 
>> end switch
> 
> ___
> 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: Hard case

2021-08-12 Thread Craig Newman via use-livecode
You must not include quotes in the answer line. That will always simply return 
the string "xItem contains @“
But losing those quotes does indeed return “true”.

Craig

> On Aug 12, 2021, at 6:24 AM, matthias rebbe via use-livecode 
>  wrote:
> 
> 
> put "@ " into xItem
> 
> switch
> 
> case (xItem contains "@")
> 
> answer "xItem contains @"
> 
> break
> 
> end switch

___
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: Hard case

2021-08-12 Thread matthias rebbe via use-livecode
This script here

put "@ " into xItem

switch

case (xItem contains "@")

answer "xItem contains @"

break

end switch


definitely shows up the answer dialog. 



> Am 12.08.2021 um 12:00 schrieb Richmond via use-livecode 
> mailto:use-livecode@lists.runrev.com>>:
> 
> This sort of thing does not seem to be working:
> 
> case (XITEM contains "@")
> 
> 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

___
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


Hard case

2021-08-12 Thread Richmond via use-livecode

This sort of thing does not seem to be working:

case (XITEM contains "@")

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