I'm thinking that it's awfully easy to squirrel away scripts in obscure places in a LiveCode app (or Hypercard, or visual basic, etc).
Is there a way to see all the code of a LiveCode app in one place, no matter which object the code is identified with?
something like this maybe:
Code: Select all
-- card "Main Card" -- this is the card script
on something
blah
end something
-- card "Main Card" field "testing" -- this is the field's script
on textChanged
answer "I keep changing!"
end textChanged
-- card "Silliness" -- this card has no scripts...perhaps it doesn't need an entry here?
-- card "foo"