Search found 12 matches
- Fri Mar 02, 2007 10:02 pm
- Forum: Talking LiveCode
- Topic: this wait until works
- Replies: 3
- Views: 5273
no, the whole point was to use "wait until" in one handler and restart it from another handler. This was just to test it, I skipped all the other stuff and reasons for doing it. Maybe a bit confusing that i made both handlers start from one button handler. I should not have put a subject on the last...
- Sun Feb 25, 2007 9:45 pm
- Forum: Feature Proposals
- Topic: Head Bangers documentation
- Replies: 2
- Views: 3723
OK....I will check it out. I am a bit lazy too, sort of like to find everything in one place. Also the usual problem with forums is: All the bestwork seems to drown in a mass of caos. Whish somebody could take the best code samples and put them somewhere in clear searchable categories, and with link...
- Sun Feb 25, 2007 9:32 pm
- Forum: Talking LiveCode
- Topic: this wait until works
- Replies: 3
- Views: 5273
this wait until works
Hi, finally made it, do not how I can upload the stack though...in case someone would like it. Regards Tore local fromTheBeginning, exitHandler on oneMoreLine -- this handler is for the "Next Line" button if fromTheBeginning = true then -- start handler: oneLineAtTheTime else set the cCustomProp of ...
- Fri Feb 23, 2007 7:29 pm
- Forum: Talking LiveCode
- Topic: Restart a handler by a message
- Replies: 2
- Views: 4298
- Fri Feb 23, 2007 4:41 pm
- Forum: Talking LiveCode
- Topic: Restart a handler by a message
- Replies: 2
- Views: 4298
Restart a handler by a message
How do I pause a handler and continue it by using: wait until ..... some message is sent from another handler or button script?
- Fri Feb 23, 2007 4:37 pm
- Forum: Feature Proposals
- Topic: Head Bangers documentation
- Replies: 2
- Views: 3723
Head Bangers documentation
I am a casual Revolutionary, but when I start a project I spend days writing code. And like today spend hours banging my head, because I get very impatient searching for code or explanations. Please include some more links to code examples in the Documentation Dictionary. Just accept that not all of...
- Wed Feb 14, 2007 9:32 pm
- Forum: Talking LiveCode
- Topic: variable pointers
- Replies: 12
- Views: 11280
- Tue Feb 13, 2007 8:25 pm
- Forum: Talking LiveCode
- Topic: variable pointers
- Replies: 12
- Views: 11280
Hi & thanks Mark, I did not mention that I used the list to put it in a table field, then making the array. But I believe you even have a ready solution for putting the array into a field without even using the combine command!? Anyhow, I would still like to know why we do not have variable pointers...
- Mon Feb 12, 2007 11:07 pm
- Forum: Talking LiveCode
- Topic: variable pointers
- Replies: 12
- Views: 11280
This is something of the kind I have been doing, looping throug a text to find sertain numbers like "no2", "no15": put "this is no2" & return & "this can be no15" & return into myText repeat with i = 1 to the number of lines in myText get matchText(line i of myText,"(no[0-9]+)", theText) put theText...
- Mon Feb 12, 2007 9:37 pm
- Forum: Talking LiveCode
- Topic: variable pointers
- Replies: 12
- Views: 11280
- Mon Feb 12, 2007 8:30 pm
- Forum: Talking LiveCode
- Topic: variable pointers
- Replies: 12
- Views: 11280
- Sun Feb 11, 2007 9:41 pm
- Forum: Talking LiveCode
- Topic: variable pointers
- Replies: 12
- Views: 11280
variable pointers
I am missing a method of variable pointers, so I have been using arrays instead:
put myVar into aKeyName
put theCalculation into myArray[aKeyName]
but this is not good in every situation, any other way?
put myVar into aKeyName
put theCalculation into myArray[aKeyName]
but this is not good in every situation, any other way?