Featured FLA
» Author: Bugra Ozden
» Title: Skatalog v9 - product catalog
» Description: Create your product catalog easly and publish on your website or Create your image gallery, documents list, portfolio. Fully XML Driven
» More by Bugra Ozden
Featured Site
» Posted in the Flash Kit Links section
» Title: Creative DW Image Show PRO
» Description: Creative DW Image Show PRO is a Dreamweaver extension which enables the user to create multimedia presentations. It combines the features of the popular Creative DW Image Show with the ability to add professional text effects to slides (similar to After Effects). The product is very customizable: the user can choose the duration of the transition effects, the slide motion start and end position, zoom and panning type for both images and texts.
This function is the Chr function's partner in crime. The Ord function will convert a character to its ASCII code equivalent. As I mentioned in the previous function, this can be used to convert uppercase letters to lower case letters. Let's see how the conversion works, in doing so, we will see how the Ord function works.
Set Variable: "upperCaseLetter" = "A"
Set Variable: "upperNumber" = Ord (upperCaseLetter)
Set Variable: "lowerNumber" = upperNumber + 32
Set Variable: "lowerCaseLetter" = Chr (lowerNumber)
upperCaseLetter = "A"
upperNumber = 65
lowerNumber = 97
lowerCaseLetter = "a"
There you have it. Code that will convert uppercase letters to lowercase letters. Note the number 32 used in the third line of code. This performs the conversion since there are 32 characters separating the letters "a" and "A". (see what an ASCII table looks like)
Eddie is the Content Editor at Flashkit.com and is actually a sentient Gateway Solo 2150xl notebook that suffers from acute lysdexia and caffine addiction. He is carried on the shoulders of a semi-autonomous human called "Body".