看你的圖片,那個字顯示應該是抓外部的檔案為來源,或是網頁丟給FLASH 的顯示字串,
你有確認過,相關的字串來源都是正常OK的嗎 ?
如果都不是以上猜測,字串是在FLAH 內寫死的 ,那真的有點神奇
Example:
//--------------------------------------------------------------*/
$item = $_GET['a'];
if (!$item) $item = $_POST['a'];
Router($item);
//
function Router($param)
{
$params = preg_split('/\//',trim($param));
$start = 0;
if (count($params) == 3)
{
$start = 1;
$folder = $params[0].'/';
}
$class = $params[$start];
$method = $params[$start+1];
if (!$class) $class = 'Index';
$class = ucfirst($class);
$class .= 'Gui';
// check
$path = dirname(__FILE__).'/controllers/'.$folder.$class.'.php';
if (!file_exists($path))
{
header("HTTP/1.0 404 Not Found");
exit;
}
// 瑼?摮??
include_once($path);
//
$Gui = new $class($method);
$Gui->paint();
}
?>
你會弄嗎 ? 付費給你如何 , 也要教我怎麼用喔
superkevin提到:
undefined
Flash 內的 Action Script,
出現以下兩種情形會被視為undefined: