Apples Script Execution Error in Standalone

2017-07-25 Thread Sannyasin Brahmanathaswami via use-livecode
I have this: in a custom property in a stack and we pass the user name and password, then "do as applescript" and the server is mounted tell application "Finder" mount volume "afp://192.163.102.8/Chola" as user name "###" with password "#" end tell put the result into fld "status"

Re: HTML5 limitations?

2017-07-25 Thread hh via use-livecode
> Mark wieder wrote: > It's in process to becoming "beta" ... ... while "the mouse" still always reports "up". It's a miracle. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: HTML5 limitations?

2017-07-25 Thread Rick Harrison via use-livecode
Why does the client want to move the project over to HTML5? What advantage does he/she think it is going to provide that the current setup does not? Based on the complexity of what you already have going I think it could be a very serious waste of time and energy. It’s easier to just have a

Re: Importing Unicode from MySQL

2017-07-25 Thread Kaveh Bazargan via use-livecode
Hi Devin Thanks for that. I just tried it and *Bodø River* becomes *Bod River* I was wondering at what point the Unicode is lost. So is it still intact when it is saved as a variable? and is it then lost when the variable is put into a field? By the way the BYU documentation is the best on

Re: HTML5 limitations?

2017-07-25 Thread Mark Wieder via use-livecode
On 07/25/2017 01:43 PM, hh via use-livecode wrote: The HTML5 standalone builder is still "experimental". Has been "very experimental" until July 2017. It's in process to becoming "beta". -- Mark Wieder ahsoftw...@gmail.com ___ use-livecode

Re: Importing Unicode from MySQL

2017-07-25 Thread Devin Asay via use-livecode
Kaveh, The unicodeText property and uniEncode function are deprecated. Instead use textDecode as follows: Download your database data into a variable like tStringFromDatabase. Then, put textDecode(tStringFromDatabase,”UTF8”) into field “myDBText” HTH Devin On Jul 25, 2017, at 4:24 PM,

Importing Unicode from MySQL

2017-07-25 Thread Kaveh Bazargan via use-livecode
I know this has been discussed before and I have tried to search for the answer, but no success. I am using LiveCode Community, 9.0.0 DP5 on Mac I have a MySQL database where all fields are formatted as UTF8. I do a query from LiveCode, and put the result in a field and I lose the non ascii

Re: Ethereal Breakpoints

2017-07-25 Thread Dr. Hawkins via use-livecode
On Tue, Jul 25, 2017 at 1:15 PM, Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > Since clearing all breakpoints (including the one for line 5000 of the > revDebugWhatchamacallit script) the red dot breakpoints seem to be behaving > normally again. Curious. > > I have long

Re: glx2 script editor

2017-07-25 Thread Matthias Rebbe via use-livecode
I will test with only GLX as plugin. If that is working, then i will add the other plugins one after the other to see what might be causing it. I will then file an issue. Matthias Rebbe +49 5741 31 ‌matthiasrebbe.eu ‌ > Am 25.07.2017 um 22:41 schrieb Mark Wieder

Re: HTML5 limitations?

2017-07-25 Thread Colin Holgate via use-livecode
The 5MB limit is on mobile, and each time you exceed the previous limit the user can give permission to increase it, at least to 50 MB. Also it’s possible to use multiple databases. > On Jul 25, 2017, at 5:16 PM, Jonathan Lynch via use-livecode > wrote: > > The

Re: HTML5 limitations?

2017-07-25 Thread Jonathan Lynch via use-livecode
The size limit on data in local storage is 5 to 10 mb per origin, depending on browser. Not sure if that would be an issue. Local storage seems to work pretty well in my experiments, if the limitations are not an issue. Sent from my iPhone > On Jul 25, 2017, at 5:07 PM, Colin Holgate via

Re: HTML5 limitations?

2017-07-25 Thread hh via use-livecode
> JLG wrote: > I have a client that wants to move our project to HTML5. I have > some doubts about the capabilities, could someone tell me what is > currently possible and what is not? Wait until Mark Waddingham's talk about HTML5. Even he will probably not be able to answer the "what is

Re: HTML5 limitations?

2017-07-25 Thread Colin Holgate via use-livecode
Can LiveCode HTML5 include or call Javascript? If so you could use local storage InedxedDB for the database. Or WebSQL. If the data isn’t too big. > On Jul 25, 2017, at 3:28 PM, Matthias Rebbe via use-livecode > wrote: > > And direct db access is also not

Re: HTML5 limitations?

2017-07-25 Thread hh via use-livecode
The HTML5 standalone builder is still "experimental". Has been "very experimental" until July 2017. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: glx2 script editor

2017-07-25 Thread Mark Wieder via use-livecode
On 07/25/2017 12:24 PM, Matthias Rebbe via use-livecode wrote: Hm, i can reproduce it here. Every time GLX is enabled, i cannot create a new stack using the LC menu. Well, file an issue on the bitbucket site, I guess. I can't replicate the problem here at all on OSX. I have no other

