Type in text on a page, use that text in an animation
hi
i've been reading , starting play edge animate cc, can't write of code myself. (i used programmer can "read" it, haven't learnt languages in years.) video job director of children's theatre company , have interesting idea hope edge animate can do...
our show improvised children's ideas, write book. we'd love have animation of book on screen has title we've been given audience. don't have time add title after effects animation , render out, did wonder if make animation in edge animate , play live in html5. ideally we'd have text box, our live tech type name this, , animated webpage appear uses text they've typed in.
so how this? need store input text field, hide text field after (so our tech can turn on our live screen without showing it), play animation includes words stored input.
i have no idea if possible or start! know or want experiment basics of it?
thanks
matt andrews
yes, believe this. can store value of input text , load want in composition.
below how input field works:
var message = sym.$("message");
inputmessage = $('<textarea />').attr({'type':'textarea','rows':'10', 'cols': '25','value':'', 'id':'message'});
inputmessage .css ('font-size', 14);
inputmessage .css ('background-color', '#0a81fb');
inputmessage .css ('box-shadow', '#0a81fb');
inputmessage .css ('width', 350);
//inputmessage .css ('height', 200);
inputmessage .appendto(message);
below how value:
var messageinfo = inputmessage.attr("value");
then put in text field somewhere:
sym.$('anothertext').html(messageinfo);
or similar.
More discussions in Edge Animate CC
adobe
Comments
Post a Comment