Re: identifying macOS folders that are considered to be files?

2019-05-24 Thread Kee Nethery via use-livecode
Mark, Trevor, Thank you. Will test tomorrow. Will report back. Thanks again Kee Nethery > On May 24, 2019, at 6:53 PM, Mark Waddingham via use-livecode > wrote: > > I’m pretty sure bundles always have a PkgInfo file in them too - so you > should (alternatively to using LCB) use ‘there is a f

Re: Windows 64

2019-05-24 Thread Richmond via use-livecode
No worries at all: it did, after all, give me a wonderful chance to tease you a bit. Bulgaria is not a 3rd world state: it is a bit "ragged at the edges," but no more than a lot of other countries. If you want to make "big moolah" it isn't the place to be: but one can lead a perfectly decent

Re: identifying macOS folders that are considered to be files?

2019-05-24 Thread Mark Waddingham via use-livecode
I’m pretty sure bundles always have a PkgInfo file in them too - so you should (alternatively to using LCB) use ‘there is a file ...’. Warmest Regards, Mark. Sent from my iPhone > On 24 May 2019, at 18:06, Trevor DeVore via use-livecode > wrote: > > On Fri, May 24, 2019 at 7:35 PM kee nethe

Re: identifying macOS folders that are considered to be files?

2019-05-24 Thread Trevor DeVore via use-livecode
On Fri, May 24, 2019 at 7:35 PM kee nethery via use-livecode < use-livecode@lists.runrev.com> wrote: > Is there any way for LiveCode to tell me that a macOS folder that gets > listed with “the folders” is actually treated as a file? For example, .app > is a file where View Package Contents is an o

identifying macOS folders that are considered to be files?

2019-05-24 Thread kee nethery via use-livecode
Is there any way for LiveCode to tell me that a macOS folder that gets listed with “the folders” is actually treated as a file? For example, .app is a file where View Package Contents is an option but the OS treats it as a single thing. Same with .numbers, .pages, and various other “files”. They

Reset a Column Behavior

2019-05-24 Thread Bob Sneidar via use-livecode
How to you reset a column behavior? I tried to add a checkbox to a datagrid and now I borked the datagrid. Bob S ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

Re: Windows 64

2019-05-24 Thread Bob Sneidar via use-livecode
Sorry Richmond I got that from prior posts about the schools you were working with and you mentioned that the reason you wanted to use much older Macs and such was that they could not afford newer products there in Bulgaria. I didn't mean to cast aspersions on your status. Please forgive me. B

how to load a local file into the browser widget?

2019-05-24 Thread Curt Ford via use-livecode
Thanks Klaus, those are great tips! While I'm at it... some of the folders in the file path will be in Russian, which is breaking my current handler. Is there a way to run them through some unicode-type function to make them work in a file path? I can run those items of the file path through

Re: repeat with times

2019-05-24 Thread Mark Wieder via use-livecode
On 5/24/19 10:25 AM, Mark Waddingham via use-livecode wrote: However in this case the lax parsing of repeat is not benign - you can write a 'repeat with' statement which looks like it is 100% correct but does not do what you expect:   i.e. repeat with i = 1 to 10 by 2 -- ignores the 'by' cla

how to load a local file into the browser widget?

2019-05-24 Thread Curt Ford via use-livecode
Ah, thanks, Tore, that was it! Using two slashes in the handler *put*"file://"& thedefaultFolder& slash& "Future.html"intotFile produced the filePath with three slashes, file:///Users/cford/Desktop/BrowserTryout/Future.html which is now working fine. :) -- Sent from Postbox

Re: how to load a local file into the browser widget?

2019-05-24 Thread Klaus major-k via use-livecode
Hi all, > Am 24.05.2019 um 23:00 schrieb Tore Nilsen via use-livecode > : > > Try to start the url with «file:/// « this is what I get at the > start of the url of a browser widget > when i set the url from a script using «answer file» to navigate to any valid > html file: > on mouseUp > answe

Re: how to load a local file into the browser widget?

2019-05-24 Thread Tore Nilsen via use-livecode
Try to start the url with «file:/// « this is what I get at the start of the url of a browser widget when i set the url from a script using «answer file» to navigate to any valid html file: on mouseUp answer file "Choose html file to display" set url of widget "browser" to it end mouseUp To

