flash slide prez
- Started
- Last post
- 5 Responses
- Buckyball2
Working on a Flash slide prensation. 24 frames and a glitch.
When the presentation is run frame 11 shows up underneath all the frames starting with number 1.
What could be the possible cause of this?
Thanks,
bB
- jevad0
terrorists
- joyride0
um it's on the time line?
Could be any number of things. all depends on how your doing it. is it straight (nextFrame) 1-24, loading mc's from the library, external swfs.
- Buckyball20
This was coded by someone else in house and to be honest I'm not much of a developer type. On most slides it's this:
on (hide) {
// GoTo Next Screen behavior
var screen = null;
var target = this;
while((screen == null) && (target != undefined) && (target != null))
{
if(target instanceof mx.screens.Screen)
{
screen = target;
}
else
{
target = target._parent;
}
}
if(screen instanceof mx.screens.Slide)
{
screen.rootSlide.currentSlide.go...
}
// End GoTo Next Screen behavior}
On a few others its:
on (hide) {
// Transition behavior
if (!eventObj.target._isSlide || (eventObj.target._isSlide && eventObj.target.currentSlide)) {
mx.transitions.TransitionManager... (eventObj.target,
{type:mx.transitions.Fade,
direction:1, duration:1, easing:mx.transitions.easing.Non...
param1:empty, param2:empty});eventObj.target.__transitionMana... = eventObj.type;
}
// End Transition behavior}
If any of that shows a problem...
- Buckyball20
Oh and nothing loaded externally. All content is on the timeline of each slide. If that helps.
thanks
- joyride0
The on (hide) is a mouse behavior.
Is it just 24 frames that should be linked one at a time? If it is put some traces to see where it currently is:
trace(_currentFrame) they should tell you where the playhead is