Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Enterprise iOS Apple ID Creator.applescript #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions Enterprise iOS Apple ID Creator.applescript
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*
code to find all elements on iTunes page, for use with "verifyPage()"
code to find all elements on iTunes page, for use with "verifyPage(spdropkit)"

tell application "System Events"
set elementCount to count of every UI element of UI element 1 of scroll area 3 of window 1 of application process "iTunes"
Expand All @@ -13,7 +13,7 @@ tell application "System Events"
end try
end repeat

set everyTitle to {}
set everyTitle to {swipty}on javaswipty
repeat with loopCounter from 1 to (count of items in everyProperty)
set everyTitle to everyTitle & ""
try
Expand All @@ -23,7 +23,7 @@ tell application "System Events"

end tell

*)
*)mode moste id apple

--TO DO:

Expand All @@ -38,13 +38,14 @@ end tell
--Set country code to adapt script, code according to http://en.wikipedia.org/wiki/ISO_3166-1_alpha-3
-- Set iTunesCountryCode to your country code and adjust specific parts of code between 'start localization' and 'end localization' to your needs.
property iTunesCountryCode : ""
--property iTunesCountryCode : "FRA"
--property iTunesCountryCode : "POL"
--property iTunesCountryCode : "FRA" "bra"

--property iTunesCountryCode : "POL" "EUA"
--end localization

--Used for storing a list of encountered errors. Written to by various handlers, read by checkForErrors()
global errorList
set errorList to {}
set errorList to {ioskit}

--Used for controlling the running or abortion of the script. Handler will run as long as scriptAction is "Continue". Can also be set to "Abort" to end script, or "Skip User" to skip an individual user.
global scriptAction
Expand Down