Tips and tricks
Examples of sIFR used in special situations or special effects applied to the flash.
Multi-color sIFR
If you wish to make your sIFR text multiple colours visit: Maratz.com for a special branch of version 2.0.
Great Work Vanja and Marko
sIFR and anchors
When you want to use sIFR on links and don't want to compromise on accessibility and usability, check out this link:
Here you will see and read how to apply sIFR on links, that still do have:
- title attribute showing as tool tip
- accessible trough tabbing
- context menu on right-click
- href info showing up on status bar
- clean referrer passthrough
sIFR and Pixelfonts
in dontcustomizeme.as around line 116 you'll find :
textsize = textsize -12
if you add the following two lines straight after it, your font size will be a nice multiple of 8...
textsize = (Math.floor(textsize/8)*8); textsize = Math.max(8,textsize);