Player object controller bar

2019-05-24 Thread Paul Dupuis via use-livecode
I have searched the dictionary, Guides, and livecode.com but have been unable to find a annotated picture of the LC9xx player objects' controller bar and what each control does, especially in combinations with with modifier keys Clearly, some controls are obvious, like play/pause, etc., but I

Re: Windows 64

2019-05-24 Thread Richmond via use-livecode
Thank you for a very sensible reply that is easy to understand. Richmond. On 24.05.19 20:30, Mark Waddingham via use-livecode wrote: On 2019-05-24 08:51, Richmond via use-livecode wrote: 1. Will 32-bit Windows builds work on all current deployments of the Windows OS? Yes. 2. Which current d

Re: play sounds in HTML5

2019-05-24 Thread Alain Vezina via use-livecode
Hi, I have to admit, I'm a little confused. 1. Do I have to set the defaultFolder to specialFolderPath ("Documents") in openStack ? 2. After I copy the HTML file in the folder Documents, do I have to change it's name ? 3. Do I have to write sometihing like in both HTML files ? 4. Do I hav

Re: Windows 64

2019-05-24 Thread Richmond via use-livecode
Well, well; here's a reply which really needs a multi-part reply. On 24.05.19 18:21, Bob Sneidar via use-livecode wrote: Not sure what you mean. What I mean is that LiveCode produces a "Fat" standalone which suffers from the following disadvantages: 1. It's fat, quite literally. 2. I wonde

how to load a local file into the browser widget?

