Hi Again Bill, I've just got hold of flash mx 2004. I've nearly finished playing with the zpane thing...
When using flash mx 2004 you have to change line 16 in the action of the first pane to:
mydata = new LoadVars(); instead of
mydata = new loadvars();
But, now when I try to export as flash player 7 I get the following errors:
**Error** Symbol= MouseCursors, layer=script, frame=1:Line 3: There is no property with the name 'setCursor'.
Mouse.setCursor = function (state) {
**Error** Symbol= ZoomPane, layer=script, frame=1:Line 73: There is no method with the name 'setCursor'.
Mouse.setCursor("dragHand"
**Error** Symbol= ZoomPane, layer=script, frame=1:Line 79: There is no method with the name 'setCursor'.
Mouse.setCursor("default"
**Error** Symbol= ZoomPane, layer=script, frame=1:Line 83: There is no method with the name 'setCursor'.
Mouse.setCursor("default"
**Error** Symbol= ZoomPane, layer=script, frame=1:Line 251: There is no method with the name 'constrainValue'.
this.lens._x = Math.constrainValue(x, 0, this.content_mc._width-this.lens._width+hdif);
**Error** Symbol= ZoomPane, layer=script, frame=1:Line 252: There is no method with the name 'constrainValue'.
this.lens._y = Math.constrainValue(y, 0, this.content_mc._height-this.lens._height+vdif);
**Error** Symbol= ZoomPane, layer=script, frame=1:Line 260: There is no method with the name 'constrainValue'.
this.lens._width = Math.constrainValue(w, 0, this.content_mc._width)
**Error** Symbol= ZoomPane, layer=script, frame=1:Line 261: There is no method with the name 'constrainValue'.
this.lens._height = Math.constrainValue(h, 0, this.content_mc._height)
**Error** Symbol= ZoomPane, layer=script, frame=1:Line 350: There is no method with the name 'setCursor'.
Mouse.setCursor("dragHand"
**Error** Symbol= ZoomPane, layer=script, frame=1:Line 353: There is no method with the name 'setCursor'.
Mouse.setCursor("default"
**Error** Symbol= ZoomPane, layer=script, frame=1:Line 363: There is no method with the name 'setCursor'.
Mouse.setCursor("default"
**Error** Symbol= ZoomPane, layer=script, frame=1:Line 415: There is no property with the name 'constrainValue'.
Math.constrainValue = function(n, mn, mx) {
Total ActionScript Errors: 12 Reported Errors: 12
Can you think of why its happening?
M@?)