TextSnapshot.getCount()
791
textToFind
A string specifying the text to search for. If you specify a string literal instead of a
variable of type String, enclose the string in quotation marks.
caseSensitive
A Boolean value specifying whether the text in
my_snap
must match the case
of the string in
textToFind
.
Returns
The zero-based index position of the first occurrence of the specified text, or -1.
Description
Method; searches the specified TextSnapshot object and returns the position of the first
occurrence of
textToFind
found at or after
startIndex
. If
textToFind
is not found, the
method returns -1.
Example
The following example illustrates how to use this method. To use this code, create a static text
field that contains the text “TextSnapshot Example”.
var my_mc:MovieClip = this;
var my_snap:TextSnapshot = my_mc.getTextSnapshot();
var index1:Number = my_snap.findText(0, "Snap", true);
var index2:Number = my_snap.findText(0, "snap", true);
var index3:Number = my_snap.findText(0, "snap", false);
trace(index1); // output: 4
trace(index2); // output: -1
trace(index3); // output: 4
See also
TextSnapshot.getText()
TextSnapshot.getCount()
Availability
Authoring: Flash MX 2004.
Playback: SWF files published for Flash Player 6 or later, playing in Flash Player 7 or later.
Usage
my_snap
.getCount()
: Number
Parameters
None.
Returns
An integer representing the number of characters in the specified TextSnapshot object.
Description
Method; returns the number of characters in a TextSnapshot object.
Summary of Contents for FLEX-FLEX ACTIONSCRIPT LANGUAGE
Page 1: ...Flex ActionScript Language Reference...
Page 8: ......
Page 66: ...66 Chapter 2 Creating Custom Classes with ActionScript 2 0...
Page 76: ......
Page 133: ...break 133 See also for for in do while while switch case continue throw try catch finally...
Page 135: ...case 135 See also break default strict equality switch...
Page 146: ...146 Chapter 5 ActionScript Core Language Elements See also break continue while...
Page 808: ...808 Chapter 7 ActionScript for Flash...
Page 810: ...810 Appendix A Deprecated Flash 4 operators...
Page 815: ...Other keys 815 Num Lock 144 186 187 _ 189 191 192 219 220 221 222 Key Key code...
Page 816: ...816 Appendix B Keyboard Keys and Key Code Values...
Page 822: ...822 Index...