Question

I'm trying to use siFR 3. I need set to the flash element to use max width for a text replaced. The width of flash text can use 200px MAX.

The problem of the following code is that

Here's is my test code :

sIFR.replace(myFont, {
  selector: '.myDiv'
  , css: { 
    '.sIFR-root': { 'color': '#077cd7' }
  }
  , forceSingleLine: true
  , fitExactly: true                         // !!! Change nothing
  , tuneWidth: 200                           // !!! Change nothing
  , transparent: true                        
});

Thank in advance for any advice or else informations.

Was it helpful?

Solution

Make sure the HTML element you are replacing has a max width of 200px.

tuneWidth adds to the width of the Flash movie, so that'll only make it larger.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top