PDA

View Full Version : Previeuw text?


peer1
01-11-2006, 08:51 AM
hi,
I wanted to make a kind of form, where you can type in text, and then in a nother box it automaticly appears. I also wanted to add options for bold and italic text and diffirent types of font. like in this website (onlineplakletters.nl)

I was building this by using components, but i was already told not to do this, but to use textfields.

Now I have set it all up, but have no idea how to acctualy link all of them together.

Can anyone help me with this

Billy T
01-11-2006, 10:28 AM
dont really understand what you are after

textboxes have an onChange event so if you want changes in one box to be replicated in another do something like

box1.onChanged=function(){
box2.text=this.text;
}

are you trying to make a wsiwyg text editor?