Добрый день, господа. Два вопроса: 1)Если ли какой-нибудь удобный фикс для пропавших с каким-то из последних обновлений itunes обложек исполнителей? Я говорю вот про это:
Если автоматически, то можно воспользоваться заготовкой "открыть/отресайзить". На AppleScript, чтобы покошернее:
tell application "Finder" set screenSize to bounds of window of desktop set screenWidth to item 3 of screenSize set screenHeight to item 4 of screenSize end tell
tell application "Eagle" activate set bounds of the first window to {0, 0, screenWidth, screenHeight} end tell
Comments 8
Reply
Reply
Reply
(The comment has been removed)
Reply
Reply
tell application "Finder"
set screenSize to bounds of window of desktop
set screenWidth to item 3 of screenSize
set screenHeight to item 4 of screenSize
end tell
tell application "Eagle"
activate
set bounds of the first window to {0, 0, screenWidth, screenHeight}
end tell
Reply
Reply
Leave a comment