MozTW 討論區 https://forum.moztw.org/ |
|
那個Pike的Search Button是不是沒有再開發了 https://forum.moztw.org/viewtopic.php?f=2&t=17109 |
第 1 頁 (共 1 頁) |
發表人: | hurart [ 2007-01-01, 01:54 ] |
文章主題 : | 那個Pike的Search Button是不是沒有再開發了 |
我一直在使用 viewtopic.php?p=27790 的功能, 超方便, 可以變更搜尋欄的滑鼠模式, 但現在Firefox2卻全部失效了... 有沒有其他的擴充元件可以設定search bar(共含[引擎], [輸入], [執行]三個位置)上滑鼠的左中右鍵的功能啊? |
發表人: | hurart [ 2007-01-02, 07:22 ] |
文章主題 : | 這是Pike的回信 |
Hi, I've discontinued the Search Button extension since Firefox 2 has a built-in button. I setup a thread for people to discuss replacements but there hasn't been much activity on it, however there are a couple of tips that might help: http://www.pikey.me.uk/mozilla/?addon=obs#comments -- Pike pike@pikey.me.uk http://www.pikey.me.uk/ |
發表人: | hurart [ 2007-01-02, 07:25 ] |
文章主題 : | FX2的搜尋按鈕已內建, 但沒有設定功能 |
其實我最想要的是可以設定search button的滑鼠右鍵/中鍵為其他功能, 例如清除欄位內容... 有哪位大大可以提供類似的extention資訊嗎? 感謝... |
發表人: | knives [ 2007-01-02, 09:39 ] | ||
文章主題 : | |||
hurart 寫: 其實我最想要的是可以設定search button的滑鼠右鍵/中鍵為其他功能, 例如清除欄位內容...
有哪位大大可以提供類似的extention資訊嗎? 感謝... 你的要求可以用customButton自己寫出來啦 但是如果要做到像1.5.x單純的表單樣式的話,就得需要用到stylish 如圖
|
發表人: | hurart [ 2007-01-03, 02:25 ] |
文章主題 : | |
我不是想作一個新的按鈕, 我是想要在搜尋欄上按個右鍵, 就能清除... 按個中鍵, 就能開始搜尋... |
發表人: | Merci chao [ 2007-01-03, 12:50 ] |
文章主題 : | |
hurart 寫: 我不是想作一個新的按鈕,
我是想要在搜尋欄上按個右鍵, 就能清除... 按個中鍵, 就能開始搜尋... 你會不會改 XUL? (簡單的編輯) 會的話我可以給你語法 |
發表人: | hurart [ 2007-01-03, 17:29 ] |
文章主題 : | |
Merci chao 寫: 你會不會改 XUL? (簡單的編輯)
會的話我可以給你語法 呵, 可以教我一下XUL嗎? 或給我一些中文的網址讓我學, 感謝... |
發表人: | Merci chao [ 2007-01-03, 18:18 ] |
文章主題 : | |
最近不是常常有空, 所以不能肯定甚麼時候可以給你... 不過有兩點想說的: 1. 你有沒有 EmEditor 之類的工具? 2. 要做成 "在搜尋框任何位置按下, 都能得你想要的效果" 會簡單得多, 若果要做成 "只對可供輸入的白色部份有效" 我可沒有試過 ![]() |
發表人: | hurart [ 2007-01-03, 19:18 ] |
文章主題 : | |
Merci chao 寫: 最近不是常常有空, 所以不能肯定甚麼時候可以給你...
不過有兩點想說的: 1. 你有沒有 EmEditor 之類的工具? 2. 要做成 "在搜尋框任何位置按下, 都能得你想要的效果" 會簡單得多, 若果要做成 "只對可供輸入的白色部份有效" 我可沒有試過 ![]() 謝謝, 我已經安裝好EmEditor, 雖然我不太會使用... viewtopic.php?t=17147&postdays=0&postorder=asc&start=0 我想要的功能只要"在搜尋框任何位置按下"即可, 感恩.. ![]() |
發表人: | shyangs [ 2007-01-03, 22:56 ] |
文章主題 : | |
.xul檔用notepad編輯即可;不用特地安裝新軟體.... 網上中文教學資源 http://zh.wikipedia.org/wiki/XUL https://opensvn.csie.org/xultw/intro.html http://noellab.net/ernest/tavi/index.ph ... FMozJoyXUL 英文資源 http://www.mozilla.org/projects/xul/ http://xulplanet.com/tutorials/xultu/ |
發表人: | Merci chao [ 2007-01-04, 12:46 ] |
文章主題 : | |
shyangs 寫: .xul檔用notepad編輯即可;不用特地安裝新軟體....
這點我明白...但當聽見有人總是連 "刪除了某一行就 OK 了" 也會做成錯誤的話...我想誰也會發瘋... |
發表人: | Merci chao [ 2007-01-04, 13:11 ] |
文章主題 : | |
用 winzip 或其他開啟 C:\Program Files\Mozilla Firefox\chrome\browser.jar 用記事本或其他開啟 browser.jar!/content/browser/browser.xul 找尋 引言回覆: <searchbar id="searchbar" flex="1" chromedir="&locale.dir;"/> 改成 引言回覆: <searchbar id="searchbar" flex="1" chromedir="&locale.dir;" onclick="if (event.button==2) { this.focus(); if (this.mTextbox) this.mTextbox.value = ''; this.value = ''; var evt = document.createEvent('Events'); evt.initEvent('oninput', true, true); this.dispatchEvent(evt); }" context=""/>
2 是代表按右鍵, 左鍵是 0, 中鍵是 1 context="" 是代表按右鍵時不顯示選單, 若果想顯示的話就不用加入 按中鍵搜尋方面, 在搜尋按鈕按中鍵就可以了, 你不用搜尋按鈕的嗎? 另外...其實如 shyangs 大所說的...用 notepad 就可以的了... 至於 EmEditor...純粹想問一問你有沒有...有就最好...沒也無所謂的意思... |
發表人: | hurart [ 2007-01-04, 17:35 ] |
文章主題 : | |
謝謝大大, 我試試研究一下... 我之所以想要改中鍵的原因, 是由於要常切換搜尋引擎, 想直接切換後即執行查找, 不用再移滑鼠, 呵, 很懶的我... |
發表人: | Merci chao [ 2007-01-04, 18:36 ] |
文章主題 : | |
要中鍵搜尋就可能要研究一下 ![]() 因為好像找不到 "搜尋" 的 function... |
發表人: | hurart [ 2007-01-04, 21:04 ] |
文章主題 : | |
我試過了, 真不錯, 謝謝... 但我的需求有點錯了.. 呵... 我其實是想點右鍵在"搜尋引擎圖示"上時, 可以清內容, 而不是整個搜尋bar... 之前 Search Button 也是這樣針對圖示設定的, download.php?id=549 真抱歉, 還能改嗎? |
第 1 頁 (共 1 頁) | 所有顯示的時間為 UTC + 8 小時 |
Powered by phpBB® Forum Software © phpBB Group https://www.phpbb.com/ |