Hello, I am trying to convert the code below to AS3. I know I’m close but I keep getting errors.
import flash.display.BitmapData;
// the displacement maps
var map1:BitmapData = new BitmapData(250, 100, true, 0xFF000000);
var map2:BitmapData = new BitmapData(250, 100, true, 0xFF000000);
//bmps hold the displacement maps bitmap
this.createEmptyMovieClip("bmp1",10);
bmp1.attachBitmap(map1,0,"auto",true);
this.createEmptyMovieClip("bmp2",90);
bmp2.attachBitmap(map2,0,"auto",true);
// blur filter
var blur = new flash.filters.BlurFilter(10, 10, 4);
// displacementMapFilters
var mapPoint = new flash.geom.Point(0, 0);
var dmfr = new flash.filters.DisplacementMapFilter(map1, mapPoint, 1, 1, -50, 0, "ignore", 0, 1);
var dmfl = new flash.filters.DisplacementMapFilter(map2, mapPoint, 1, 1, 50, 0, "ignore", 0, 1);
// these contain the animated vector graphic which will be drawn to the displacement map
this.createEmptyMovieClip("cont1",1);
this.createEmptyMovieClip("cont2",2);
cont1._visible = cont2._visible=false;
// Apply blur filter to bmps which is used to fade out the displacement map
bmp1.filters = bmp2.filters=[blur];
// this just positions and displays bmps, so you can see what is going on
bmp1._alpha = bmp2._alpha=40;
bmp1._x = bmp2._x=80;
bmp1._y = bmp2._y=200;
//
var i;
var displace = false;
//define button hit area..
_btn.hitArea = _btn.ha;
_btn.onRelease = function() {
displace = false;
};
_btn.onRollOver = function() {
i = 0;
displace = true;
};
_btn.onEnterFrame = function() {
if (displace) {
// attach black and white circle anims
var mc1 = cont1.attachMovie("circle", "c"+(i++), i);
var mc2 = cont2.attachMovie("circle", "c"+(i++), i);
mc1._x = mc2._x=this._xmouse;
mc1._y = mc2._y=this._ymouse;
mc2._xscale = -100;
mc1.cacheAsBitmap = mc2.cacheAsBitmap=true;
if (i>10) {
displace = false;
}
}
// draw the circle anim mc's to the bitmap
map1.draw(cont1);
map2.draw(cont2);
// draw the bitmap to itself (this progressivly blurs the map so it fades to black gradually)
map1.draw(bmp1);
map2.draw(bmp2);
// apply displacement map filters to the button
this.filters = [dmfr, dmfl];
};
Here is what I have so far:
import flash.display.Bitmap;
import flash.display.BitmapData;
import flash.display.MovieClip;
// the displacement maps
var map1:Bitmap;
var bmapData1:BitmapData = new BitmapData(250, 100, true, 0xFF000000);
var map2:Bitmap;
var bmapData2:BitmapData = new BitmapData(250, 100, true, 0xFF000000);
map1 = new Bitmap(bmapData1);
map2 = new Bitmap(bmapData2);
//bmps hold the displacement maps bitmap
var bmp1=new MovieClip();
addChild(bmp1);
bmp1.addChildAt(map1, 0);
var bmp2=new MovieClip();
addChild(bmp2);
bmp2.addChildAt(map2, 0);
// blur filter
var blur=new flash.filters.BlurFilter(10,10,4);
// displacementMapFilters
var mapPoint=new flash.geom.Point(0,0);
var dmfr=new flash.filters.DisplacementMapFilter(map1,mapPoint,1,1,-50,0,"ignore",0,1);
var dmfl=new flash.filters.DisplacementMapFilter(map2,mapPoint,1,1,50,0,"ignore",0,1);
// these contain the animated vector graphic which will be drawn to the displacement map
var cont1=new MovieClip();
addChild(cont1);
var cont2=new MovieClip();
addChild(cont2);
cont1.visible=cont2.visible=false;
// Apply blur filter to bmps which is used to fade out the displacement map
bmp1.filters=bmp2.filters=[blur];
// this just positions and displays bmps, so you can see what is going on
bmp1.alpha=bmp2.alpha=40;
bmp1.x=bmp2.x=80;
bmp1.y=bmp2.y=200;
//
var i;
var displace=false;
//attaching mouse events to the button on stage
_btn.addEventListener(MouseEvent.CLICK, _btnClick);
_btn.addEventListener(MouseEvent.MOUSE_OVER, _btnMouseOver);
_btn.addEventListener(Event.ENTER_FRAME, onEnterFrames);
//define button hit area..
_btn.hitArea=_btn.ha;
function _btnClick(event:MouseEvent):void {
displace=false;
}
function _btnMouseOver(event:MouseEvent):void {
i=0;
displace=true;
}
function onEnterFrames(event:Event) {
if (displace) {
// attach black and white circle anims
var mc1 = cont1.attachMovie("circle", "c"+(i++), i);
var mc2 = cont2.attachMovie("circle", "c"+(i++), i);
mc1.x=mc2.x=this.mouseX;
mc1.y=mc2.y=this.mouseY;
mc2.scaleX=-100;
mc1.cacheAsBitmap=mc2.cacheAsBitmap=true;
if (i>10) {
displace=false;
}
}
// draw the circle anim mc's to the bitmap
map1.draw(cont1);
map2.draw(cont2);
// draw the bitmap to itself (this progressively blurs the map so it fades to black gradually)
map1.draw(bmp1);
map2.draw(bmp2);
// apply displacement map filters to the button
this.filters=[dmfr,dmfl];
}
This code is on frame one of the main timeline and I am getting errors on several lines.
Error 1061 on these lines:
map1.draw(cont1);
map2.draw(cont2);
map1.draw(bmp1);
map2.draw(bmp2);
Error 1067 on these lines:
var dmfr=new flash.filters.DisplacementMapFilter(map1,mapPoint,1,1,-50,0,"ignore",0,1);
var dmfl=new flash.filters.DisplacementMapFilter(map2,mapPoint,1,1,50,0,"ignore",0,1);
If anyone can help me I would be greatly appreciative. I’m still new to AS3 but am trying to learn it. What the code is supposed to do is create a watery type effect on a button.