I’m having a problem with local connection on pc, it works fine on a mac but not on pc.
a movie sends parameters to another movie, one of the parameters is a frame label, on receiving movie it sends the playhead to the specified frame.
[AS]
var folderID = “”;
var receiving_lc:LocalConnection = new LocalConnection();
receiving_lc.methodToExecute = function(frame_label:String, parent_id:Number) {
folderID = parent_id;
gotoAndStop(frame_label);
};
receiving_lc.connect(“lc_rc”);
[/AS]
why would this work on mac and not pc? I have the latest version of flash player on both systems.