Controlling loadMovie .. questions

[font=Arial][size=1]Hi all [/size][/font]

[font=Arial][size=1]I got a problem with my flash website i’m building right now.[/size][/font]

[font=Arial][size=1]I’m using a menu and a “core”, where all the external .swf loads. So, when i’m clicking on one button of my menu, for example “patate”, it loads “externalpatate.swf” in a mc called “maincoreinload” . So… it looks like this :[/size][/font]

[font=Arial][size=1]_root.patate.onRelease = function() {[/size][/font]
[font=Arial][size=1]maincoreinload.loadMovie(“externalpatate.swf”);[/size][/font]
[font=Arial][size=1]}[/size][/font]

[font=Arial][size=1]The movie loads… but… i need to control the loaded swf file ** externalpatate.swf . I got a link on this swf ( an email link ) that i just can’t click the link. Its like flash doesn’t see the actionscript, or don’t read it.[/size][/font]

[font=Arial][size=1]In the externalpatate.swf file, i got 2 scenes; the 1st one is for a preloader and when all is loaded, it goes to the second scene, where the email link is ( patate@patate.com )[/size][/font]

[font=Arial][size=1]So the code on the link goes like this:[/size][/font]

[font=Arial][size=1]_root.patatemail.onRelease = function() {[/size][/font]
[font=Arial][size=1]getURL(mailto:patate@patate.com);[/size][/font]
[font=Arial][size=1]}[/size][/font]

[font=Arial][size=1]So, if someone knows on how to control - click a link on a loaded swf movie … :-D[/size][/font]

[font=Arial][size=1]Thanks in advance[/size][/font]

sounds like everything is fine…but…when using the *getURL(“url”) * call the url should be in quotes unless it is a variable holding a string…getURL("mailto:whoever@wherever.com")

[font=Arial][size=1]Thx for response.[/size][/font]
[font=Arial][size=1][/size][/font]
[font=Arial][size=1]I just forgot to put the quotes on my earlier post… so now here it is :[/size][/font]
[font=Arial][size=1][/size][/font]
[font=Arial][size=1]_root.patate.onRelease = function() {
getURL("
[/size][/font][font=Arial][size=1]**mailto:patate@patate.com**[/size][/font][font=Arial][size=1]");
}
[/size][/font]
[font=Arial][size=1][/size][/font]
[font=Arial][size=1]…oh… maybe it’ll helps… the “hand cursor” used to identify a link when a cursor is over it… doesn’t appears… anyway :-S[/size][/font]
[font=Arial][size=1][/size][/font]
[font=Arial][size=1]I’ve tried the “loadMovieNum” … but no one of my external clips appears… i just really don’t know what to do here '([/size][/font]