Posts for February, 2010

jsFloater is top ten on google!

Wednesday, February 10th, 2010

Celebrating jsFloater’s appearance on the first result page in a google search for “Flash Liquid GUI”!

Hangin at the Bottom

Hangin at the Bottom

We’re just psyched to be in a google result page with the likes of James O’Reilly and actionscript.org.

Hooray!  If you haven’t checked out the code yet, by all means please do.

CSS Three, Can’t Wait for Thee

Friday, February 5th, 2010

Well, it’s not exactly what I’ve been asking for, but it’s actually quite a bit better than what I thought we might get.  Like wanting a pony for christmas and getting a great dane.

http://theblackboxoffice.com/wp-content/uploads/marmaduke.gif

It looks like CSS3 will have some pretty cool new attributes available for us developers.  Of course, it’s all proposed and not released yet, but let’s start salivating anyway:

(more…)

Sufferin Semantics! XML, HTML, jQuery, and MSIE

Thursday, February 4th, 2010

So, in a recent project, I’m consuming xml data and pulling out some text for a description field on an html page.  I’ve got some basic stuff, text for title information, paths to asset files stored as node attributes, the usual.  But something is bugging me.  I’ve included some html in my descriptions, all formatted according to xhtml standards, but it won’t be parsed by jQuery.

Dagnabit!  What is the point of combining xml and html standards if I can’t use them together all the time?  I know, you may be thinking, but xml is not html , no matter what you throw into your nodes.  You’re right, and this is exactly what jQuery tells us.  You can grab the text contents of any node, but if you have html tags in there, the .text() method in jQuery will just look right past them.  As it should.  This works fine, for little snippets like my titles, but what if I want to put some (ostensibly) well-formatted html code in my data?  Further, what about all those applications where you want to store html snips in a database and read them out in XML?  How do you get around this?

(more…)