I changed the Spotpath cue to "Johans Retina Laptop/DistingoHD/Users/johansoderberg/Desktop/QSpotify-master/QSpotify.scpt"
And I tried replacing all slashes with semicolons as in your original. But none of them worked.
--
--
Change your preferences or unsubscribe here:
http://groups.google.com/group/qlab
Follow Figure 53 on Twitter: http://twitter.com/Figure53
---
You received this message because you are subscribed to a topic in the Google Groups "QLab" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/qlab/VEPymxmREeo/unsubscribe.
To unsubscribe from this group and all its topics, send an email to qlab+uns...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
What do people think of the general principle of scripts that are programmed by having a specific syntax in the title of the cue that calls them?
The spotify script could easily be adapted to control itunes, which because it adjusts the volume on a per track basis and will play lossless codecs might be a better starting point.
If moment to moment dynamic control was required in addition, that would be better achieved using a mastering style plugin. If the itunes outputs were brought into a Qlab Mic cue you might be able to find one that would work as a Qlab effect.
Mic
set fadetime to 5 --seconds
tell application "Spotify" --set app name here
repeat with volumeset from 0 to 100 as integer
set sound volume to 100 - volumeset
delay fadetime / 100
end repeat
end tell
Mic