-
1. Re: Text field issue
SeanWilson Sep 29, 2014 1:45 AM (in response to H.F. Duijndam)Assuming you really did name your field "Field 1" then try:
put word random (5) of "zien lopen gaan zitten ziek" into field "Field 1"
-
2. Re: Text field issue
H.F. Duijndam Sep 29, 2014 2:36 AM (in response to SeanWilson)wel this was some old code which worked in an older movie
thanks any way this works for me at the moment
Herman
-
3. Re: Text field issue
H.F. Duijndam Sep 29, 2014 3:17 AM (in response to SeanWilson)Hi Sean,
wel it seems that old code not will work anymore
maybe you will look at this for me, there are two fields named field 1 and FIeldCh.
The content of field 1 must put in to fieldCh then if fieldCh has the correct content you can go. (This part seems to work)
but if the content is different the field should be made empty
on mouseDown
cursor 4
put field "field 1" into field "FieldCh"
cursor 0
if field "FieldCh" = "Alkmene" then
put empty into field "Field 1"
end if
if field "FieldCh" = <> "Alkmene" then <-- this won't work
put empty into field "Field 1"
end if
end
Herman
-
4. Re: Text field issue
RemusM Sep 29, 2014 5:55 AM (in response to H.F. Duijndam)if field "FieldCh" = "Alkmene" then
-- OK. perform any action you want
else
put empty into field "Field 1"
end if
cheers


