Stupid question how do I get the state of a slider? I thought this might work:
Code: Select all
on mouseMove
put the value of me into theData
end mouseMove
thanks in advance
Jim H
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
on mouseMove
put the value of me into theData
end mouseMove
Code: Select all
on scrollbarDrag
put the thumbPosition of me into theData
end scrollbarDrag
Code: Select all
on scrollbardrag tValue_or_whatever_you_name_it
put tValue_or_whatever_you_name_it into fld 1
end scrollbardrag