2019-05-24 Thread Curt Ford via use-livecode
You must make sure that the filePath to the html file you would like to see does not contain any invalid characters like spaces, which you will find is OK by the file system but not with the browser. I had wondered about this; I renamed the file to "Browsertryout" and moved it to the desktop (

Re: how to load a local file into the browser widget?

2019-05-24 Thread Tore Nilsen via use-livecode
You must make sure that the filePath to the html file you would like to see does not contain any invalid characters like spaces, which you will find is OK by the file system but not with the browser. Tore > 24. mai 2019 kl. 22:02 skrev Curt Ford via use-livecode > : > > Is there a trick to ge

how to load a local file into the browser widget?

2019-05-24 Thread Curt Ford via use-livecode
Is there a trick to getting a local html file to display in the browser widget? I'm using this in a test button (in 9.0.4, on a Mac): *on*mouseUp *# set the defaultFolder to the folder containing the stackfile* *set*theitemDelimitertoslash* get*theeffectivefilenameofthisstack* set*thedefaultFo

Re: Opening a stack changes it's set rect

2019-05-24 Thread Paul Dupuis via use-livecode
Thank you Mark! On 5/24/2019 2:14 PM, Mark Waddingham via use-livecode wrote: On 2019-05-24 18:08, Paul Dupuis via use-livecode wrote: I discovered today that opening a stack changes its set rect (at least under Windows 10 in LC904/905rc1 when opening a stack invisible See this little gem: ht

Re: Dictionary

2019-05-24 Thread Roger Guay via use-livecode
Ditto on the Dictionary! Cheers, Roger > On May 23, 2019, at 12:26 PM, R.H. via use-livecode > wrote: > > I agree that the dictionary often leaves guess work. > > The biggest problem I have with the dictionary is forgetting the name of a > function and trying to guess the name. If there were

Re: Question for LCB FFI workshop attendees at upcoming conference

2019-05-24 Thread Trevor DeVore via use-livecode
On Fri, May 24, 2019 at 11:53 AM hh via use-livecode < use-livecode@lists.runrev.com> wrote: > Thank you very much for sharing these examples. You’re welcome. One thing I forgot to mention - you need to have LC 9.0.5 or 9.5 installed to test the Pocketsphinx example. A bug was fixed related to p

Re: App Store changes in August?

2019-05-24 Thread Tom Glod via use-livecode
yes..there it is.thanks RG. On Fri, May 24, 2019 at 2:27 PM Richard Gaskin via use-livecode < use-livecode@lists.runrev.com> wrote: > Tom Glod wrote: > > > Found it. its google play store needing 64 bit builds of the apps. > > > > The 64-bit requirement: what it means for developers St

Re: App Store changes in August?

2019-05-24 Thread Richard Gaskin via use-livecode
Tom Glod wrote: > Found it. its google play store needing 64 bit builds of the apps. > > The 64-bit requirement: what it means for developers Starting *August > 1 2019:* > >- All new apps and app updates that include native code are > required to provide 64-bit versions in addition to 32-

Re: Opening a stack changes it's set rect

2019-05-24 Thread Mark Waddingham via use-livecode
On 2019-05-24 18:08, Paul Dupuis via use-livecode wrote: I discovered today that opening a stack changes its set rect (at least under Windows 10 in LC904/905rc1 when opening a stack invisible See this little gem: https://quality.livecode.com/show_bug.cgi?id=22097 Not a problem is you are just p

Re: App Store changes in August?

2019-05-24 Thread Tom Glod via use-livecode
Found it. its google play store needing 64 bit builds of the apps. The 64-bit requirement: what it means for developers Starting *August 1, 2019:* - All new apps and app updates that include native code are required to provide 64-bit versions in addition to 32-bit versions when publishi

Re: App Store changes in August?

2019-05-24 Thread Tom Glod via use-livecode
Thats the thing I don't remember all the details that were mentioned...with the streaming problems and my toddler interrupting me, I had no chance to catch all the details. But I remember having the distinct feeling of not being sure if the license & version i bought was going to be go

Re: Android Blocks LC With Browser Net Error

2019-05-24 Thread Sannyasin Brahmanathaswami via use-livecode
That URL should be https://www.youtube.com/embed/YHS7dyN6sgM It also crashes iOS if the phone is blocked by a firewall. = When a firewall or some other "obstruction" prevents accessing a URL in the browser widget on Android, it responds with an error page, in HTML, viz. =

Re: Windows 64

2019-05-24 Thread Mark Waddingham via use-livecode
On 2019-05-24 08:51, Richmond via use-livecode wrote: 1. Will 32-bit Windows builds work on all current deployments of the Windows OS? Yes. 2. Which current deployments of the Windows OS 'prefer' 64-bit executables? No windows OS versions 'prefer' 64-bit exes per-se. MS did a very good job

Re: repeat with times

2019-05-24 Thread Mark Waddingham via use-livecode
On 2019-05-23 08:42, ambassador--- via use-livecode wrote: After re-reading the release notes I think this is probably the result of bug 20951 being squashed @ https://quality.livecode.com/show_bug.cgi?id=20951 That sounds like it. Yup - that's the one. The LCS parser is very lax, it tends n

Re: Question for LCB FFI workshop attendees at upcoming conference

2019-05-24 Thread Mark Wieder via use-livecode
On 5/24/19 9:54 AM, Bob Sneidar via use-livecode wrote: Bad link lmgtfy... https://github.com/novastone-media/MQTT-Client-Framework -- Mark Wieder ahsoftw...@gmail.com ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this u

Re: App Store changes in August?

2019-05-24 Thread Paul Dupuis via use-livecode
My guess would be the forth coming Notarization requirement by Apple? There was a lot of list discussion about that, but it has nothing to do with LiveCode. It is just another set of steps your will need to do, like Code Signing, for you OSX apps build in LiveCode or any language to run on OSX

Re: App Store changes in August?

2019-05-24 Thread Richard Gaskin via use-livecode
Tom Glod wrote: > Hi Peeps, I am not sure I heard correctly, but is there some kind of > change occurring in August where the 9.0x line of LC builds will not > be able to submit to the app store? I think it was the apple store > that was being discussed. People say all sorts of things. Sometime

Re: repeat with times

2019-05-24 Thread Mark Wieder via use-livecode
On 5/23/19 9:14 AM, Bob Sneidar via use-livecode wrote: I just put "put 5 times empty" into the message box and got 5. I don't get that when I try it. I first of all get an error message about not finding the handler, and then it displays "5". But the displayed value is a side effect of the

Re: Question for LCB FFI workshop attendees at upcoming conference

2019-05-24 Thread Bob Sneidar via use-livecode
Bad link Bob S > On May 11, 2019, at 06:19 , Michael Muthmannn via use-livecode > wrote: > > Hi Trevor, > > In the forums a couple of times there were some questions about MQTT > integration into livecode. > > I found found a native Objective-C iOS library here: > > https://github.com/n

Re: Question for LCB FFI workshop attendees at upcoming conference

2019-05-24 Thread JJS via use-livecode
Thank you Trevor Op 24-5-2019 om 17:00 schreef Trevor DeVore via use-livecode: On Tue, May 7, 2019 at 8:35 AM Trevor DeVore wrote: This is for anyone who plans on attending my workshop on using FFI in LCB at the conference. Is there any code (a macOS Framework, Windows API, DLL, dylib, etc.)

Re: Question for LCB FFI workshop attendees at upcoming conference

2019-05-24 Thread hh via use-livecode
Thank you very much for sharing these examples. > Trevor DeV. wrote: > For those interested you can find the source code for the projects we > discussed in the LCB FFI Workshop at the San Jose Conference. The > pocketsphinx project is an experiment to get it working and teach some > concepts. The

Opening a stack changes it's set rect

2019-05-24 Thread Paul Dupuis via use-livecode
I discovered today that opening a stack changes its set rect (at least under Windows 10 in LC904/905rc1 when opening a stack invisible See this little gem: https://quality.livecode.com/show_bug.cgi?id=22097 Not a problem is you are just popping up windows and then setting their positions, but

App Store changes in August?

2019-05-24 Thread Tom Glod via use-livecode
Hi Peeps, I am not sure I heard correctly, but is there some kind of change occurring in August where the 9.0x line of LC builds will not be able to submit to the app store? I think it was the apple store that was being discussed. ___ use-livecode mailing

Re: Windows 64

2019-05-24 Thread Bob Sneidar via use-livecode
Not so. You *could* get a 32 bit version of these OS. In fact if you were upgrading from a 32 bit Win 7 you HAD to upgrade to the 32 bit version of 8, and in like manner, from 8 to 10. The only way to go to 64 bit was to buy a NEW license of those OS, and do a clean install. You could not upgrad

Re: Windows 64

2019-05-24 Thread Bob Sneidar via use-livecode
Not sure what you mean. Are you talking about 32 bit vs. 64 bit? Apple only began supporting 64 bit OS in 2006 when they began to use the Intel chipset. In 2011 the OS was exclusively 64 bit throughout, but has continued to run 32 bit apps until Mojave. Mojave is the last Mac OS that will suppor

Re: Question for LCB FFI workshop attendees at upcoming conference

2019-05-24 Thread Trevor DeVore via use-livecode
On Tue, May 7, 2019 at 8:35 AM Trevor DeVore wrote: > This is for anyone who plans on attending my workshop on using FFI in LCB > at the conference. Is there any code (a macOS Framework, Windows API, DLL, > dylib, etc.) that is written in Objective-C or that has a C wrapper that > you are interes

Android Blocks LC With Browser Net Error

2019-05-24 Thread Sannyasin Brahmanathaswami via use-livecode
When a firewall or some other "obstruction" prevents accessing a URL in the browser widget on Android, it responds with an error page, in HTML, viz. === [Android Green Robot Icon] "Webpage not available The webpage at https://www.youtube.copm/embed/YHs7dyN6sgM could not be loaded. Ne

Re: 9.5 DP 1 Unadorned - LayerMode - Container

2019-05-24 Thread Trevor DeVore via use-livecode
Just apply the shadow or gradient to an object other than the DataGrid group itself. -- Trevor DeVore ScreenSteps On Thu, May 23, 2019 at 10:52 PM Sannyasin Brahmanathaswami via use-livecode wrote: > Wow, thanks Trevor for the R & D! > > That makes for "pretty plain" Datagrid2 forms. I understa

Re: Windows 64

2019-05-24 Thread Paul Dupuis via use-livecode
If I recall correctly: Windows 2000 and XP were only 32-bit Windows Vista and WIndows 7 came in both 32-bit and 64-bit versions (you have to buy the version you wanted. They were sold separately) Windows 8, 8.1, and 10 are available ONLY as 64-bit OSes So, while Microsoft maintains 32-bit comp

Re: Windows 64

2019-05-24 Thread Matthias Rebbe via use-livecode
Hi Richmond, 1. Yes 2. Every 64-bit Windows is able to run 64-bit apps, but also 32-bit apps, but not vice versa. 64-bit Windows versions do not prefer 64-bit apps, but there might be reasons (e.g. memory, performance) where it would be better to use the 64-bit version of an app. It depends on