AW: taking a screenshot fails - video experience needed

2017-04-20 Thread Tiemo Hollmann TB via use-livecode
Hi Bob, what do you mean with "their AV software"? the drivers of their video adapter? Or do you think of any other? And what do you mean with "feature"? to suppress the ability of making screenshots in general? Ever heard of something like this? Tiemo -Ursprüngliche Nachricht- Von: use

Re: Error connecting to SQLlite in iOS

2017-04-20 Thread J. Landman Gay via use-livecode
On 4/20/17 2:05 PM, Ralph DiMola via use-livecode wrote: The standalone "copy files" are in "the engine folder" in the mobile app. Apple changed the rules and files go into specialFolderPath("resources") now. But LC aliases them to the engine folder for backward compatibility. -- Jacqueline

Re: numberFormat affecting array keys???

2017-04-20 Thread hh via use-livecode
> Bob S. wrote: > Okay THAT has GOT to be a bug!!! Why the hell is numberformat modifying the > name of the array element?? I haven't done ANY math on it. "repeat with i=1 to 10" uses i to count from 1 up to 10 step 1: That's a lot of math you've done to i. Whereas this doesn't touch the numbers:

Re: numberFormat affecting array keys???

2017-04-20 Thread hh via use-livecode
> Bob S. wrote: > Okay THAT has GOT to be a bug!!! Why the hell is numberformat modifying the > name of the array element?? I haven't done ANY math on it. "repeat with i=1 to 10" uses i to count from 1 up to 10 step 1: That's a lot of math you've done to i. Whereas this doesn't touch the numbers:

Re: numberFormat affecting array keys???

2017-04-20 Thread Jonathan Lynch via use-livecode
I would have thought that A[1] and A[01] would be the same, while A["1"] and A["01"] were different - good to know that is not the case. Sent from my iPhone > On Apr 20, 2017, at 8:04 PM, Richard Gaskin via use-livecode > wrote: > > Bob Sneidar wrote: > > > Hi all. > > > > Put this into a bu

Re: numberFormat affecting array keys???

2017-04-20 Thread Paul Dupuis via use-livecode
Array keys are strings. Even when you: put 1 into tArray[1] the "1" as the array key is a string. If you do something mathematical to that key, LC converts any string that represents a number to a number when it needs to. On 4/20/2017 7:51 PM, Bob Sneidar via use-livecode wrote: > Hi all. > > Put

Re: numberFormat affecting array keys???

2017-04-20 Thread Richard Gaskin via use-livecode
Bob Sneidar wrote: > Hi all. > > Put this into a button: > > on mouseUp >set the numberFormat to "00" >repeat with i=1 to 10 > put i into myArray [i] > breakpoint >end repeat > end mouseUp > > At the breakpoint examine the array. There will be a 1 in an element > with the

numberFormat affecting array keys???

2017-04-20 Thread Bob Sneidar via use-livecode
Hi all. Put this into a button: on mouseUp set the numberFormat to "00" repeat with i=1 to 10 put i into myArray [i] breakpoint end repeat end mouseUp At the breakpoint examine the array. There will be a 1 in an element with the name... ready??? "01" Okay THAT has GOT t

RE: Error connecting to SQLlite in iOS

2017-04-20 Thread Ralph DiMola via use-livecode
John, The standalone "copy files" are in "the engine folder" in the mobile app. Copy the DB from the engine folder to the documents folder. Put url ("binfile:"&the engine folder&"/ccssdb-ela.sqlite") into url ("binfile:"&the documents folder&"/ccssdb-ela.sqlite") You can't open the DB in the en

Re: Error connecting to SQLlite in iOS

2017-04-20 Thread Mike Bonner via use-livecode
Unless things have changed, when you add files using the copy files pane of the standalone settings, when sent to ios or android they end up in the engine folder. (I think? Or somewhere in that hierarchy) You would need to check for the existence of the file in documents on app startup and if it d

Error connecting to SQLlite in iOS

2017-04-20 Thread JOHN PATTEN via use-livecode
Hi All, I have a simple project that uses an sql lite database. It works fine in LiveCode, but when I test it in the iOS simulator, i get an error. I have copied to the SQL.lite database to the “Copy Files” in the standalone settings. I have also added the SqLite and MySQL inclusions. Here is

Re: Weirdness with filter (maybe?)

2017-04-20 Thread hh via use-livecode
There is also brilliant work optimized for LC syntax. By the one and only LC-master of regex, Thierry: https://sunny-tdz.com/livecode/sunnyrex > Bob S. wrote: > Filter, unlike matchtext, in the form you are using, is not using regex. > There is a form of > filter however that does. If you need h

Re: Standard icons included in standalone

2017-04-20 Thread Mike Bonner via use-livecode
It should be possible to add the image library as a plugin. Copy the stack in question (for example from: C:\Program Files (x86)\RunRev\LiveCode Community 9.0 (dp 5)\Toolset\palettes\revimagelibrary.rev to your plugins folder at which point you can use the old method and import any of the required

Re: Standard icons included in standalone

2017-04-20 Thread Paul Dupuis via use-livecode
Yes, the icons appear for button they are associated with in the standalone built under LC8.1.3 under Windows. Not tested on OSX. On 4/20/2017 12:20 PM, Peter Bogdanoff via use-livecode wrote: > Yes, but does the image appear in a subsequent standalone application? > >> On Apr 20, 2017, at 5:19 AM

Re: Standard icons included in standalone

2017-04-20 Thread Devin Asay via use-livecode
On Apr 20, 2017, at 6:19 AM, Paul Dupuis via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Under 8.1.3, if I create a new stack and a new button and open the property inspector for the button and click on the icon tab of the property inspector and click on an icon, the usual dialog

Re: Standard icons included in standalone

2017-04-20 Thread Peter Bogdanoff via use-livecode
Yes, but does the image appear in a subsequent standalone application? > On Apr 20, 2017, at 5:19 AM, Paul Dupuis via use-livecode > wrote: > > Under 8.1.3, if I create a new stack and a new button and open the > property inspector for the button and click on the icon tab of the > property insp

Re: taking a screenshot fails - video experience needed

2017-04-20 Thread Bob Sneidar via use-livecode
It may be a feature of their AV software. Bob S On Apr 20, 2017, at 05:03 , Tiemo Hollmann TB via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Hello, A vital part of my program is taking screenshots (snapshot) from videos, played in my program (DirectShow videos, LC 8.1.4, Windo

Re: Weirdness with filter (maybe?)

2017-04-20 Thread Bob Sneidar via use-livecode
Filter, unlike matchtext, in the form you are using, is not using regex. There is a form of filter however that does. If you need help with a regex expression, I use a neat little tool called RegexMagic. 30 day demo and not too expensive if you use regex expressions on a regular basis. (See what

Re: AW: Which code signing authority?

2017-04-20 Thread Jonathan Lynch via use-livecode
Have you ever had any problems with your certificate being accepted? Comodo seems very affordable. Sent from my iPhone > On Apr 20, 2017, at 9:00 AM, Tiemo Hollmann TB via use-livecode > wrote: > > I am working with comodo: > https://www.comodo.com/e-commerce/code-signing/code-signing-certifi

Re: Which code signing authority?

2017-04-20 Thread Matthias Rebbe via use-livecode
K Software is a strategic Commodo partner and sells their certificates They even offer a free signing tool which makes signing Windows programs/dlls very easy. http://codesigning.ksoftware.net And they are selling the Commodo certificates much cheaper than Co

AW: Which code signing authority?

2017-04-20 Thread Tiemo Hollmann TB via use-livecode
I am working with comodo: https://www.comodo.com/e-commerce/code-signing/code-signing-certificate.php? s_track=7639 Good experience, but no comparison to others Tiemo -Ursprüngliche Nachricht- Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag von Jonathan Lynch v

Which code signing authority?

2017-04-20 Thread Jonathan Lynch via use-livecode
Which code signing authority do you guys suggest using? That comes with the apple developer account - but what about for pc and android? I would prefer to avoid spending $600 on a certificate if possible, but I don't know how well-accepted the less expensive certificates are. Sent from my iPhon

Re: Standard icons included in standalone

2017-04-20 Thread Paul Dupuis via use-livecode
Under 8.1.3, if I create a new stack and a new button and open the property inspector for the button and click on the icon tab of the property inspector and click on an icon, the usual dialog appears with the Standard Icons, Standard Patterns, Metacard Icons, Metacard Patterns, and This Stack popup

taking a screenshot fails - video experience needed

2017-04-20 Thread Tiemo Hollmann TB via use-livecode
Hello, A vital part of my program is taking screenshots (snapshot) from videos, played in my program (DirectShow videos, LC 8.1.4, Windows 10) On a customer machine the snapshot doesn't work at all, it takes only a black screen. For my limited understanding this is related to the video/ screen bu

Re: Weirdness with filter (maybe?)

2017-04-20 Thread Alan via use-livecode
Try filter lines of MyList with ("*" & CharStringX & "*" & tab & "*") to get all lines where CharStringX is contained in the first part of the string before the tab. > filter lines of MyList with ("*" & CharStringX & "*" & tab) HTH cheers Alan ___

Re: Weirdness with filter (maybe?)

2017-04-20 Thread Alex Tweedly via use-livecode
I think it should be filter lines of MyList with (charStringX & TAB & *) i.e. get lines containing this string X followed by TAB followed by anything Alex On 20/04/2017 09:22, Quentin Long via use-livecode wrote: I have a return-delimited list. Each line of this list consists of [some text]

Weirdness with filter (maybe?)

2017-04-20 Thread Quentin Long via use-livecode
I have a return-delimited list. Each line of this list consists of [some text] & tab & [other text]. I want to see all the lines of the list for which [some text] contains Character String X. This is obviously a job for the filter command, right? So I try this: filter lines of MyList with ("*"