I have the job of recreating a flex app in HTML and CSS. The existing app makes considerable use of TextFlow to layout content. For several reasons I need to be quite accurate (within a few pixels) with positioning.

The current application is loading data which looks like this:

<p paragraphstartindent="0"
  textalign="center"><span alignmentbaseline="useDominantBaseline"
  backgroundalpha="1"
  backgroundcolor="transparent"
  baselineshift="0"
  breakopportunity="auto"
  cffhinting="horizontalStem"
  color="0x0"
  digitcase="default"
  digitwidth="default"
  dominantbaseline="auto"
  fontfamily="ArialCFF"
  fontlookup="embeddedCFF"
  fontsize="22"
  fontstyle="normal"
  fontweight="bold"
  kerning="auto"
  ligaturelevel="common"
  lineheight="120%"
  linethrough="false"
  locale="en"
  renderingmode="cff"
  textalpha="1"
  textdecoration="none"
  textrotation="auto"
  trackingleft="0"
  trackingright="0"
  typographiccase="default">Here is some content which needs to be accurately positioned</span></p>

Ideally I'm looking for a library I can use to translate these many attributes into "proper" html and css. The current technology stack is PHP at the back end and javascript at the front end, but there would be little problem in using any other language to do the translation.

Failing that I guess I'll try and write my own, using the api reference as a guide.

link|improve this question
feedback

3 Answers

I don't think there's a lib available for that, but from having a quick look at the docs, it should be too hard to translate over. Most of the options you can ignore as they're impossible to do in css (without going into css3 - I'm assuming you want maximum compatibility here) and the rest are pretty basic (colour, font, padding, line-height...)

link|improve this answer
feedback

Maybe Wallaby, the Adobe App to convert FLA files to HTML5/CSS can be helpful if you manage to make it work with your Flex Files... http://labs.adobe.com/technologies/wallaby/

This, of course, would just be a starting point :) but hope it helps.

link|improve this answer
feedback

Unfortunately, you will never get pixel accuracy in HTML text, by design. Font rendering strategies between browsers, and even different browser modes (eg: IE9, Safari for Windows) can have different layouts.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.