If anyone wants to convert Ableton locators to QLab markers here's a script to do it. There's 1 limitation. The arrangement must have a fixed manual tempo, which is used to convert Ableton's beat based locators to seconds.
--get locators from an Ableton .als file and apply them as markers in the selected cue in QLab
--by Mic Pool
set theloc to (path to desktop)
set thefile to choose file
tell application "Finder"
set r to duplicate thefile to theloc
set the name of r to "temp.zip"
delay 1
open file "temp.zip"
delay 1
set the name of (last item of (sort files of theloc by creation date) as alias) to "temp.xml"
delete file "temp.zip"
delay 1
end tell
set theLocators to {}
set therecord to {}
tell application "System Events"
tell XML file "~/Desktop/temp.xml"
tell XML element "Ableton"
tell XML element "LiveSet"
tell XML element "MasterTrack"
tell XML element "DeviceChain"
tell XML element "Mixer"
tell XML element "Tempo"
set thetempo to value of XML attribute 1 of XML element "Manual"
end tell
end tell
end tell
end tell
end tell
end tell
end tell
end tell
set theLocators to {}
tell application "System Events"
tell XML file "~/Desktop/temp.xml"
tell XML element "Ableton"
tell XML element "LiveSet"
tell XML element "Locators"
tell XML element "Locators"
set theElements to every XML element whose name is "Locator"
repeat with eachelement from 1 to length of theElements
set currentelement to item eachelement of theElements
set end of theLocators to value of XML attribute "Value" of XML element "Time" of currentelement
end repeat
end tell
end tell
end tell
end tell
end tell
end tell
tell application "Finder" to delete file "temp.xml"
tell application id "com.figure53.QLab.4" to tell front workspace
repeat with eachlocator from 1 to (count of theLocators)
set aTime to (item eachlocator of theLocators as real) * (60 / thetempo)
set aRecord to {time:aTime, playCount:1}
set the end of therecord to aRecord
end repeat
set theselected to last item of (selected as list)
set the slice markers of theselected to (get therecord)
end tell