Re: HTML5 limitations?

2017-07-25 Thread Jonathan Lynch via use-livecode
No problem, but thanks for replying. That is really interesting. I know that setting up such a structure in traditional HTML/JS would be a big pain, because I have looked into something similar before for other reasons. It must have been quite a bit of work to duplicate that structure in the

Re: HTML5 limitations?

2017-07-25 Thread Roger Eller via use-livecode
That concept would be great as a lesson. ~Roger On Tue, Jul 25, 2017 at 4:21 PM, Kevin Miller via use-livecode < use-livecode@lists.runrev.com> wrote: > Yes you can. I'm at a conference just now but hopefully someone > knowledgable on our team can jump in with more info. > > Sent from my

Re: HTML5 limitations?

2017-07-25 Thread Kevin Miller via use-livecode
Yes you can. I'm at a conference just now but hopefully someone knowledgable on our team can jump in with more info. Sent from my iPhone > On 25 Jul 2017, at 13:07, Jonathan Lynch via use-livecode > wrote: > > Kevin, > > Can you have a structure similar to

Re: Ethereal Breakpoints

2017-07-25 Thread Bob Sneidar via use-livecode
Since clearing all breakpoints (including the one for line 5000 of the revDebugWhatchamacallit script) the red dot breakpoints seem to be behaving normally again. Curious. Bob S > On Jul 25, 2017, at 09:34 , Bob Sneidar wrote: > > Not that it matters, but I

Re: HTML5 limitations?

2017-07-25 Thread Jonathan Lynch via use-livecode
Kevin, Can you have a structure similar to having multiple stacks controlled by an LC engine? I am really curious how you guys set that up? Using localstorage and cookies are the only methods I know of for doing that in regular html5 with multiple tabs/windows. Sent from my iPhone > On

Re: HTML5 limitations?

2017-07-25 Thread Kevin Miller via use-livecode
Go in window of stack works You can download stacks just fine Sent from my iPhone > On 25 Jul 2017, at 12:46, Jonathan Lynch via use-livecode > wrote: > > In HTML the browser is the engine that runs both HTML and JavaScript. It is > possible to have multiple

Re: HTML5 limitations?

2017-07-25 Thread Jonathan Lynch via use-livecode
In HTML the browser is the engine that runs both HTML and JavaScript. It is possible to have multiple tabs and there are some functions for communicating between tabs and windows, but it isn't pretty. You have to use localstorage and storage events. This could be made to work similar to an LC

Re: HTML5 limitations?

2017-07-25 Thread J. Landman Gay via use-livecode
Thanks. I don't think the sandbox is an issue, the app doesn't read or write to the user's drive at all. The various animations, and splash-stack approach might be a concern, as well as the number of stacks that are in RAM at any one time. Common images and icons are also stored in the

Re: HTML5 limitations?

2017-07-25 Thread Matthias Rebbe via use-livecode
And direct db access is also not possible. For that you´ll need some kind of a “db gateway” which can be done with lc server or php. Matthias Rebbe +49 5741 31 ‌matthiasrebbe.eu ‌ > Am 25.07.2017 um 21:00 schrieb Jonathan Lynch via use-livecode >

Re: HTML5 limitations?

2017-07-25 Thread J. Landman Gay via use-livecode
I forgot to mention that the whole system is based on the splash-stack approach. The standalone contains all the common code for all the other stacks, which are loaded on demand. Does HTML5 support this setup? On 7/25/17 1:42 PM, J. Landman Gay via use-livecode wrote: I have a client that

Re: glx2 script editor

2017-07-25 Thread Matthias Rebbe via use-livecode
Hm, i can reproduce it here. Every time GLX is enabled, i cannot create a new stack using the LC menu. Matthias Rebbe +49 5741 31 ‌matthiasrebbe.eu ‌ > Am 25.07.2017 um 20:32 schrieb Mark Wieder via use-livecode >

Re: HTML5 limitations?

2017-07-25 Thread Jonathan Lynch via use-livecode
Well, the sandbox is a huge issue. JavaScript is not allowed to access many things that LC can access in the user's system. The sandbox protects against malicious pages. It is very hard to simulate the mouseStillDown handler in HTML/JS. My app is a hybrid of LC and html5. The pace of

HTML5 limitations?

2017-07-25 Thread J. Landman Gay via use-livecode
I have a client that wants to move our project to HTML5. I have some doubts about the capabilities, could someone tell me what is currently possible and what is not? This is a very large set of stacks, run by a standalone that loads content on demand from a server. It is image-heavy and

Re: glx2 script editor

2017-07-25 Thread Mark Wieder via use-livecode
On 07/25/2017 10:31 AM, Matthias Rebbe via use-livecode wrote: I am seeing this under Mac OS X 10.12.5 and LC 8.1.5, 8.1.6RC2 and LC9 DP8. Interesting. No problems here with OSX 10.11.6. LC9dp8 and LC8.1.6rc3. -- Mark Wieder ahsoftw...@gmail.com

