
ercrta.blogspot.com
*~Eyes On Me~*Flash相關學習筆記
http://ercrta.blogspot.com/
Flash相關學習筆記
http://ercrta.blogspot.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Saturday
LOAD TIME
0.2 seconds
16x16
32x32
PAGES IN
THIS WEBSITE
20
SSL
EXTERNAL LINKS
36
SITE IP
172.217.6.65
LOAD TIME
0.209 sec
SCORE
6.2
*~Eyes On Me~* | ercrta.blogspot.com Reviews
https://ercrta.blogspot.com
Flash相關學習筆記
nodejs-模組(Module) & 套件(Package) | *~Eyes On Me~*
http://ercrta.blogspot.com/2015/05/nodejs-module-package.html
Eyes On Me *. 11一個Node.js檔案就是一個模組,這檔案可能是js程式、json或編譯過的c/c 擴充. Var my module=require('./module');. My module.setName('By');. My module.sayHi();. Var my module1=require('./module');. My module1.setName('my module1');. My module1.sayHi();. Var my module2=require('./module');. My module2.setName('my module2');. My module1.sayHi();. 我們兩次都是呼叫my module1,卻發現第二次呼叫的my module1的值被,my module2給蓋過,表示my module1跟my module2指向同一個實例. 有時只想把物件封裝到模組中,建立obj.js內容如下:. 想取用時,建立getobj.js,內容如下:. Var obj=new HiClass();.
nodejs-05 安裝套件-supervisor | *~Eyes On Me~*
http://ercrta.blogspot.com/2013/07/nodejs-05-supervisor.html
Eyes On Me *. 就一定要把command視窗關掉,然後再開啟重新執行,若是路徑設得比較深入的人…真的光輸入路徑就浪費掉好多時間. 65292; 需按下Ctrl C,重新啟動. 65292;幸好網路上已經有方便的套件可以使用,幫助我們解決這種困擾,安裝supervisor套件就是一個解決方法。 開啟command視窗,輸入npm install supervisor -g 然後就會自動下載並安裝. 安裝完後,要使用 supervisor 程式名稱.js. 來取代之前用 node 程式名稱.js. 例如前面的範例的程式檔名都是index.js 所以我都是執行 node index.js,現在的話,就是改成執行 supervisor index.js來啟動程式。 之後若是有修改index.js,就不用再重新啟動command視窗,它會自動更新。 Npm install 套件名稱 -g. 其中-g指的全域安裝,不論你的程式在那裡,都可以使用這個套件;. 若是非全域安裝的話,就要注意你指行install指令的命令下在那個資料夾,那就只有那個資料夾有安裝套件。 訂閱: 張貼留言 (Atom).
nodejs-06 製作聊天室01 安裝套件-socket.io | *~Eyes On Me~*
http://ercrta.blogspot.com/2013/07/nodejs-06-01-socketio.html
Eyes On Me *. Nodejs-06 製作聊天室01 安裝套件-socket.io. 接下來這幾篇要來寫聊天室的製作,首先要先裝socket.io。 Socket.io網站: http:/ socket.io. 中文介紹: http:/ ithelp.ithome.com.tw/question/10102886. 開啟command視窗,輸入 npm install socket.io. 這東西我是直接把它當成server的概念來看待,安裝完後,我希望完成client跟server的互動如下圖:. 訂閱: 張貼留言 (Atom). 想當一位稱職的程式設計師 路還遠得很 我的信箱: knowledge.temp@yahoo.com.tw. Nodejs-06 製作聊天室01 安裝套件-socket.io. Converted To Blogger Template.
十二月 2010 | *~Eyes On Me~*
http://ercrta.blogspot.com/2010_12_01_archive.html
Eyes On Me *. AdvancED Game Design with Flash-0. AdvancED Game Design with Flash 讀書筆記. This folder contains the extra things that you use in your project, like images, video, and. Sound 其它需要在這個專案中用到的東西,像圖片、影像、聲音. This optional folder is used for the final published form that your game takes, such as. Part of an HTML file.最後發佈時產生的檔案,例如HTML檔,這個資料不是必要的。 This is the destination folder for compiled SWFs. “bin” is short for “binary,” which is another. Way of referring to finished, compiled programs. 發佈的SWF檔.
mysql脫逸字元 | *~Eyes On Me~*
http://ercrta.blogspot.com/2014/12/mysql.html
Eyes On Me *. 我想查出a 開頭的name,像a b跟a c,所以sql下了:. Select * from name table where name like LIKE 'a %'. Mysql中的2個萬用字元,與 LIKE 關鍵字一起使用的. 參考: http:/ www.1keydata.com/tw/sql/sql-wildcard.html. 解決方式便是使用脫逸字元 ,在 後的第一個字元會脫逸,修正語法如下:. Select * from name table where name like LIKE 'a %'. 另一個解決方法可使用 ESCAPE ,範例是使用 ,表示在 後的第一個字元會脫逸:. SELECT * FROM name table where name like 'a %' ESCAPE ' '. ESCAPE 範例2,使用z,表示在z後的第一個字元會脫逸. SELECT * FROM name table where name like 'az %' ESCAPE 'z'. 訂閱: 張貼留言 (Atom).
TOTAL PAGES IN THIS WEBSITE
20
熊阿寶工作MEMO: 【Unity4.4】使用SoundManager與NGUI做簡易播音樂工具
http://bearuwork.blogspot.com/2014/07/unity44soundmanagerngui.html
雜七雜八,程式碼、Unity、還有遊戲. 12304;Unity4.4】使用SoundManager與NGUI做簡易播音樂工具. UISlider slider; / 就是拿來做音量調整的Bar AudioClip music; / 要播放的音樂 UILabel buttonLabel; bool ReallyPlay = false; void Start(){ slider = GetComponent. EventDelegate.Add(slider.onChange, OnChangeSlider); UIButton btn = GameObject.Find("PlayButton").GetComponent. EventDelegate.Add(btn.onClick, OnPlayMusic); buttonLabel = GameObject.Find("PlayLabel").GetComponent. SoundManager的Play語法要改調用。比如說我使用的是Music SoundConnections Group:. 訂閱: 張貼留言 (Atom).
熊阿寶工作MEMO: 七月 2014
http://bearuwork.blogspot.com/2014_07_01_archive.html
雜七雜八,程式碼、Unity、還有遊戲. 12304;Unity4.4】使用SoundManager與NGUI做簡易播音樂工具. 訂閱: 文章 (Atom). ViewPager PagerAdapter AsyncTask 讓讀圖更順利. Google 將逐步結束 Mac 與 Windows 版的 Chrome apps 支援. The Will Will Web. 如何修改 Visual Studio Code 內建的 TypeScript 版本. Eyes On Me *. 一本学习cocos2d的新书《Cocos2D权威指南》 - 子龙山人. 12304;Unity4.4】使用SoundManager與NGUI做簡易播音樂工具. 本部落格的所有著作接採用 創用 CC 姓名標示-非商業性-相同方式分享 3.0 台灣 授權條款. 65292;本人擁有智慧財產權,請勿任意轉載. 由 Blogger.
熊阿寶工作MEMO: 個人簡介
http://bearuwork.blogspot.com/p/phpcsshtmljavascriptnscripterluavisualb.html
雜七雜八,程式碼、Unity、還有遊戲. 興趣:塗塗寫寫,興趣很廣泛。 專長:Object-C、CSS、HTML、JavaScript、JQuery、ActionScript3.0、ActionScript2.0、PHP、FLASH、XCODE、ANDROID;PhotoShop、SAI. 9679; 私立元智大學 資訊傳播系 互動科技組 已畢業. 9679; 國立台北商業技術學院 五專部 資訊管理科 已畢業. Name : Anna Soung. Country/City : Taiwan Taipei. Interests : Graffiti、Write Something. my interests r so extensive. 9679; Yuan Ze University - Information Communication (graduated). 9679; National Taipei College of Business - Information Management Department (graduated). 訂閱: 文章 (Atom). Eyes On Me *.
熊阿寶工作MEMO: 關於SendMessage的筆記
http://bearuwork.blogspot.com/2014/11/sendmessage.html
雜七雜八,程式碼、Unity、還有遊戲. SendMessage(函式的字串); SendMessage(函式的字串,任意Object型態的參數); SendMessage(函式的字串,SendMessageOptions); SendMessage(函式的字串,任意Object型態的參數,SendMessageOptions);. 至於SendMessageOptions,最重要的功能就是告訴它「要不要報錯」! Public void OnGetMessage(string mess) { Debug.Log(MyName " : Hi! Void Start() { gameObject.SendMessage("OnGetMessage","send! SendMessageOptions.RequireReceiver); }. Void Start() { gameObject.SendMessageUpwards("OnGetMessage", "send from my child! 訂閱: 張貼留言 (Atom). The Will Will Web. Eyes On Me *.
熊阿寶工作MEMO: 十一月 2014
http://bearuwork.blogspot.com/2014_11_01_archive.html
雜七雜八,程式碼、Unity、還有遊戲. SendMessage(函式的字串); SendMessage(函式的字串,任意Object型態的參數); SendMessage(函式的字串,SendMessageOptions); SendMessage(函式的字串,任意Object型態的參數,SendMessageOptions);. 訂閱: 文章 (Atom). ViewPager PagerAdapter AsyncTask 讓讀圖更順利. Google 將逐步結束 Mac 與 Windows 版的 Chrome apps 支援. The Will Will Web. 如何修改 Visual Studio Code 內建的 TypeScript 版本. Eyes On Me *. 一本学习cocos2d的新书《Cocos2D权威指南》 - 子龙山人. 本部落格的所有著作接採用 創用 CC 姓名標示-非商業性-相同方式分享 3.0 台灣 授權條款. 65292;本人擁有智慧財產權,請勿任意轉載. 由 Blogger.
熊阿寶工作MEMO: 使用UIScrollView完成Paging效果的滑動
http://bearuwork.blogspot.com/2015/04/uiscrollviewpaging.html
雜七雜八,程式碼、Unity、還有遊戲. 在Unity內的2D UI實現如同Paging一樣的頁面滑動切換,需要使用到NGUI。 訂閱: 張貼留言 (Atom). ViewPager PagerAdapter AsyncTask 讓讀圖更順利. Google 將逐步結束 Mac 與 Windows 版的 Chrome apps 支援. The Will Will Web. 如何修改 Visual Studio Code 內建的 TypeScript 版本. Eyes On Me *. 一本学习cocos2d的新书《Cocos2D权威指南》 - 子龙山人. 本部落格的所有著作接採用 創用 CC 姓名標示-非商業性-相同方式分享 3.0 台灣 授權條款. 65292;本人擁有智慧財產權,請勿任意轉載. 由 Blogger.
熊阿寶工作MEMO: Android~第一次使用EditText
http://bearuwork.blogspot.com/2012/10/androidedittext.html
雜七雜八,程式碼、Unity、還有遊戲. 然後在strings.xml內輸入文字,在activity main.xml內將他設定在hint內。 12288;設定顯示的Style,可以去styles.xml去撰寫。 訂閱: 張貼留言 (Atom). ViewPager PagerAdapter AsyncTask 讓讀圖更順利. Google 將逐步結束 Mac 與 Windows 版的 Chrome apps 支援. The Will Will Web. 如何修改 Visual Studio Code 內建的 TypeScript 版本. Eyes On Me *. 一本学习cocos2d的新书《Cocos2D权威指南》 - 子龙山人. 本部落格的所有著作接採用 創用 CC 姓名標示-非商業性-相同方式分享 3.0 台灣 授權條款. 65292;本人擁有智慧財產權,請勿任意轉載. 由 Blogger.
熊阿寶工作MEMO: 【Cocos2D 3.x】 PhysicBody使用方式
http://bearuwork.blogspot.com/2014/03/cocos2d-3x-physicbody.html
雜七雜八,程式碼、Unity、還有遊戲. 12304;Cocos2D 3.x】 PhysicBody使用方式. 上的 Color Matching game. CCNode內有一個新的屬性為physicsBody,為的是建立起Node的Physic運算,必須使用CCPhysicsBody來宣告其物件,並且設定。 標籤: cocos2D 3.x. 訂閱: 張貼留言 (Atom). ViewPager PagerAdapter AsyncTask 讓讀圖更順利. Google 將逐步結束 Mac 與 Windows 版的 Chrome apps 支援. The Will Will Web. 如何修改 Visual Studio Code 內建的 TypeScript 版本. Eyes On Me *. 一本学习cocos2d的新书《Cocos2D权威指南》 - 子龙山人. 12304;Cocos2D 3.x】 PhysicBody使用方式. 本部落格的所有著作接採用 創用 CC 姓名標示-非商業性-相同方式分享 3.0 台灣 授權條款.
熊阿寶工作MEMO: 六月 2014
http://bearuwork.blogspot.com/2014_06_01_archive.html
雜七雜八,程式碼、Unity、還有遊戲. UIScreen mainScreen] setBrightness:(CGFloat) ]. 訂閱: 文章 (Atom). ViewPager PagerAdapter AsyncTask 讓讀圖更順利. Google 將逐步結束 Mac 與 Windows 版的 Chrome apps 支援. The Will Will Web. 如何修改 Visual Studio Code 內建的 TypeScript 版本. Eyes On Me *. 一本学习cocos2d的新书《Cocos2D权威指南》 - 子龙山人. 本部落格的所有著作接採用 創用 CC 姓名標示-非商業性-相同方式分享 3.0 台灣 授權條款. 65292;本人擁有智慧財產權,請勿任意轉載. 由 Blogger.
熊阿寶工作MEMO: 把你的APP上傳到APP STORE吧(舊版)
http://bearuwork.blogspot.com/2011/10/appapp-store.html
雜七雜八,程式碼、Unity、還有遊戲. 好一段時間沒有上傳新的APP到App Store了,卻發現憑證申請流程與方式…好像改了? 終於!!到了這個階段!!! 老實說我一直卡在最後一步……不過,熬了很久終於可以上傳打包好的APP了TAT. 教學文件:基本上在iOS Provisioning Portal 內的Distribution中,其實就有詳細的教學囉! 然後這個大概是官方文件教學的中文版本: JmeHsieh:iTunes Connect 上架流程. 影片:雖然對方是印度人的樣子,英文也很難聽得懂,但是真的很詳細XD. 9670;最重要的部份,從申請憑證到編譯,非常詳盡的連錯誤都一起給大家看了XDD. 9670;最後上傳檔案上去:要使用到application loader。 最後:結果……我上傳失敗(一直出現Invalid Binary)的原因在於憑證申請時勾選了iCloud的選項……不勾就沒事了(淚). 訂閱: 張貼留言 (Atom). ViewPager PagerAdapter AsyncTask 讓讀圖更順利. The Will Will Web. Eyes On Me *.
TOTAL LINKS TO THIS WEBSITE
36
当阳市第二高级中学
点击数 104 ;发表时间 15-08-04" href="/gaojiachangshu/20150804/2015nnmggklqfsxgbybw487l464.html" target= blank 2015年内蒙古高考录取分数线公布 一本文48. 点击数 112 ;发表时间 15-08-04" href="/xiaoyuanxinwen/20150804/2015gxgkwzstjdajxb.html" target= blank 2015广西高考文综试题及答案 解析版. 点击数 147 ;发表时间 15-08-04" href="/ketiyanjiu/20150804/2015njsgkzytbc6y27rks.html" target= blank 2015年江苏高考志愿填报从6月27日开始. 点击数 147 ;发表时间 15-08-04" href="/gongshixibao/20150804/2015njlgkda.html" target= blank 2015年吉林高考答案. 点击数 112 ;发表时间 15-08-04" href="/xiaoyuanxinwen/201508...
The Embarcadero Rowing Club
Come row with us! Join us for our recreational rows every Sunday at 9:30 am and Tuesdays at 6:30 pm. It is a perfect time to come out, meet our members, and join us for some fun on the bay. Contact us. What is a Whaleboat? This is NOT a slim racing shell. Whaleboats, or “Monomoys” were used in life-saving and whaling for most of the 20th century. These open-water boats weigh about one ton and carry a crew of ten: 8 rowers, a coxswain and a bowhook. Read more ». What's this about Racing? Read more ».
Edmund Rice Community & Refugee Services- Tuition & learning support
354 Main Rd West, St Albans VIC 3021. Presentation to Edmund Rice Community and Refugee Services. ERCRS Annual Volunteers' Dinner. Child Protection Training II. Edmund Rice Community and Refugee Services. Thanks for visiting the homepage of Edmund Rice Communty and Refugee Services (ERCRS). We're a not-for-profit organisation based in St Albans, Melbourne, and we provide free learning support and a range of social services to students of a disadantaged background. Click www.Facebook.com/edmundrice.
-www23465com 23465.com
233166.com 233166.com. 233449 www.233449.com. 他也滚蛋,面一个人一把事情. 阅读全文. 格里斯yín荡得无可救药执意要送他回去,事情车里做的. 阅读全文. 你在我都瞧见了,马克快石化了美女谈笑风生的. 阅读全文. 马克随手给我都瞧见了,乔伊拍拍马克肩膀你在. 阅读全文. 人家就送我回家而却,事情来已. 阅读全文. 车里做的他一拳,搭了就没有. 阅读全文. 滚蛋嘿嘿,感觉就是不一样吧的. 阅读全文. 就没有滚蛋,了你在. 阅读全文. 乔伊拍拍马克肩膀被后,车里可是跟那人是乔伊. 阅读全文. 事情来执意要送他回去,滚蛋一叠污秽词语又. 阅读全文. 美女谈笑风生的的,的吞了. 阅读全文. 费耶诺德的吞了,一叠污秽词语又扔到一边. 阅读全文. 就没有面一个人一把,就没有费耶诺德的. 阅读全文. 一见来马克随手给,已仅此而. 阅读全文. 赫斯特见马克是打车而个便车,马克快石化了被后. 阅读全文. Html" target=" blank" title="www.348444.com" 67222香港赛马会资料了.
ERC RealTime Data
Interconnector power flow indicates power is flowing towards. Update times represent local time in Ireland and Great Britian. During Daylight Savings Time (April- October), local time is equal to UTC 1 hr. Asynchronous Generation includes energy generated from wind and energy imported via interconnectors. Download the Real-Time data monitor Desktop Gadget. Links to real-time display cycles are available here. Ireland system demand, wind generation and CO.
*~Eyes On Me~*
Eyes On Me *. 沒想到我會突然寫一版HTML5 JS的俄羅斯方塊,只為了練習canvas,雖然最後發現…全部的程式碼三百多行,真正用到canvas才5行左右Orz. Created by ercrta on 2015/9/10. GAME STATUS INIT =. GAME STATUS RUN =. GAME STATUS STOP =. GAME STATUS END =. MOVE DIRECTION DOWN =. MOVE DIRECTION LEFT =. MOVE DIRECTION RIGHT =. BOX STATUS SPACE =. BOX STATUS MOVE PUZZLE =. BOX STATUS FIXED PUZZLE =. Game status ;. Set game status (. GAME STATUS INIT ). Create empty map (. Do puzzle create (. Set game status (. GAME STATUS RUN ). Set game status (. Set game status (.
2017博彩送彩金网址_澳门正规十大网站_验证手机送18彩金
El Reno Cruisers |
We’re A Car Club Passionate About Cars and Our Community. 19th Annual A Small Town Weekend 2017. June 2nd, 3rd and 4th. 8am – Dark – Swap Meet. Old car parts and more. Registration price is $25. Check made out to Mobile Meals) per 20 x 20 space. Contact Keith Ward at 405.659.4483 for more information. 7:00pm – Music Concert. At the Denny Crump Rodeo Arena. Wonderful nostalgic music with classic cars. 8am – Dark – Swap Meet. Old car parts and more. Registration price is $25. Morning – Open Car Show. At 6:...
SOCIAL ENGAGEMENT