[COLOR=black][FONT=Verdana]Hi.[/FONT][/COLOR]
[COLOR=black][FONT=Verdana] [/FONT][/COLOR]
[COLOR=black][FONT=Verdana]I’m talking from Brazil, so excuse me if my write is not so good.[/FONT][/COLOR]
[COLOR=black][FONT=Verdana] [/FONT][/COLOR]
[COLOR=black][FONT=Verdana]I’m a photographer and I did all my personal website in flash cs5 with as3.[/FONT][/COLOR]
[COLOR=black][FONT=Verdana] [/FONT][/COLOR]
[COLOR=black][FONT=Verdana]I made all the pages and at the index page a made a lens turn around and go to the left side of the page. Then appears the link bottoms. So, what I want to do is: when the person clicks at the portfolio bottom the page appears at the right part of the page.[/FONT][/COLOR]
[COLOR=black][FONT=Verdana]When I tried to put as3 codes nothing happened. It appears this error code:[/FONT][/COLOR]
[COLOR=blue]TypeError: Error #1010: Um termo é indefinido e não tem propriedades.
at index_fla::MainTimeline/frame85()[/COLOR]
[COLOR=#0000ff][/COLOR]
[COLOR=#0000ff]This is the code I used:[/COLOR]
stop();
function newvid(event:MouseEvent) {
trace(“you clicked me”);
var loadit = new Loader();
addChild(loadit);
loadit.load(new URLRequest(“perfil.swf”));
}
mcVazio.bt_perfil.addEventListener(MouseEvent.MOUSE_DOWN, newvid);
function newvid1(event:MouseEvent) {
trace(“you clicked me”);
var loadit = new Loader();
addChild(loadit);
loadit.load(new URLRequest(“contato.swf”));
}
mcVazio.bt_contato.addEventListener(MouseEvent.MOUSE_DOWN, newvid1);
function newvid2(event:MouseEvent) {
trace(“you clicked me”);
var loadit = new Loader();
addChild(loadit);
loadit.load(new URLRequest(“portfolio.swf”));
}
mcVazio.bt_portfolio.addEventListener(MouseEvent.MOUSE_DOWN, newvid2);
function newvid3(event:MouseEvent) {
trace(“you clicked me”);
var loadit = new Loader();
addChild(loadit);
loadit.load(new URLRequest(“home.swf”));
}
mcVazio.bt_home.addEventListener(MouseEvent.MOUSE_DOWN, newvid3);
[COLOR=#0000ff][/COLOR]
[COLOR=#0000ff]I would love if you could help me.[/COLOR]
[COLOR=#0000ff][/COLOR]
[COLOR=#0000ff]thanks[/COLOR]