Re: revNavigator - Cloning a card - am i doing something wrong?

2018-08-22 Thread Matthias Rebbe via use-livecode
Geoff, now when clicking on the arrows to collapse the stack, nothing happens, regardless where the stack is placed on the desktop. But when i open the Message Watcher and click on the arrows, then the script editor opens the script of rev_s_revNavigator.livecodescript and shows this error st

Re: Set the backgroundcolor of all lines a field to null

2018-08-22 Thread Richard Gaskin via use-livecode
Sannyasin Brahmanathaswami wrote: > I have some big lists in mobile, How big is "big"? 100 lines? 1,000? 1,000,000? > I sent the bkgndColor of certain > lines. > > Then I want clear that, > > How do we do this "for each line x" > which does not return the number of the line, but value > > co

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-22 Thread Ludovic THEBAULT via use-livecode
> Le 22 août 2018 à 22:24, J. Landman Gay via use-livecode > a écrit : > > On 8/22/18 3:13 PM, J. Landman Gay via use-livecode wrote: >> But the stack should still fill the screen and it doesn't. > > This will resize the stack the same way as your "adapt" handler does, so you > can eliminate

Re: editing & combining sound files?

2018-08-22 Thread Nicolas Cueto via use-livecode
Well, maybe some day I'll put the time in to study Geoff's and Tom's solutions. But, for future reference, below is my easier-for-me solution. First, use a sound-editor (Goldwave) to convert all AU files to RAW (i.e., snd). Second, run this LC script to merge those converted files (interleaved wi

Re: Set the backgroundcolor of all lines a field to null

2018-08-22 Thread Brian Milby via use-livecode
Have you looked at the performance of using styledText? put the styledText of fld "audioList" into tTextA repeat for each key tKey in tTextA put pColor into tTextA[tKey]["style"]["backgroundcolor"] end repeat set the styledText of fld "audioList" to tTextA Thanks, Brian >

Re: editing & combining sound files?

2018-08-22 Thread Tom Glod via use-livecode
sox is good for this kind of stuff, you can automate the command-lines using livecodebut you can skip some of the bs you would probably encounter with LC and audio "processing". http://sox.sourceforge.net/ On Wed, Aug 22, 2018 at 10:30 PM Geoff Canyon via use-livecode < use-livecode@lists.run

Re: Set the backgroundcolor of all lines a field to null

2018-08-22 Thread Mark Wieder via use-livecode
On 08/22/2018 08:35 PM, Sannyasin Brahmanathaswami via use-livecode wrote: I have some big lists in mobile, I sent the bkgndColor of certain lines. Then I want clear that, How do we do this "for each line x" What I do: put 1 into tLineNumber repeat for each line x in fld "audioList" # nee

Set the backgroundcolor of all lines a field to null

2018-08-22 Thread Sannyasin Brahmanathaswami via use-livecode
I have some big lists in mobile, I sent the bkgndColor of certain lines. Then I want clear that, How do we do this "for each line x" which does not return the number of the line, but value command setAudioListColors pLineNum,pColor # pass "4,"0,0,0" #slow! repeat with x=1 to (the numb

Re: editing & combining sound files?

2018-08-22 Thread Geoff Canyon via use-livecode
I did something very much like this way, way, way long ago (in the MetaCard days...). I don't remember the sound format, and it was mono, not stereo, but it turned out that the format for the sound file was *really* simple: a few bytes of easily-managed header, a bunch of binary data that represent

editing & combining sound files?

2018-08-22 Thread Nicolas Cueto via use-livecode
Hello List, I wish to automate a repetitive (and tedious!) process that's now being done manually using a sound-file editor (Goldwave). The process is: 1. Open an AU sound file. 2. Append 1 second of silence to that file. 3. Open a 2nd AU sound file. 4. Copy and append that 2nd file to the 1st f

Re: Surprise...

2018-08-22 Thread Curry Kenworthy via use-livecode
Mark T: > In my particular use of arrays and lists, I find the > lists to be a little more than 2 times faster Thanks! (Noting: particular use, and methods used.) Optimizing LCS is extremely important, and methods that are great for testing items and arrays themselves may not be the fastest

Re: revNavigator - Cloning a card - am i doing something wrong?

