Thank you all.
I have learned all I need to know.
And, as often on boards such as these, I have been introduced to ideas which are above my current need to know.
However, in a small corner of my brain, I will file some of the ideas, and will - when the need arises - come back here and find these ...
Search found 38 matches
- Sat Feb 10, 2018 12:54 am
- Forum: Talking LiveCode
- Topic: Not the foreground application
- Replies: 13
- Views: 14777
- Thu Feb 08, 2018 10:00 pm
- Forum: Talking LiveCode
- Topic: Not the foreground application
- Replies: 13
- Views: 14777
Re: Not the foreground application
Thanks.
What's wrong with using idle?
Incidentally. your incrementer incremented in leaps and bounds. One time it was increasing by fours, and another - when I restarted it, by nines.
Thanks
Tony
What's wrong with using idle?
Incidentally. your incrementer incremented in leaps and bounds. One time it was increasing by fours, and another - when I restarted it, by nines.
Thanks
Tony
- Thu Feb 08, 2018 7:14 pm
- Forum: Talking LiveCode
- Topic: Not the foreground application
- Replies: 13
- Views: 14777
Not the foreground application
Hi,
I want to have Livecode display, and update as necessary, the day, date and time on my Mac.
I have it working fine with an "On Idle" script. but only when LiveCode is the foremost, active, application.
How can I oblige LiveCode to carry on working when in the background.
Thanks,
Tony
I want to have Livecode display, and update as necessary, the day, date and time on my Mac.
I have it working fine with an "On Idle" script. but only when LiveCode is the foremost, active, application.
How can I oblige LiveCode to carry on working when in the background.
Thanks,
Tony
- Sun Jun 19, 2016 12:39 pm
- Forum: Talking LiveCode
- Topic: Capturing the RBG of a sequence of pixels
- Replies: 1
- Views: 2742
Capturing the RBG of a sequence of pixels
I have a photograph which I wish to stylise.
I intend to replace, both vertically and horizontally, ever second pixel's color value with that o the preceding one.
Thus, the color value of the pixel at 1,1 will also be given to the pixels at 1,2 and 2,1 and 2,2>
I have expected that the script for ...
I intend to replace, both vertically and horizontally, ever second pixel's color value with that o the preceding one.
Thus, the color value of the pixel at 1,1 will also be given to the pixels at 1,2 and 2,1 and 2,2>
I have expected that the script for ...
- Wed Dec 10, 2014 7:43 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Is the word "infinity" a problem for LiveCode?
- Replies: 5
- Views: 5482
Re: Is the word "infinity" a problem for LiveCode?
It gave me something to look at while the job was in progress.magice wrote:I am curious why you have "go to card a" within the repeat loop.
I hate looking at a locked screen.
- Tue Dec 09, 2014 9:27 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Is the word "infinity" a problem for LiveCode?
- Replies: 5
- Views: 5482
Is the word "infinity" a problem for LiveCode?
I have a stack which records thew words used in a word game I have been playing.
I wished to tally the frequency of occurrence of the words (there was a lot of repetition across levels).
The stack contained 26 cards, one for each letter of the alphabet, and each card had 8 fields - an identifying ...
I wished to tally the frequency of occurrence of the words (there was a lot of repetition across levels).
The stack contained 26 cards, one for each letter of the alphabet, and each card had 8 fields - an identifying ...
- Tue Oct 07, 2014 10:03 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Sorting glitch
- Replies: 5
- Views: 4920
Re: Sorting glitch
Yes, I discovered that deleting the spaces did not work because it did not delete all the spaces, because I only asked it to look for " ". I had to copy the offending 'space' into the script.
Thanks for the insight.
Thanks for the insight.
- Mon Oct 06, 2014 6:37 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Sorting glitch
- Replies: 5
- Views: 4920
Re: Sorting glitch
I've settled for adapting the sort as follows.
repeat with c = 1 to number of items in fred
if char 1 of item c of fred = " " then delete char 1 of item c of fred
end repeat
sort items of fred ascending
repeat with c = 1 to number of items in fred
put " " before char 1 of item c of fred
end ...
repeat with c = 1 to number of items in fred
if char 1 of item c of fred = " " then delete char 1 of item c of fred
end repeat
sort items of fred ascending
repeat with c = 1 to number of items in fred
put " " before char 1 of item c of fred
end ...
- Mon Oct 06, 2014 6:29 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Sorting glitch
- Replies: 5
- Views: 4920
Re: Sorting glitch
Why does the space matter, Craig?
Looks like I'll have to do a stripping out of the spaces following comas and then sort and then re-insert them.
If only I could use a doub;e-character itemdelimiter - ", "!!
Looks like I'll have to do a stripping out of the spaces following comas and then sort and then re-insert them.
If only I could use a doub;e-character itemdelimiter - ", "!!
- Mon Oct 06, 2014 5:13 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Sorting glitch
- Replies: 5
- Views: 4920
Sorting glitch
I have a field (named "Personnel") which contains lines of names of people appearing on music albums.
Following each name is a list of the things the person is credited with.
The primary item delimiter is "•", and then the person's entries are separated by commas
The Personnel field on one card ...
Following each name is a list of the things the person is credited with.
The primary item delimiter is "•", and then the person's entries are separated by commas
The Personnel field on one card ...
- Wed Sep 03, 2014 4:32 pm
- Forum: Feature Proposals
- Topic: scroll area color
- Replies: 3
- Views: 3462
scroll area color
Hi,
I have three fields - each coloured differently.
Each is a scrolling field.
I am aesthetically disappointed in the white/grey combination of the scroll bar and scroll area of the field.
Would it be possible to allow these to be coloured.
It would be great if the scroll area could be made a ...
I have three fields - each coloured differently.
Each is a scrolling field.
I am aesthetically disappointed in the white/grey combination of the scroll bar and scroll area of the field.
Would it be possible to allow these to be coloured.
It would be great if the scroll area could be made a ...
- Thu Aug 14, 2014 11:12 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: BackColor problem
- Replies: 3
- Views: 3423
Re: BackColor problem
Hi.
Do you have the "listBehavior" of your field set to "true"? This may interfere with the manual color changing you are trying to work. Set it to "false" (make sure that lockText is "true") and see if that helps.
Craig
The "listBehavior" is false
The field is not locked.
The following code ...
Do you have the "listBehavior" of your field set to "true"? This may interfere with the manual color changing you are trying to work. Set it to "false" (make sure that lockText is "true") and see if that helps.
Craig
The "listBehavior" is false
The field is not locked.
The following code ...
- Wed Aug 13, 2014 3:55 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: BackColor problem
- Replies: 3
- Views: 3423
BackColor problem
In the script of a scrolling field with several lines of text I wrote…
On mouseUp
if the controlKey is up then
put last word of (the value of the clickline) into numba
go to card numba of stack "AllSingles"
else
put word 2 of the clickline into Lin
if the backcolor of me = 255,255,255 then ...
On mouseUp
if the controlKey is up then
put last word of (the value of the clickline) into numba
go to card numba of stack "AllSingles"
else
put word 2 of the clickline into Lin
if the backcolor of me = 255,255,255 then ...
- Sun Mar 02, 2014 1:47 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: TextColor glitch
- Replies: 1
- Views: 2337
TextColor glitch
Why does the textcolor of a field return empty when no textcolor has been set?
I set the textcolor of the first line of text in field 1 to "255,0,0"
I have left the textcolor of line 2 unchanged from the default.
I have this script in a button
on mouseUp
repeat with a = 1 to 2
put "/" & the ...
I set the textcolor of the first line of text in field 1 to "255,0,0"
I have left the textcolor of line 2 unchanged from the default.
I have this script in a button
on mouseUp
repeat with a = 1 to 2
put "/" & the ...
- Sat Dec 14, 2013 7:35 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Fixedwidth font is not fixed
- Replies: 12
- Views: 9357
Re: Fixedwidth font is not fixed
DoneKlaus wrote:Could you please report this as a bug? http://quality.runrev.com
Thanks!