Joined: November 11th, 2004, 1:43 pm Posts: 172 Location: Buckinghamshire, UK
|
1). Have the input box's data saved to a variable.
2). use the following to read the input boxes display details (font, fontsize, italics etc etc)
text_Input.SetSelection(0,-1) var myTextFormat = text_Input.GetSelectionStyle() var myTextFont = myTextFormat.fontname
Debug.trace("Selected Text Area: " + my_Input +"\n")
where text_Input is the input object whose data is stored in my_Input variable....
From this details you can save the data to file...
|
|