Re: Ethereal Breakpoints

2017-07-25 Thread J. Landman Gay via use-livecode
On 7/24/17 6:05 PM, Monte Goulding via use-livecode wrote: On 25 Jul 2017, at 8:37 am, J. Landman Gay via use-livecode wrote: You can debug these using the remote debugger only. Does that still work? It never asks me any more. It should. If it doesn’t for

Re: glx2 script editor

2017-07-25 Thread Matthias Rebbe via use-livecode
I am seeing this under Mac OS X 10.12.5 and LC 8.1.5, 8.1.6RC2 and LC9 DP8. Matthias Rebbe +49 5741 31 ‌matthiasrebbe.eu ‌ > Am 25.07.2017 um 18:05 schrieb Mark Wieder via use-livecode > >: > >

Re: Ethereal Breakpoints

2017-07-25 Thread Mark Wieder via use-livecode
On 07/24/2017 03:31 PM, Alex Tweedly via use-livecode wrote: I keep getting caught by this - setting a breakpoint in a handler which is (indirectly) called from a resizeStack, and LC gets completely frozen and needs to be Force-quit. Um... once again... PowerDebug to the rescue. Doesn't

Re: Ethereal Breakpoints

2017-07-25 Thread Mark Wieder via use-livecode
On 07/25/2017 09:26 AM, Bob Sneidar via use-livecode wrote: OK here is a perfect example. I get on one of the lines, stack "/Applications/LiveCode Business 8.1.5.app/Contents/Tools/Toolset/libraries/revdebuggerlibrary.livecodescript",5000 Problem: There are not 5000 lines in that script when

Re: Ethereal Breakpoints

2017-07-25 Thread Bob Sneidar via use-livecode
In an unrelated incident, I think I just found one way explicit variables can get set. I set gRevDevelopment to true, then set it back to false when I was done. Then I attempted to save a script and the predictable occured. (Yes I know how to set it back.) Bob S > On Jul 25, 2017, at 09:26 ,

Re: Ethereal Breakpoints

2017-07-25 Thread Bob Sneidar via use-livecode
Not that it matters, but I opened that script and then cleared all breakpoints. Now I have no breakpoints set, so let's see if it behaves any differently. Bob S > On Jul 25, 2017, at 09:26 , Bob Sneidar via use-livecode > wrote: > > OK here is a perfect

Re: Ethereal Breakpoints

2017-07-25 Thread Bob Sneidar via use-livecode
OK here is a perfect example. I get on one of the lines, stack "/Applications/LiveCode Business 8.1.5.app/Contents/Tools/Toolset/libraries/revdebuggerlibrary.livecodescript",5000 Problem: There are not 5000 lines in that script when I go to edit it. Further I have never edited that script!

Re: Ethereal Breakpoints

2017-07-25 Thread Bob Sneidar via use-livecode
Hmmm... good thought. It may have been a datagrid script I was looking at. Besides my database library, I am not using behaviors a lot. I'll give those other things a try. Bob S > On Jul 25, 2017, at 08:56 , Mark Wieder via use-livecode > wrote: > > As a

Re: glx2 script editor

2017-07-25 Thread Mark Wieder via use-livecode
On 07/25/2017 07:30 AM, Matthias Rebbe via use-livecode wrote: Hi Mark, thanks. Works so far if i open an already existing stack. But when i try to create a new stack using the LC menu while GLX2 is enabled then nothing happens. I have to disable GLX to create a new stack using the menu “New

Re: Ethereal Breakpoints

2017-07-25 Thread Mark Wieder via use-livecode
On 07/25/2017 08:09 AM, Bob Sneidar via use-livecode wrote: Thanks Monte, but I do not use modal any more than I can help it. This is happening in virtually every script I have. As I mentioned, I had one script where the breakpoints pane reported that the script had a breakpoint on line 6

Re: Ethereal Breakpoints

2017-07-25 Thread Bob Sneidar via use-livecode
Thanks Monte, but I do not use modal any more than I can help it. This is happening in virtually every script I have. As I mentioned, I had one script where the breakpoints pane reported that the script had a breakpoint on line 6 hundred something, and there have never been any more that 200

Re: AW: [OT]h.264 alternatives

2017-07-25 Thread Paul Dupuis via use-livecode
This may help explain the absurdly complex MPEG4 licensing model: http://www.mpegla.com/main/programs/M4V/Documents/m4vweb.pdf On 7/24/2017 3:54 AM, Tiemo Hollmann TB via use-livecode wrote: > Last year I asked Sorenson media if I have to pay license fees, using the > h.264 codec and got the

AW: AW: [OT]h.264 alternatives

2017-07-25 Thread Tiemo Hollmann TB via use-livecode
Thanks for clarifying Warren! Tiemo -Ursprüngliche Nachricht- Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag von Warren Samples via use-livecode Gesendet: Montag, 24. Juli 2017 18:24 An: Tiemo Hollmann TB via use-livecode Cc: