Sticky post
Sunday, June 8, 2008 10:49:14 AM
Mình đang dự định làm một cái Blog về lập trình chỉ dành cho Flash Developer. Hy vọng là nơi các bạn cùng trao đổi kiến thức lập trình ở đây.
Hiện tại các bài viết đang private, khi nào mình thấy sắp hoàn thành thì mình sẽ public cho mọi người...
Please wait...
Read more...
Friday, December 26, 2008 9:10:51 AM
add on
Mudim là bộ gõ tiếng Việt cho web, support add-on cho FFox
Cai dat Mudim cho FFox o day(Phải đăng kí tài khoản mới cài được _ _!)
Giờ thì có thể gõ Tiếng Việt trên bất cứ trang web nào
Friday, December 26, 2008 8:59:35 AM
holy code
So
Coding => Programming => Fucking => XXXing
Coder => Programmer => Fucker => Artist
Code + Flash => Flasher : Noooooo
Code + Flash => Flash_artist
Đối với tớ thì lập trình cũng là một nghệ thuật
Thursday, December 25, 2008 5:12:07 AM
Meebo, Web2.0, Twitter
Với sự rầm rộ của các trang Web2.0 ngày nay, việc kiềm tiền trở nên dễ dàng hơn nếu bạn biết tận dụng tối đa những gì nó đem lại. Có thể điểm mặt các đại gia gần đây mà mình thấy "xài được"
Twitter. Có 1 bài viết của VN
Twitter sẽ thay đổi cuộc sống của bạnMeebo....
Hết
_ _!
Thursday, December 25, 2008 4:55:55 AM
Twitter
Twitter API is supported for some language programming.
Follow me here
and learn how to use Twitter
SWX is the easiest way to build Flash applications that use Twitter and some web2.0 open API , you can see
this sampleTwitter API and tutorial1. Create a new account in Twitter, and logout to test
2.
Check out SWX current version is 2.0 beta1
3. Open Library\v2\AS3 , it is folder contain library use for AS3
4. New Fla
5. Paste code in frame 1:
import org.swxformat.*;
var swx:SWX = new SWX();
swx.gateway="http://swxformat.org/php/swx.php";
swx.encoding="POST";
swx.debug=true;
var username:String="NIITer" ; // your name use to login Twitter
var pass :String="coffee" ; // your pass, this is example
var msg :String="Hi all! I send a message from Flash to Twitter";
var callParameters:Object =
{
serviceClass: "Twitter",
method: "update",
args: [msg,username,pass],
result: [this, resultHandler]
};
swx.call(callParameters);
function resultHandler(event:Object) {
// Display the text property of the first result.
trace("God damnn it: "+event.result[0].text);
}
And now,open you page in Twitter, you'll see this message.
That's greate if you can add SWX in you flash project, if you have interesting project to share for everyone to see
My English is bad