sasakiken wrote:
自己也不知道怎麼弄的...(恕刪)
樓主可以用AppleScript執行把軟體的視窗指定到需要的xy,座標位置(圖中是533,118)
把底下的Firefox換成樓主要的富士raw的軟體名稱就好
執行一次就好,親測有效
if application "Firefox" is running then
try
if (count windows of application "Firefox") is greater than 0 then
tell application "System Events" to set position of window 1 of application process "Firefox" to {0, 0}
end if
end try
end if
