hello
I’m creating a site where you move between areas with input textfields, some areas need text in the textfields before the user inputs there own text some don’t.
I’ve already got it ‘sort of’ working with the following code attached to the buttons that navigate between areas
photo.onRelease = function (){
gotoAndPlay("WedCon");
edit_wed="some text that the user will see"
};
But it yields some strange text editing problems; such as the inability to copy and paste into the textfield and the very annoying problem of only being able to navigate inside of the textfield by using the arrow keys.
There must be a better way to have text load into a targeted textfield?