|
FLASH8 - layout fields
8
24
7396 bytes
699 bytes
2007-10-19 19:43:43
2007-10-19 19:48:01
Oldes (oliva.david@seznam.cz)

Example of layout with fields (Field, Password and Area)
|
|
background 200.200.200
require %tracer.rswf
layout [
at 10x60
across
Text 70x20 "Name:"
f1: Field 300x20 "test" [
trace("onKillFocus")
]
return
Text 70x20 "Password:"
f2: Password 300x20
return
Text 70x20 "Text:"
f3: Area 300x80
return
pad 72x0
Button-submit 300x20 [
trace("SUBMIT:" this)
trace("Text:" f3.text)
trace("Name:" f1.text "Password:" f2.text)
]
]
showFrame end
|