Flash Develop Blog

Flash is life - Cafe is love

Subscribe to RSS feed

Sticky post

WelCome

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...

Mudim - Add on Firefox

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

Coder=Fucker=Artist

So

Coding => Programming => Fucking => XXXing

Coder => Programmer => Fucker => Artist

Code + Flash => Flasher : Noooooo

Code + Flash => Flash_artist yes

Đối với tớ thì lập trình cũng là một nghệ thuật

Cấu hình cho một dự án Flash

Đứng trên vai các gã khổng lồ

, ,

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ạn
Meebo
....
Hết
_ _!

Twitter API

Twitter API is supported for some language programming.

Follow me here bigsmile 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 sample

Twitter API and tutorial

1. 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 cry