
這次筆記來寫寫如何從元件庫呼叫mc 到舞台上
以往的做法就是很簡單.....F11打開元件庫,從元件庫中拖曳到舞台上來
這次的做法是用語法來控制與定位然後再利用該框架來當作addChild的目標位置
首先按照以下的步驟 F11打開元件庫
JEFF 發表在 痞客邦 留言(6) 人氣(4,667)
這幾天買了新的電腦
重灌了許多資料包含appserv
也把之前用wordpress製作的網站轉移過來
請參考 wordpress 搬家口訣 這時要登入後台時卻發生了
JEFF 發表在 痞客邦 留言(0) 人氣(153)
在製作wordpress 的外掛(plugin) 主題(theme)等等...時難免會碰到必須中文化的時候假如只是單純的修改.php程式碼未來要是碰到更新的時候 全部都得重新翻譯一次真的是很累人所以語言包就這樣出來囉在這邊 我選擇使用 poedit (網路上有很多教學) Wordpress特別要注意的就是幾個點要注意一下
JEFF 發表在 痞客邦 留言(0) 人氣(502)
// 隱藏後台控制台的widgets
function example_remove_dashboard_widgets() {
global $wp_meta_boxes;
//Main column
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']);//現在
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']);//最新迴響
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']);//收到新鏈結
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']);//外掛
//Side Column
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']); //快貼
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_recent_drafts']); //近期草稿
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']); //wordpress 網誌
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']); //其他wordpres 新聞
}
add_action('wp_dashboard_setup', 'example_remove_dashboard_widgets' );
JEFF 發表在 痞客邦 留言(1) 人氣(479)
網頁搬家可以說是常常會碰到的事情~
簡單的動作可是只要一個不小心就有可能會搞得很麻煩....
這邊做個小筆記囉(以下為個人口訣)
Wordpress 搬家
JEFF 發表在 痞客邦 留言(3) 人氣(965)
再製做wordpress theme的時候一定會碰到一些客製上的東西
比方說客戶要求寄信表單的所需內容物
或者某些地方想要套用自己的CSS
JEFF 發表在 痞客邦 留言(0) 人氣(179)

這幾天重灌了電腦也重灌了所有的軟體
在操作Flash的時候整個被Class Path搞慘了....
雖然是很基本的問題= ="但是太久重灌電腦也都忘記了一些基本設定
這邊就快點作點筆記囉
JEFF 發表在 痞客邦 留言(0) 人氣(294)
新年的一年來了
每年都會一直思考著自己上一年的成長
老實說....覺得上一年過得很不好
JEFF 發表在 痞客邦 留言(0) 人氣(31)
經過這幾天的餐會,認識了許多政商名人,看了許多大企業家努力奮鬥的精神和努力的成功
先是每個企業底下的員工以公司為榮的那種態度,
公司不惜成本培養著每位員工、重視員工
JEFF 發表在 痞客邦 留言(0) 人氣(48)
這兩天測試了SyntaxHighlighter這套外掛可以把程式碼貼到部落格上 並且保留完整的屬性 WordPress、Blogger、Pixnet設定方式都不一樣先來介紹Blogger的設定方式 首先登入blogger選擇 自訂 > 修改HTML > 然後再head標籤裡面輸入以下程式碼 <link href='http://alexgorbatchev.com/pub/sh/current/styles/shCore.css' rel='stylesheet' type='text/css'/>
<link href='http://alexgorbatchev.com/pub/sh/current/styles/shThemeDefault.css' rel='stylesheet' type='text/css'/>
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shCore.js' type='text/javascript'/>
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushAS3.js' type='text/javascript'/>
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushCSharp.js' type='text/javascript'/>
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushCss.js' type='text/javascript'/>
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushJava.js' type='text/javascript'/>
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushJScript.js' type='text/javascript'/>
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPhp.js' type='text/javascript'/>
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushSql.js' type='text/javascript'/>
<script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushXml.js' type='text/javascript'/>
<script language='javascript'>
SyntaxHighlighter.config.bloggerMode = true;
/*SyntaxHighlighter.config.clipboardSwf = 'http://alexgorbatchev.com/pub/sh/current/scripts/clipboard.swf';*/
SyntaxHighlighter.all();
</script>
JEFF 發表在 痞客邦 留言(1) 人氣(178)