2018-08-22 Thread Geoff Canyon via use-livecode
Okay, I've updated Navigator so that I think it will fix this. You (and others with multiple monitors) will be the judge, but now on multiple screens, when collapsing Navigator it should collapse to the top of the screen it's on. Collapsing all Navigators should have them each collapse on the scree

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-22 Thread J. Landman Gay via use-livecode
On 8/22/18 3:13 PM, J. Landman Gay via use-livecode wrote: But the stack should still fill the screen and it doesn't. This will resize the stack the same way as your "adapt" handler does, so you can eliminate that entirely: on preopenstack mobileSetAllowedOrientations("portrait") iphoneU

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-22 Thread J. Landman Gay via use-livecode
On 8/21/18 2:11 PM, Ludovic THEBAULT via use-livecode wrote: But even « the rect of this cd » return the rect of the stack i created (0,0,768,1024) not the rect of the screen. I’ve made a test stack. It’s an « iPad » stack. Test it with iOS simulator on an iPhone device. https://www.dropbox.co

Re: Surprise...

2018-08-22 Thread Mark Talluto via use-livecode
Hi Curry, The stack can be found here: http://canelasoftware.com/pub/livecode/GetColumnCode.zip In my particular use of arrays and lists, I find the lists to be a little more than 2 times faster than arrays. This test is operating off a

Re: revNavigator - Cloning a card - am i doing something wrong?

2018-08-22 Thread Matthias Rebbe via use-livecode
put the screenRect 0,126,2560,1566 -2560,0,0,1440 put the working screenrects 0,149,2560,1566 -2560,23,0,1440 Regards, Matthias > Am 22.08.2018 um 20:11 schrieb Geoff Canyon via use-livecode > : > > On Wed, Aug 22, 2018 at 5:56 AM Matthias Rebbe via use-livecode < > use-livecode@lists.runr

Re: revNavigator - Cloning a card - am i doing something wrong?

2018-08-22 Thread Geoff Canyon via use-livecode
On Wed, Aug 22, 2018 at 5:56 AM Matthias Rebbe via use-livecode < use-livecode@lists.runrev.com> wrote: > Yes, i have a dual-screen setup. > Can you tell me what put the screenrects results in for you? And put the working screenrects Thanks gc ___

Re: Socket questions

2018-08-22 Thread Mark Wieder via use-livecode
On 08/22/2018 07:33 AM, Douglas Ruisaard via use-livecode wrote: ?Dave or Doug? ... anyway. Heh. I was apologizing to Dave Cragg for throwing shade on libURL inadvertently. Didn't think that this might be interpreted differently. It sounds like a "known" problem then I tried searching

Re: Surprise...

2018-08-22 Thread jbv via use-livecode
Brian, Thanks for running all these tests. On the same topic, I'd like to mention that I use "intersect" with arrays a lot in some scripts (for complex requests it is sometimes faster to load raw data from mySQL and process it with arrays), and "intersect" is really fast in LC9... On Tue, August

Re: revNavigator - Cloning a card - am i doing something wrong?

2018-08-22 Thread Geoff Canyon via use-livecode
You might want to add your experience to Bug 21509 which I created for this issue. gc On Wed, Aug 22, 2018 at 7:51 AM Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > I verified that if run from a script, the card will cl

Re: revNavigator - Cloning a card - am i doing something wrong?

2018-08-22 Thread Bob Sneidar via use-livecode
I verified that if run from a script, the card will clone in the stack the script is running in. Otherwise it will clone in the stack the source card is in regardless of the topStack. Odd implementation if you ask me. I often need to create a new substack, then clone a card from another substack

Re: Socket questions

2018-08-22 Thread Douglas Ruisaard via use-livecode
?Dave or Doug? ... anyway. It sounds like a "known" problem then I tried searching the QC listing at Livecode's (http://quality.livecode.com/) but can't find any reference to that specific function and too much when looking for "socket" and "domain". Do you know if a bug submission has bee

Re: revNavigator - Cloning a card - am i doing something wrong?

2018-08-22 Thread Matthias Rebbe via use-livecode
Yes, i have a dual-screen setup. I´ve made a screen recording and uploaded it to Droplr. http://d.qck.biz/ffyMUu Regards, Matthias > Am 22.08.2018 um 05:54 schrieb Geoff Canyon via use-livecode > mailto:use-livecode@lists.runrev.com>>: > > On Tue, Aug 21, 2018 at 8:58

Re: [ANN] DGH 2.5.1 is released

2018-08-22 Thread Matthias Rebbe via use-livecode
I second that. As an addition: Zryip`s response time for support requests and bugfixes is awesome. > Am 22.08.2018 um 05:09 schrieb Tom Glod via use-livecode > mailto:use-livecode@lists.runrev.com>>: > > Great plugin i would say its a must for any developer using DGs > otherwise yo

[ANN] Release 9.0.1 RC-2

2018-08-22 Thread panagiotis merakos via use-livecode
Dear list members, We are pleased to announce the release of LiveCode 9.0.1 RC-2. Getting the Release === You can get the release at https://downloads.livecode.com/livecode/ or via the automatic updater. Release Contents LiveCode 9.0.1 RC-2 comes with 7 bugfixe