property pWhichFrame --------------------------------------------------- -- Attach this behavior to a button to go to any -- labeled frame of a movie. -- -- Ken Loge - http://diginoodles.com --------------------------------------------------- on getPropertyDescriptionList me list = [:] addProp list, #pWhichFrame, [#comment: "Frame to go to when clicked:", #format: #marker, #default: ""] return list end on mouseUp me _movie.go(pWhichFrame) end