Hi!
I have a question about the search function within the Cue List.
I'm using ⌘+F to search for '.mov' in an attempt to find all the Video cues in the list. However, the search results also include the Fade cues that are associated with each Video cues.
Is there a way to highlight only the Video cues, or alternatively, to exclude the Fade cues from the search?
Tommy
tell application id "com.figure53.QLab.5" to tell front workspace
set theCues to (selected as list)
repeat with eachCue in theCues
set the scale x of eachCue to (scale x of eachCue) * 1.5
set the translation x of eachCue to (translation x of eachCue) + 100
end repeat
end tell
--modify geometry of selected cues
set theG to (choose from list {"scale x", "scale y", "translation x", "translation y"}) as text
set theVal to text returned of (display dialog "Value to multiply scale, or add to translation of selected cues" default answer "")
tell application id "com.figure53.QLab.5" to tell front workspace
repeat with eachcue in (selected as list)
if theG is "scale x" then
set the scale x of eachcue to (scale x of eachcue) * theVal
else if theG is "scale y" then
set the scale y of eachcue to (scale y of eachcue) * theVal
else if theG is "translation x" then
set the translation x of eachcue to (translation x of eachcue) + theVal
else if theG is "translation y" then
set the translation y of eachcue to (translation y of eachcue) + theVal
end if
end repeat
end tell