Search found 5 matches
- Tue Feb 21, 2017 12:18 am
- Forum: Off-Topic
- Topic: Private Message spam
- Replies: 3
- Views: 4679
Private Message spam
I just received a PM from "Davidnok" which consists mostly of Russian text in the Cyrillic alphabet. If Google Translate can be trusted, said PM is a advertisement for some sort of solar power gadget. For future reference, who's the best person to notify about PM spam?
- Fri May 27, 2016 7:20 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: A Nicer Beep
- Replies: 4
- Views: 4338
Re: A Nicer Beep
You might try to 'roll your own'. There's a shareware music app, Melody Assistant (google for it), which is free for the downloading; the makers hope you'll like MA so much you choose to pay them—which you should, because MA is pretty good. Among MA's many features, it lets you play your music with ...
- Fri May 27, 2016 7:04 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: sorting cards randomly in a stack
- Replies: 8
- Views: 5897
Re: sorting cards randomly in a stack
Hmmm. Does that stack have a stable number of cards, or can there be more or less cards at whichever time? And is there any chance of cards becoming marked or unmarked for whatever arbitrary reason? If you think that idiotproofing might be a prudent thing to do:
on ScrambleEm
put the number of ...
on ScrambleEm
put the number of ...
- Tue May 17, 2016 2:16 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Lots of Editing
- Replies: 6
- Views: 5628
Re: Lots of Editing
Not only but also...
If I clone a number of buttons can I change the
on mouseUp code to suit e.g. if the original
button is Button1
on mouseUp
put field Zero1 into field Numbers1
end mouseUp
The the first clone (Button2) would need
on mouseUp
put field Zero2 into field Numbers2
end mouseUp ...
If I clone a number of buttons can I change the
on mouseUp code to suit e.g. if the original
button is Button1
on mouseUp
put field Zero1 into field Numbers1
end mouseUp
The the first clone (Button2) would need
on mouseUp
put field Zero2 into field Numbers2
end mouseUp ...
- Tue May 17, 2016 2:04 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Fastest way to check if var contains numbers
- Replies: 7
- Views: 6183
Re: Fastest way to check if var contains numbers
Hmmm… regex should work…
put "2,3,4" into t
filter t with "*[0-9]*" -- this command looks for any of the 10 digits. if there is at least one digit in t, the filter will let it thru
if t <> "" then -- yes, the variable t does contain at least one digit
answer "yes"
else -- no, the variable t doesn ...
put "2,3,4" into t
filter t with "*[0-9]*" -- this command looks for any of the 10 digits. if there is at least one digit in t, the filter will let it thru
if t <> "" then -- yes, the variable t does contain at least one digit
answer "yes"
else -- no, the variable t doesn ...