View Full Version : Flash help
vulcanstudios
December 2nd, 2006, 03:49 PM
Ok I might be dumb but is there a way to make a dynamic text box so on click it is selected in flash?
Helios
December 2nd, 2006, 04:39 PM
You can change a text box from 'static' to 'dynamic' or 'input' in the properties dialog at the bottom of the screen.
Let me know if you need any more help.
nsmchris
December 9th, 2006, 07:21 PM
may be a little late, but you can put an code on a button that selects the text and copies it to the clipboard.
copy_btn.onRelease = function() {
System.setClipboard(code_txt.text);
Selection.setFocus("code_txt");
Selection.setSelection(0,code_txt.text.length);
};
Chris...
Helios
December 9th, 2006, 09:53 PM
wow, I just realized that I misinterpreted your question, and gave you a dumb answer.
chris clearly wins this round ;)
vBulletin® v3.7.1, Copyright ©2000-2012, Jelsoft Enterprises Ltd.