// USAGE: [flash=width,height]http://www.example.com/file.swf[/flash] $movie_path = (substr($code_text,0,4) == "http") ? "http://".eregi_replace("http://", "",$code_text) : $code_text; $movie_path = $tp -> toAttribute($movie_path); $parm_array = explode(",",$parm); $width_type = strpos($parm_array[0], "%") !== FALSE ? "%" : ""; $height_type = strpos($parm_array[1], "%") !== FALSE ? "%" : ""; $width_value = ereg_replace("[^0-9]","",$parm_array[0]); $height_value = ereg_replace("[^0-9]","",$parm_array[1]); $width_value = $width_value ? $width_value.$width_type : "50"; $height_value = $height_value ? $height_value.$height_type : "50"; return " ";