# Sections not loading properly on my timeline

**URL:** https://forum.kirupa.com/t/sections-not-loading-properly-on-my-timeline/67362
**Category:** flash
**Created:** [October 15, 2004, 6:13am UTC](https://forum.kirupa.com/t/sections-not-loading-properly-on-my-timeline/67362 "2004-10-15T06:13:47Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![xtm59](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/xtm59/32/819_2.png) [@xtm59](https://forum.kirupa.com/u/xtm59)
#### Post date: [October 15, 2004, 6:13am UTC](https://forum.kirupa.com/t/sections-not-loading-properly-on-my-timeline/67362/1 "2004-10-15T06:13:47Z")

</div>

This is a great site!!! Anyhow, I’ve been trying to use Claudios tutorial on the external swf transitions, and I cam across an issue that I’ve sat here for an hour trying to figure out. I initially had his tutorial working perfectly, but then I decided to use animated navigation to my site. This is what was I had inside the invisible button in my prior to adding Claudios script:

on (rollOver){  
tellTarget ("/buttonD") {  
gotoAndPlay (“over”);  
}  
}  
on (rollOut) {  
tellTarget ("/buttonD") {  
gotoAndPlay (“out”);  
}  
}

I then added the script from Claudios Tutorial:

b1.onRelease = function() {  
if (\_root.section != “page4.swf”) {  
\_root.section = “page4.swf”;  
\_root.transition.gotoAndPlay(“closing”);  
}  
};  
And modified it so I could apply it to my mc:

on (release){  
if (\_root.section != “page4.swf”) {  
\_root.section = “page4.swf”;  
\_root.transition.gotoAndPlay(“closing”);  
}  
}

Can someone explain to me what I’m doing wrong?? i’m not too sure, but it doesn’t seem to work at all
