Well i began using flash a few months ago after a couple of years of not using it. I’ve been trying to catch up with Actionscript but its proving quite hard.
Now im trying to work out a gallery, which i had working with AS2, but now i had to make the thumbs move though mouse events and did it with AS3, as i want to start coding everything with it.
The problem is that the code i had for the gallery needs to be updated but im not that knowledgeable of AS3 yet.
Here’s how the gallery code looks now with AS2:
var myDropShadowFilterOver = new DropShadowFilter (1,62,0x000000,1,10,10,1,1,false,false,false);
var myDropShadowFilterOut = new DropShadowFilter (1,62,0x000000,0,10,10,1,1,false,false,false);
this.createEmptyMovieClip("images", 100);
this.attachMovie("mask", "mask", 101);
mask._x =6;
mask._y = 132;
target =-130;
images.setMask(mask);
images._y = 132;
images._x = 100;
speed = 9;
for (var i = 0; i<14; i++) {
var img = images.attachMovie("image"+i, "image"+i, i);
img._x = img._width*i;
var thumb = this.myThumbs_mc["thumb"+i];
thumb._alpha = 90;
thumb.pos = target+(i*-img._width);
thumb.onPress = function() {
target = this.pos;
};
thumb.onRollOver = function() {
this._alpha = 100;
this.filters = [myDropShadowFilterOver];
};
thumb.onRollOut = function() {
this._alpha = 90;
this.filters = [myDropShadowFilterOut];
};
}
And this is how i have it so far:
var myDropShadowFilterOver = new DropShadowFilter (1,62,0x000000,1,10,10,1,1,false,false,false);
var myDropShadowFilterOut = new DropShadowFilter (1,62,0x000000,0,10,10,1,1,false,false,false);
var myMask:Shape = new Shape();
myMask.graphics.beginFill(0xFFFFFF);
myMask.graphics.drawRect(6,6,960,389);
addChild(myMask);
var images=new MovieClip();
stage.addChild(images);
var target:Number =-130;
images.mask=myMask;
trace("i");
images.y = 132;
images.x = 100;
var speed:Number = 9;
for (var i = 0; i<14; i++) {
var img = images.attachMovie("image"+i, "image"+i, i);
img.x = img.width*i;
var thumb = this["thumb"+i];
trace (this["thumb"+i]);
thumb.alpha = 90;
thumb.pos = target+(i*-img.width);
thumb.onPress = function() {
target = this.pos;
};
thumb.onRollOver = function() {
this.alpha = 100;
this.filters = [myDropShadowFilterOver];
};
thumb.onRollOut = function() {
this.alpha = 90;
this.filters = [myDropShadowFilterOut];
};
I’m stuck on **var img = images.attachMovie(“image”+i, “image”+i, i);
**And i don’t know if i have problems somewhere else, every time i fix a line, i get a new problem each time.
Thanks in advance.