Scripts/QuotedTweet.js
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
]
開始行:
*QuotedTweet.js [#o95404b1]
#contents
**概要 [#idabd447]
引用返信を追加します。
**必要条件 [#q2a9e589]
- Azurea version.1.3.2
**スクリプト [#ef703081]
#geshi(javascript){{
function quotedReply(id)
{
var s = TwitterService.status.get(id);
TextArea.text = 'QT @'+s.user.screen_name+': '+s.text;
TextArea.in_reply_to_status_id = s.id;
TextArea.show();
TextArea.setFocus();
//TextArea.setCursor(0);
TextArea.cursor = 0;
}
System.addContextMenuHandler('引用返信', 0, quotedReply);
System.addKeyBindingHandler('Q'.charCodeAt(0), 0, quotedR...
}}
**コメントとか [#m47ef754]
- ver1.3.3ではTextArea.setCursor(0);を TextArea.cursor=0;...
- API Level 13での変更に対応 -- [[tmyt]] &new{2011-03-27 ...
- vre1.4.4beta2で動かないようです。 -- [[修]] &new{201...
- ver1.4.4 for windows 動作確認しました。 -- [[名無し]] &...
- vre1.4.6 WM版(アドエス)で実行すると[Extends]がの項目...
- なおしました -- [[tmyt]] &new{2013-06-21 (金) 20:32:42};
- 有り難うこざいます! -- [[修]] &new{2013-06-24 (月) 12:...
#comment
終了行:
*QuotedTweet.js [#o95404b1]
#contents
**概要 [#idabd447]
引用返信を追加します。
**必要条件 [#q2a9e589]
- Azurea version.1.3.2
**スクリプト [#ef703081]
#geshi(javascript){{
function quotedReply(id)
{
var s = TwitterService.status.get(id);
TextArea.text = 'QT @'+s.user.screen_name+': '+s.text;
TextArea.in_reply_to_status_id = s.id;
TextArea.show();
TextArea.setFocus();
//TextArea.setCursor(0);
TextArea.cursor = 0;
}
System.addContextMenuHandler('引用返信', 0, quotedReply);
System.addKeyBindingHandler('Q'.charCodeAt(0), 0, quotedR...
}}
**コメントとか [#m47ef754]
- ver1.3.3ではTextArea.setCursor(0);を TextArea.cursor=0;...
- API Level 13での変更に対応 -- [[tmyt]] &new{2011-03-27 ...
- vre1.4.4beta2で動かないようです。 -- [[修]] &new{201...
- ver1.4.4 for windows 動作確認しました。 -- [[名無し]] &...
- vre1.4.6 WM版(アドエス)で実行すると[Extends]がの項目...
- なおしました -- [[tmyt]] &new{2013-06-21 (金) 20:32:42};
- 有り難うこざいます! -- [[修]] &new{2013-06-24 (月) 12:...
#comment
ページ名: