I’ve just tried LC 9.6.6 in Windows and playrate functions as 0 = stopped or >
0 = playing normal rate. Tested by playing a wmv and a mp3. Entering in a
positive number other than 1 causes it to pause for a second or two then start
playing at normal speed.
Mac does do the “variable speed” with
On 3/30/2022 5:18 PM, Klaus major-k via use-livecode wrote:
Am 27.03.2022 um 10:33 schrieb Klaus major-k via use-livecode
:
Hi all,
Am 24.03.2022 um 12:31 schrieb Klaus major-k via use-livecode
:
Hi friends,
LC never ceases to surprise me and I love that!
1. In earlier versions setting
On 30/03/2022 22:18, Klaus major-k via use-livecode wrote:
At least on a Mac. Is this also the case on Windows?
could someone please test it and report here?
Thank you!
really noone has a minute to test? :-(
Oh, I have a minute. Unfortunately, I don't have a 'Windows".
Alex.
P.S. Actual
On 3/30/22 3:36 PM, Bob Sneidar via use-livecode wrote:
On Mar 30, 2022, at 12:16 , J. Landman Gay via use-livecode
wrote:
On 3/30/22 11:21 AM, Guillaume Hédieu via use-livecode wrote:
Thank you for your "welcome". I'm pleased to see that there is a community
around Livecode :)
The best thi
Hallo Klaus, congrats , looks interesting and useful. Will you be
marketing this ?
On Wed, Mar 30, 2022 at 12:03 PM Klaus major-k via use-livecode <
use-livecode@lists.runrev.com> wrote:
> Hi Bill,
>
> > Am 29.03.2022 um 18:04 schrieb Klaus major-k via use-livecode <
> use-livecode@lists.runrev.
Hmmm.
It isn’t that the “D” is concatenated onto the “ABC, (that would never happen)
but rather that the word ”ABC” comes before “AB”, but only if there is a second
word in each line:
ABC
AB
Sorts to
AB
ABC
———
BUT:
ABC XXX
AB XXX
sorts to:
ABC XXX
AB XXX
Not sure I get this.
Crai
> Am 27.03.2022 um 10:33 schrieb Klaus major-k via use-livecode
> :
>
> Hi all,
>
>> Am 24.03.2022 um 12:31 schrieb Klaus major-k via use-livecode
>> :
>>
>> Hi friends,
>>
>> LC never ceases to surprise me and I love that!
>>
>> 1. In earlier versions setting the "playrate" of a player o
On 3/30/2022 4:39 PM, Craig Newman via use-livecode wrote:
Paul
I just reread your earlier post. Did you mean concatenating as if each line
became a single long word? That would never do, of course, and is not how the
line of code works.
This is what I was referring to:
Input data: (note
Maybe this is easier to read:
ABC XYZ GGG
ACB XYZ GHH
ABC XYZ DEF
AAB XYZ GGG
AAC XYZ GHH
AAA XYZ DEF
gives
AAA XYZ DEF
AAB XYZ GGG
AAC XYZ GHH
ABC XYZ DEF
ABC XYZ GGG
ACB XYZ GHH
Each word is sorted in a stable way. The first word takes overall precedence.
The second word takes se
Paul
I just reread your earlier post. Did you mean concatenating as if each line
became a single long word? That would never do, of course, and is not how the
line of code works.
Craig
> On Mar 30, 2022, at 4:26 PM, Paul Dupuis via use-livecode
> wrote:
>
> On 3/30/2022 4:13 PM, Craig Newma
Paul.
So if you had the following list of words:
Ant Bat Chicken
Ash Arc Baton
Abacus aardvark Ax
Axle Apron Allspice
Africa Amazing Club
and ran the same line of code, you would get:
Abacus aardvark Ax
Africa Amazing Club
Ant Bat Chicken
Ash Arc Baton
Axle Apron Allspice
Is this wha
> On Mar 30, 2022, at 12:16 , J. Landman Gay via use-livecode
> wrote:
>
> On 3/30/22 11:21 AM, Guillaume Hédieu via use-livecode wrote:
>> Thank you for your "welcome". I'm pleased to see that there is a community
>> around Livecode :)
>
> The best thing about our community is that we don't to
On 3/30/2022 4:13 PM, Craig Newman via use-livecode wrote:
A way I have always used was developed back in the HC days. Assuming you have your
list in the variable “yourList"
sort lines of yourList by word 1 of each & word 2 of each & word 3 of each
I used single letters as an example, but m
I hate that one cannot edit previous posts here like we can on the forum.
I meant “tabs”. not “tase”.
Craig
> On Mar 30, 2022, at 4:15 PM, Craig Newman wrote:
>
> I am assuming here that there are spaces separating the chars in your list.
> The use of “words” will also delimit if those are ta
I am assuming here that there are spaces separating the chars in your list. The
use of “words” will also delimit if those are tase instead of spaces. But the
method is worth exploring…
Craig
> On Mar 30, 2022, at 3:39 PM, Paul Dupuis via use-livecode
> wrote:
>
> A B C
> A A B
> A B A
> A A
A way I have always used was developed back in the HC days. Assuming you have
your list in the variable “yourList"
sort lines of yourList by word 1 of each & word 2 of each & word 3 of each
Nothing shows off the stable sort power of either HC or LC like that.
Craig
> On Mar 30, 2022, at 3:39
On 3/30/22 12:39, Paul Dupuis via use-livecode wrote:
Is this "correct"? This is what the dictionary entry is referring to as
a "stable sort"?
That's correct. Here's something I do to sort the executionContexts:
# display grouped by object, then handler, then by line number and depth
sort num
And I, even though a long time user, have proven Jacqueline wrong on this point
and they all still treat me well.
Roger
> On Mar 30, 2022, at 12:16 PM, J. Landman Gay via use-livecode
> wrote:
>
> No question is too silly.
___
use-livecode mailing
Welcome to the community Guillaume!!!
This milling list has saved me many times over. :)
Reach out anytime.
On Wed, Mar 30, 2022 at 12:02 PM Pi Digital via use-livecode <
use-livecode@lists.runrev.com> wrote:
> A very warm welcome to you, Guillaume. You will find everyone really
> helpful here.
Hello,
I need a little help today wrapping my mind around something simple in
LiveCode.
sort [{lines | items} of] container [direction] [sortType] [by sortKey ]
I have 3 columns of tab and cr delimited data. For example:
A B C
A A B
A B A
A A A
A A C
If I want to sort by col 1, then 2, then
On 3/30/22 12:16, J. Landman Gay via use-livecode wrote:
No question is too silly.
Gimme some time... I'm sure I can come up with something.
--
Mark Wieder
ahsoftw...@gmail.com
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please v
On 3/30/22 11:21 AM, Guillaume Hédieu via use-livecode wrote:
Thank you for your "welcome". I'm pleased to see that there is a community
around Livecode :)
The best thing about our community is that we don't tolerate trolls, so everyone here is kind
and helpful. And we love to support each oth
Sorry, a few artifacts from a previous version snuck in there. Here is the
latest.
on setWindowInScreen pStackName
-- the stack rect
put the rect of stack pStackName into tStackRect
-- the rect of the screen the stack belongs to
put the screen of stack pStackName into tScreenNum
Hi everyone,
Thank you for your "welcome". I'm pleased to see that there is a community
around Livecode :)
@Ludovic : Salut et merci, je serais ravi de prendre contact avec toi pour
échanger. Comment pourrions nous nous contacter ?
Happy LC !
Guillaume
__
Hi all.
For those dealing with the stack appearing offscreen, here is a handy handler
for moving the stack so that it is fully visible to the screen it belongs to.
Note that the screen it belongs to is determined by the loc of the stack. Maybe
this should be added to the Master Library?
Bob
Hi Bill,
> Am 29.03.2022 um 18:04 schrieb Klaus major-k via use-livecode
> :
>
> Hi Bill,
>
>> Am 29.03.2022 um 17:53 schrieb William Prothero
>> :
>>
>> Klaus,
>> It looks interesting. The url to your site works, but I get only German
>> language.
I added a bullet to separate german from e
A very warm welcome to you, Guillaume. You will find everyone really helpful
here.
Sean Cole
Pi Digital Productions Ltd
eMail Ts & Cs
> On 30 Mar 2022, at 16:06, Bob Sneidar via use-livecode
> wrote:
>
> You will find it to be a USE list (emphasis on USEful.)
>
> Bob S
>
>
>> On Mar 3
You will find it to be a USE list (emphasis on USEful.)
Bob S
> On Mar 30, 2022, at 06:50 , Guillaume Hédieu via use-livecode
> wrote:
>
> Hi everyone,
>
> Just a message to say hello. I'm new to Livecode. First of all, please
> apologize for my english, it's not my native language.
>
> I
> Le 30 mars 2022 à 15:50, Guillaume Hédieu via use-livecode
> a écrit :
>
> Hi everyone,
>
> Just a message to say hello. I'm new to Livecode. First of all, please
> apologize for my english, it's not my native language.
>
Alors bienvenue ! ;-)
Ludovic
_
Welcome + 1.
Ask anything and we will try to help. This list help me on day one and hope we
can return the favor.
Ralph DiMola
IT Director
Evergreen Information Services
rdim...@evergreeninfo.net
-Original Message-
From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Be
Yes, welcome.
Please know that there are two principal venues for LiveCode discussion. The
other one (my personal favorite) is at:
https://forums.livecode.com
> On Mar 30, 2022, at 9:54 AM, Paul Dupuis via use-livecode
> wrote:
>
> On 3/30/2022 9:50 AM, Guillaume Hédieu via use-livecode wro
On 3/30/2022 9:50 AM, Guillaume Hédieu via use-livecode wrote:
Hi everyone,
Just a message to say hello. I'm new to Livecode. First of all, please
apologize for my english, it's not my native language.
I am a computer scientist in an association that trains students for
working in some social p
Hi everyone,
Just a message to say hello. I'm new to Livecode. First of all, please
apologize for my english, it's not my native language.
I am a computer scientist in an association that trains students for
working in some social profession.
I like "make and dev" and working with Livecode it's
33 matches
Mail list logo