I have made a slideshow with a random starting point for every time the swf is loaded - and it works fine on my Mac, but on PC it starts with the same picture every time.

This code is on frame 1 and after my animations there is at gotoAndPlay(2)

labelarray = ["jumpstart1", "jumpstart2", "jumpstart3", "jumpstart4", "jumpstart5", "jumpstart6", "jumpstart7", "jumpstart8", "jumpstart9", "jumpstart10"];
randomidx = random(labelarray.length);
gotoAndPlay(labelarray[randomidx]);

I Really would appreciate any help you might have.

++Mikado