I tried the snippet below but it doesn’t work so think it is right. Tried it in page.php but not real sure where to put it.
<?php \
function wpb_adding_scripts()
{wp_register_script(‘swfobject_script’, plugins_url(‘swfobject.js’, __FILE__), array(‘jquery’),’1.1′, true);
wp_enqueue_script(‘swfobject_script’); }
add_action( ‘wp_enqueue_scripts’, ‘wpb_adding_scripts’ );
?>