Opening a Thick Box iFrame from Flash


/ Published in: ActionScript 3
Save to your folder(s)

Found this script on DesignFission's website and found it to be pretty handy.


Copy this code and paste it in your HTML
  1. import flash.external.ExternalInterface;
  2.  
  3. button_btn.addEventListener(MouseEvent.MOUSE_CLICK, popThickBox());
  4.  
  5. function popThickBox(){
  6. ExternalInterface.call(”tb_show” , null, ”page.html?KeepThis=true&TB_iframe=true&height=150&width=150″ , false);
  7. }

URL: http://designfission.com/blog/2007/10/14/opening-a-thickbox-iframe-from-flash/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.