Transitions SWF question!

[LEFT]I check out the tutorials for this transition swf,

I want to know, if I make the section.swf with dynamic loading content in the midframe, will it cause problem on the transition?! I mean will it not to go to play the OUTRO movie?!

plz help, I am new to flash! :q:
[/LEFT]

[LEFT]Still looking for help on this one!

I tried to marge the scene from Adding Thumbnails into the **[FONT=Arial][SIZE=2][COLOR=#000066] [/COLOR][/SIZE][/FONT] [FONT=Verdana][SIZE=4][COLOR=#003366]Transitions [/COLOR][/SIZE][/FONT] **[FONT=Verdana][SIZE=4][COLOR=#003366]Between External SWFs [/COLOR][/SIZE][/FONT]now I got problem in get the thumbnail scrolling?!

can anyone tell me what happen! plz!!

I tried to export those files to Flashplayer 7 AS 2.0 also.
[/LEFT]

Hi there,

Had a look at the problem for ya and solved it. :azn: The problem was in this part of the code:

tscroller.onEnterFrame = function() {
if ((_root._ymouse>=thumbnail_mc._y) && (_root._ymouse<=thumbnail_mc._y+thumbnail_mc._height)) {
if ((_root._xmouse>=(hit_right._x-40)) && (thumbnail_mc.hitTest(hit_right))) {
thumbnail_mc._x -= scroll_speed;
} else if ((_root._xmouse<=(hit_left._x+40)) && (thumbnail_mc.hitTest(hit_left))) {
thumbnail_mc._x += scroll_speed;

you had it set to _root when it need to be this as seen below. So now your scrolling images work.

tscroller.onEnterFrame = function() {
if ((this._ymouse>=thumbnail_mc._y) && (this._ymouse<=thumbnail_mc._y+thumbnail_mc._height)) {
if ((this._xmouse>=(hit_right._x-40)) && (thumbnail_mc.hitTest(hit_right))) {
thumbnail_mc._x -= scroll_speed;
} else if ((this._xmouse<=(hit_left._x+40)) && (thumbnail_mc.hitTest(hit_left))) {
thumbnail_mc._x += scroll_speed;

I’ve attached the new file. Hope this is wot u was asking for.

:thumb2: