做了這個有趣的東西
不過只能在mac用就有點遺憾嘛
動畫是這樣:





http://b123400.net/short/syuku?url=%@to.
http://b123400.net/short/to?url=%@把以上的字串一字不漏輸入到tweetie的setting>services>url shortening>custom...裡面就行了
這一行的,修改成$pattern = '/<name>([^<]*)<\/name>/';
現在再來就應該work了$pattern = '/<screen_name>([^<]*)<\/screen_name>/';
if( $limit_user && !userallowed($_SERVER['PHP_AUTH_USER'])){修改成(xxxxxxxxxxx是你要自定的密碼):
if( ($limit_user && !userallowed($_SERVER['PHP_AUTH_USER']))||$_SERVER['PHP_AUTH_PW']!="xxxxxxxxxxx"){這樣的話所有用OAuth的人都不能亂輸入密碼,要用xxxxxxxxxxx這個密碼了

http://twitter.com/vincicat/tech-asia


http://twitter.com/Revotan
@benone_給的

getURL("urltoload", "target");
但是as3就不是只需要用一個string那麼簡單navigateToURL(new URLRequest("urltoload"), 'target');
雖然這步好像複雜了,但要增加function的時候就好方便了
比如說:var request:URLRequest = new URLRequest("urltoload");
request.method = URLRequestMethod.POST; //令method變成post
navigateToURL(request, 'target');
這樣就很簡單的變成post了
如果要加上param的話也不難var request:URLRequest = new URLRequest("urltoload");
var params = new URLVariables()
params.param1="value1" //這是key對value那樣啦
params.param2="value2"
//如此類推...
request.data = params //把param塞進去request
request.method = URLRequestMethod.POST;
navigateToURL(request, 'target');
這樣很簡單的已經可以做到html裡<form method="post">的效果了
Leave your greetings here.