ymiLive-Style Flowplayer Playlist

Posted in reference, resources, scripts with tags , , on January 26, 2010 by joevance

c/o Ernie Miller: Handy trick if you are looking to do a flowplayer playlist like Joe did on http://ymilive.missiondata.net / http://www.ymilive.org: set the first clip’s class to “progress” in the HTML, add a display: none for each of the dynamic playlist classes of progress, playing, and paused, and you’re done.

Flowplayer is smart enough to scrub your fake “progress” class if another video is clicked.

Content Magic 2 Specific Article Display

Posted in reference, scripts with tags , , , , on December 15, 2009 by joevance
The code below will establish a link to a specific article in Content Magic 2 (change the text in red to match the needed customer, category, and article IDs from CM2):
<!–#if expr=”${QUERY_STRING} ~= /article\=/” –>
<!–#include virtual=”/cm2/articleDisplay.do?${QUERY_STRING}” –>
<!–#else –>
<!–#include virtual=”/cm2/articleDisplay.do?customer=177&cat=1749&label=0&article=MTAzMDlzdXBlcjEwMzA2c2VjcmV0MTAzMTM=” –>
<!–#endif –>

My WordPress Cheat Sheet

Posted in Uncategorized on July 23, 2009 by toddbudnikas

spellr.us – Website Spell Checker

Posted in software with tags , on June 30, 2009 by toddbudnikas

HTML email inline styler

Posted in software with tags , , , on June 29, 2009 by toddbudnikas

jQuery target=”_blank” replacement

Posted in scripts with tags on June 12, 2009 by toddbudnikas

$("a").each(
		function ()
		{
			if(this.rel=="external")
			{
				this.target="blank";
			}
		}
	);

Deploy* Beta 1.4 | Choose, Bookmark, Deploy

Posted in software with tags , , , , on May 23, 2009 by toddbudnikas

Update: jQuery UI 1.7 Slider from a Select Element | Filament Group, Inc., Boston, MA

Posted in scripts with tags , , , on May 21, 2009 by toddbudnikas

ContentMagic2 Meta-Tags/Keywords Include

Posted in articles, reference with tags , , on May 14, 2009 by joevance

 

<!–#if expr=”${QUERY_STRING} ~= /article\=/” –>
    <!–#include virtual=”/cm2/articleHeadDisplay.do?${QUERY_STRING}” –>
    <!–#else –>
    <!–#include virtual=”/cm2/categoryHeadDisplay.do?customer=177&cat=1742″ –>
    <!–#endif –>

<!–#if expr=”${QUERY_STRING} ~= /article\=/” –>

    <!–#include virtual=”/cm2/articleHeadDisplay.do?${QUERY_STRING}” –>

    <!–#else –>

    <!–#include virtual=”/cm2/categoryHeadDisplay.do?customer=#&cat=#” –>

    <!–#endif –>

For CM2 sites needing the proper include to display the meta tags and keywords in the <head> tag, use the above, replacing the red “#” with the proper customer/category IDs.

Nice Login / Register Form

Posted in inspiration, reference with tags , , on April 20, 2009 by toddbudnikas