Comportamientos incompatibles
Estimado experto:
Tengo un texto programado de tal forma que hace scroll cuando pulso sobre él en su parte inferior(scroll hacia abajo) o en su parte superior (scroll hacia arriba). Funciona perfectamente por si solo, sin embargo no me permite agregar otros comportamientos, pues director no los toma en consideración (solo al scroll). Te explico quiero: quiero crear hipertextos a ciertas palabras dentro de ese personaje de texto, pero no puedo. Hago la programacion, pero directo no lo toma en cuenta, simplemento no funciona.
El texto tiene el sigguiente script:
property oldH, oldV, myMember, mySpriteNum, maxHeight, theloc
on beginSprite me
set mySpriteNum= the spriteNum of me
set myMember= the member of sprite mySpriteNum
end
on mouseDown me
set maxHeight= the height of myMember- the height of sprite mySpriteNum
if the height of myMember< the height of sprite mySpriteNum then exit
set oldH= the mouseH
set oldV= the mouseV
set newV= oldV
set theLoc= float(the scrollTop of myMember)
repeat while the stillDown
updateStage
if the mouseV < sprite (me.spriteNum).top + (sprite (me.spriteNum).height / 3) then
scrollByLine member "Texto01", -1
else if the mouseV > sprite (me.spriteNum).bottom - (sprite (me.spriteNum).height / 3) then
scrollByLine member "Texto01", 1
end if
end repeat
end
Mientras que los hipertextos vienen dados por la siguiente variable global:
on hyperlinkClicked me, etiqueta,recuerda
the itemdelimiter=";"
posicion=etiqueta.item[1]
pelicula=etiqueta.item[2]
go to frame posicion of movie (pelicula)
end
Estos codigos te dan alguna idea porqué ambos comportamientos no pueden coexitir y trabajar juntos?
Debo aclarar que separadamente, ambos funcionan a la perfecfcion, pero no puedo hacer un movie con ambos, porque no funcionan juntos.
Saludos y gracias,
Alexander
Tengo un texto programado de tal forma que hace scroll cuando pulso sobre él en su parte inferior(scroll hacia abajo) o en su parte superior (scroll hacia arriba). Funciona perfectamente por si solo, sin embargo no me permite agregar otros comportamientos, pues director no los toma en consideración (solo al scroll). Te explico quiero: quiero crear hipertextos a ciertas palabras dentro de ese personaje de texto, pero no puedo. Hago la programacion, pero directo no lo toma en cuenta, simplemento no funciona.
El texto tiene el sigguiente script:
property oldH, oldV, myMember, mySpriteNum, maxHeight, theloc
on beginSprite me
set mySpriteNum= the spriteNum of me
set myMember= the member of sprite mySpriteNum
end
on mouseDown me
set maxHeight= the height of myMember- the height of sprite mySpriteNum
if the height of myMember< the height of sprite mySpriteNum then exit
set oldH= the mouseH
set oldV= the mouseV
set newV= oldV
set theLoc= float(the scrollTop of myMember)
repeat while the stillDown
updateStage
if the mouseV < sprite (me.spriteNum).top + (sprite (me.spriteNum).height / 3) then
scrollByLine member "Texto01", -1
else if the mouseV > sprite (me.spriteNum).bottom - (sprite (me.spriteNum).height / 3) then
scrollByLine member "Texto01", 1
end if
end repeat
end
Mientras que los hipertextos vienen dados por la siguiente variable global:
on hyperlinkClicked me, etiqueta,recuerda
the itemdelimiter=";"
posicion=etiqueta.item[1]
pelicula=etiqueta.item[2]
go to frame posicion of movie (pelicula)
end
Estos codigos te dan alguna idea porqué ambos comportamientos no pueden coexitir y trabajar juntos?
Debo aclarar que separadamente, ambos funcionan a la perfecfcion, pero no puedo hacer un movie con ambos, porque no funcionan juntos.
Saludos y gracias,
Alexander
1 respuesta
Respuesta de baronclo
1