livecode - Problems in substack -


i create main stack , substack, create button in sub stack performing find word in scrolling field(the scrolling field main stack). if coded

on mouseup     find "work" in field "text"--here "text" scrolling field placed in main stack         end mouseup 

this code button placed in substack. why it's not working? alternative way

you need tell field is:

on mouseup find "work" in field "text" on stack "mainstack" -- stack's name, or use stack id xxxx  end mouseup 

Comments

Popular posts from this blog

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

python - Mongodb How to add addtional information when aggregating? -

java - Incorrect order of records in M-M relationship in hibernate -