Ran into a snag when implementing fancybox. 2 things you should check before implementing. Be sure to include the CSS file and be sure to use integers for exact dimensions of an iframe.

 

Setting the width and height on a iframe for percentages

$("#various3").fancybox({
'width' : '75%',
'height' : '75%',
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe'
});

Setting the width and height on a iframe for exact dimensions

$("#various3").fancybox({
'width' : 600, //remove quotes and set as integer
'height' : 400, //remove quotes and set as integer
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe'
});

The other day I ran into an interesting issue where my fla file would not publish a swf file on build (ctrl+enter). Of course after a little digging on the internet this appears to be a common occurrence. Read the rest of this entry »

ASP.Net and Twilio

Posted: October 25, 2011 in C#

I was super pumped to work on some twilio integration for an upcoming ARG by Rocketfuel Games. Read the rest of this entry »

Well the world’s friendliest community let me down a little but twitter is a busy place and not all tweets get the love they deserve. TWEET! No one answered me: So I thought it best to provide a sneak peek into a Level 2 certification course for Umbraco to help other devs gauge their skills prior to taking the certification course.

Read the rest of this entry »

I feel this is a common problem that umbraco users need to overcome: Groupings based on item counts. Read the rest of this entry »

Today I was working on a sizable 2000+ row excel file that I needed wanted formatted to a SIMPLE xml document.
Read the rest of this entry »

As advertised I have built an simple JQuery Image  Slider called – rfSlider. I was wondering why there wasn’t a simple snap-in  jquery rotator for Umbraco.

Read the rest of this entry »