WizTextTyper Documentation
Author: Jonwiz Media
Last Modified: 03/13/08 18:08:45
Summary
WizTextTyper class:
WizTextTyper Properties:
WizTextTyper Methods:
version: 3.0.3
description:
The famous WizTextTyper by Jonwiz Media, the leading Flash Typer Component on the web!
Now released as an Object Oriented AS2 Component! Sweet!
usage:
To install the WizTextTyper and begin using it, simply follow these steps below:(String) The Font Name to be used.
(Color) The Font Color
(Color) The Font Color on RollOver.
(Number) The Font Size.
(Number) The Width of the TextField.
(Number) The Height of the TextField.
(Number) The leading (line-height spacing) of the TextField.
(Number) The speed in milliseconds of the typing interval.
(Boolean) Sets TextField border to true or false.
(Color) Sets the TextField border color.
(Boolean) Sets TextField background to true or false.
(Color) Sets the TextField background color.
(Boolean) Sets whether or not the TextField is using an Embedded Font
(String) Sets the character used to pause typing.
(TextField) The instance name of the WizTextTyper TextField.
description:
Sets the speed interval in milliseconds. It must be called before
WizTextTyper.setSentence(myString,go) is called.
usage: WizTextTyper.setTypingSpeed(100)
parameters:
returns: Void.
description: Gets the speed interval in milliseconds.
usage: WizTextTyper.getTypingSpeed()
returns: myTypingSpeed (Number) The speed interval in milliseconds.
description: Sets the text to type, if the second parameter "go" is true, it will begin typing immediately.
usage: WizTextTyper.setSentence(myString,go)
parameters:
returns: Void.
description:
Begins the typing, usually called after a WizTextTyper.setSentence("set text but dont start typing",false);
This is how you manually begin the typing if you passed false as the go (Boolean) argument to setSentence(myString,go).
usage: WizTextTyper.beginTyping()
returns: Void.
description:
Pauses the typing, this will stop the typing until WizTextTyper.resumeTyping() is called.
usage: WizTextTyper.pauseTyping()
returns: Void.
description:
Resumes the typing after WizTextTyper.pauseTyping() was called.
usage: WizTextTyper.resumeTyping()
returns: Void.
description: This restarts the typing
usage: WizTextTyper.typeAgain()
returns: Void.
description: Sets the leading (line-height) of the text.
usage: WizTextTyper.setLeading(leading)
returns: Void.