I’m trying to make a program with multiple sets of nested slides, tied to 4 different mp3’s that play through MediaDisplay. When using cues, the MediaContoller slider “sticks” at each cue point, rather than pulling fluidly until released. Additionally, it won’t function well in reverse. I’m attempting to tie each slide to a definate time in the program, but I don’t understand how to address each one. For example, I’ve tried addressing them as I would frames:
on (change) {
var Q = playheadTime
if (Q <= 9.9) {
gotoAndStop(slide0b)
} else if (Q >= 10 and Q <= 42.9) {
gotoAndStop(slide1)
}
If anyone knows the proper way to “call” a slide, I’d appreciate the help.
Additionally, I find that even starting with a default template, as soon as I ad multiple nested sets, all slides are visible, overlaid on eachother, in the first frame of the main movie. Is this a bug?
Thanks,
Jeff Kirsch