This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Safari" | |
tell window 1 | |
set current tab to make new tab with properties {URL:"https://facebook.com/adsmanager"} | |
delay 5 | |
end tell | |
do JavaScript "var re = new RegExp('access_token\"?:\"(.*?)\"'); | |
var m = document.documentElement.innerHTML.match(re); | |
function copyToClipboard(text){ | |
var copytext=document.createElement('input') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Эмулятор клавиатуры на AppleScript: CMD+T | |
-- В данном примере запускает Хром и открываем новую вкладку | |
tell application "Google Chrome" to activate | |
tell application "System Events" to key code 17 using command down | |
delay 0.9 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Выбираем файл | |
-- И копирует содержимое файла | |
set fileCards to "~/applescript/acc.txt" | |
set theText to read fileCards | |
set theTextList to paragraphs of theText |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Устанавливаем название и копируем в буффер обмена | |
set nameProfile to "Auto_" | |
set numberProfile to (current date) as text | |
set the clipboard to nameProfile & numberProfile |
NewerOlder