[系統強化] 快速切換iTunes帳號密碼 - 第3頁 - iPhone4.TW

會員登入



第3頁,共6頁 第一第一 123456 最後最後
顯示結果從 21 到 30 共計 51 條
  1. #21

    愛用者

    註冊日期:06-16-2011
    文章:62
    謝謝你: 2
    在 4篇文章中獲得 24個感謝
    這個棒

    希望能增加ID
    還有為每個ID改名字的功能


  2. #22
    Hiraku 的頭像

    皮樂

    註冊日期:06-12-2008
    文章:13,852
    謝謝你: 561
    在 1,028篇文章中獲得 5,840個感謝
    下一版本會增加到5個帳號

    另外如果忘記開iTunes,下一版應該會幫你自動開啟 XD

    取名字之類的我是想做,但是功力不足不知道能不能做到...Orz


  3. #23
    markteng77 的頭像

    海盜船長

    註冊日期:05-30-2009
    文章:5,804
    謝謝你: 803
    在 284篇文章中獲得 559個感謝
    引用 作者: hiraku 查看文章
    你看一下教學的最後一張圖片,把輔助設備的選項開啟
    成功了, 感謝


  4. #24
    jonyfree 的頭像

    海盜船長

    註冊日期:01-21-2008
    文章:1,261
    謝謝你: 19
    在 8篇文章中獲得 16個感謝
    超棒的耶!!皮樂你好強啊!
    謝謝分享~


  5. #25
    jas520 的頭像

    超熱血的愛用者

    註冊日期:03-16-2009
    文章:579
    謝謝你: 31
    在 11篇文章中獲得 38個感謝
    睡醒又試了一下, 可以跑了, 但是是在英文環境下.

    日文...不行阿...會告訴你無法從menu bar取出登入對話框之類的錯誤訊息.


  6. #26
    bangdoll 的頭像

    海盜船長

    註冊日期:11-11-2007
    文章:27
    謝謝你: 0
    在 2篇文章中獲得 3個感謝
    原來用的時候,要先把iTunes打開


  7. #27
    Hiraku 的頭像

    皮樂

    註冊日期:06-12-2008
    文章:13,852
    謝謝你: 561
    在 1,028篇文章中獲得 5,840個感謝
    引用 作者: jas520 查看文章
    睡醒又試了一下, 可以跑了, 但是是在英文環境下.

    日文...不行阿...會告訴你無法從menu bar取出登入對話框之類的錯誤訊息.

    你自己看一下Script,把中文的選單名稱換成日文的就可以了啊...


  8. #28
    mask 的頭像

    管理團隊

    註冊日期:10-13-2007
    文章:285
    謝謝你: 4
    在 3篇文章中獲得 3個感謝
    嗯,我怎麼呆這麼久沒想過有這樣子的方法呢?
    不過我的需求比較少,所以我寫了一個比較簡單一點的Applescript
    應該是不用特別注意什麼東西,就呆呆的用…
    代碼:
    --第一組帳號 名稱,帳號,密碼
    set TW_account to {title:"台灣", account:"TWXX*gmail.com", passwd:"TWPASSWD"}
    --第二組帳號 名稱,帳號,密碼
    set US_account to {title:"米國", account:"USXX*gmail.com", passwd:"USPASSWD"}
    --第三組帳號 名稱,帳號,密碼
    set JP_account to {title:"日本", account:"JPXX*gmail.com", passwd:"JPPASSWD"}
    --要顯示的選項
    set title to {title of US_account, title of JP_account, title of TW_account}
    
    display dialog "選擇要切換的iTMS帳號" buttons title default button 1
    set the button_pressed to the button returned of the result
    --如果是按下的是第一組帳號的話
    if the button_pressed is title of US_account then
    	set account to account of US_account
    	set passwd to passwd of US_account
    --如果是按下的是第二組帳號的話
    else if the button_pressed is title of JP_account then
    	set account to account of JP_account
    	set passwd to passwd of JP_account
    -- 最後一組帳號
    else
    	set account to account of TW_account
    	set passwd to passwd of TW_account
    end if
    
    tell application "iTunes"
    	activate
    end tell
    
    tell application "System Events"
    	tell process "iTunes"
    		set frontmost to true
    		
    		try
    			click menu item "登出" of menu "Store" of menu bar 1
    		on error
    			try
    				click menu item "Sign Out" of menu "Store" of menu bar 1
    			on error
    				
    			end try
    		end try
    		
    		delay 3
    		try
    			click menu item "登入⋯" of menu "Store" of menu bar 1
    		on error
    			try
    				click menu item "Sign In…" of menu "Store" of menu bar 1
    			on error
    				
    			end try
    		end try
    		-- 用剪貼簿就不會有輸入法的困擾了… 
    		set the clipboard to account
    		keystroke "v" using command down
    		delay 3
    		keystroke tab
    		set the clipboard to passwd
    		keystroke "v" using command down
    		delay 3
    		keystroke return
    		
    		delay 3
    		keystroke return
    	end tell
    end tell

    結果大概是像這樣
    此篇文章於 08-23-2011 00:11 被 mask 編輯。


  9. #29

    超熱血的愛用者

    註冊日期:08-19-2010
    文章:510
    謝謝你: 76
    在 49篇文章中獲得 86個感謝
    很好的軟體。建議皮樂能加一個功能。

    就是輸入完成後你的帳號密碼能隱藏,不然的話若他人使用此電腦,他又有看過此篇文章的話。就會把你的帳號密碼看光光。

    後果就很可怕了。
    此篇文章於 08-22-2011 23:11 被 luckeychen 編輯。


  10. #30

    愛用者

    註冊日期:09-03-2010
    文章:39
    謝謝你: 2
    在 5篇文章中獲得 9個感謝

    可是啦,軟體我都在ipod touch裡更新的,
    所以希望有iOS版


 

 

發文規則

  • 不可以發表新主題
  • 不可以發表回覆
  • 不可以上傳附件
  • 不可以編輯自己的文章
  •  
回到此頁頂端