Hi lcfan,
1. welcome to the forum!
2. use the KIND and NAME (or number or ID) when addressing objects in LC:
Code: Select all
...
if the label of BUTTON "start" = "cntr" then
## Or save some typing and use the abbreviation -> btn
set the label of btn "start" to "stop"
end if
...
This way you can also access objects that are NOT on the current card or even in the current stack:
...
set the label of btn "another button" of cd "another card not in THIS stack" of stack "yet another stack" to "another label..."
...
Like a correct address on a (postal) letter!
Means: Wrong address = no delivery!
3. Please check these stacks to learn more about the very basics of Livecode:
http://www.hyperactivesw.com/revscriptc ... ences.html
There is also a DEBUGGING sexample stack!
Best
Klaus