(open the stack, "stkMain")
Code: Select all
put 0 into GroundSpeed
Please help.
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
put 0 into GroundSpeed
You have not told the engine the container type you want to put it in. Right now it's thinking GroundSpeed is a variable.put 0 into GroundSpeed
Code: Select all
put 0 into GroundSpeed
put GroundSpeed into GroundSpeedBox
Code: Select all
put 0 into GroundSpeed
put GroundSpeed into GroundSpeedBox
Hi Simon,Simon wrote:OK stopping this thread.
Please see:
http://forums.runrev.com/phpBB2/viewtop ... =7&t=17528
Simon
Code: Select all
put 0 into GroundSpeed
put GroundSpeed into GroundSpeedBox
Code: Select all
put "0" into field GroundSpeedBox
I tried...Simon wrote:Yup. but quote the fields name
Code: Select all
put "0" into field "GroundSpeedBox"
Code: Select all
on mouseUp
put "123" into fld 1
end mouseUp
Code: Select all
on openCard
put "123" into fld 1
end openCard