Specifications
586
dreamweaver.latin1ToNative()
Availability
Dreamweaver 2
Description
Converts a string in Latin 1 encoding to the native encoding on the user’s computer. This 
function is intended for displaying the user interface of an extension file in another language.
Note: This function has no effect in Windows because Windows encodings are already based on Latin 1.
Arguments
stringToConvert
stringToConvert
 is the string to convert from Latin 1 encoding to native encoding.
Returns
The converted string.
dreamweaver.nativeToLatin1()
Availability
Dreamweaver 2
Description
Converts a string in native encoding to Latin 1 encoding.
Note: This function has no effect in Windows because Windows encodings are already based on Latin 1.
Arguments
stringToConvert
stringToConvert
 is the string to convert from native encoding to Latin 1 encoding.
Returns
The converted string.
Enabler
None.
dreamweaver.scanSourceString()
Availability
Dreamweaver UltraDev 1
Description
Scans a string of HTML and finds the tags, attributes, directives, and text. For each tag, attribute, 
directive, and text span that it finds, 
scanSourceString() invokes a callback function that you 
must supply. Dreamweaver supports the following callback functions: 
openTagBegin(), 
openTagEnd(), closeTagBegin(), closeTagEnd(), directive(), attribute(), and text(). 










