I want to get list card and list objects of stack by name.
Before.I ask question "How to find stack of Project Browser ? - livecode".I can do it.
Now.I want to get list card and list objects of stack by name.
Can anyone show example code for me please ?
Here my code for get number of cards of this stack
answer the number of cards of this stack
But my code this error for get name card
answer the name of cards of this stack
-------I can solve this problem-------
on mouseUp
put the number of cards of this stack into numC
repeat with crd = 1 to the number of cards of this stack
answer the name of card crd
end repeat
end mouseUp