Hi,
Just wondering if it's possible in the LiveCode IDE to rotate a field so the text displays vertically, such as on the vertical axis of a chart.
Thanks!
Phil E.
Vertical Fields? Can I Change Text's Angle?
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Re: Vertical Fields? Can I Change Text's Angle?
Hi Phil,
Nope, vertical text is not supported.
Scott Rossi has a solution;
http://www.tactilemedia.com/
Dig around there and find his tutorials.
Simon
Nope, vertical text is not supported.
Scott Rossi has a solution;
http://www.tactilemedia.com/
Dig around there and find his tutorials.
Simon
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!
Re: Vertical Fields? Can I Change Text's Angle?
Thanks, Simon!
Have a great day.
Kind regards,
Phil E.
Have a great day.
Kind regards,
Phil E.
Re: Vertical Fields? Can I Change Text's Angle?
You can use a narrow vertical field if you want the characters
to remain upright and readable.
Try this...
drop a field onto a card and call it "fDisplay"
Pull it into the shape you want.
drop a button onto the card. put the code below into the button.
---------------------------------------------------
on mouseUp
put empty into fld "fDisplay"
put "Livecode is cool" into tempHold
repeat with i = 1 to the number of chars of tempHold
put char i of tempHold & return after fld "fDisplay"
wait for 10 milliseconds -- not needed, just for effect
end repeat
end mouseUp
---------------------------------------------------
You can adjust font type, size, textHeight and margins to get things how you want.
Paul
to remain upright and readable.
Try this...
drop a field onto a card and call it "fDisplay"
Pull it into the shape you want.
drop a button onto the card. put the code below into the button.
---------------------------------------------------
on mouseUp
put empty into fld "fDisplay"
put "Livecode is cool" into tempHold
repeat with i = 1 to the number of chars of tempHold
put char i of tempHold & return after fld "fDisplay"
wait for 10 milliseconds -- not needed, just for effect
end repeat
end mouseUp
---------------------------------------------------
You can adjust font type, size, textHeight and margins to get things how you want.
Paul