Scroll

Hola y antes q nada gracias por tu ayuda, estoy empezando a programar con lingo y estoy atascada, tengo un codigo de scroll pero cuando lo intento utilizar con otras imagenes mias me da error en la linea:
p_list=]¬ y la siguiente, te envio el codigo.
Gracias otra vez ScrollSpite (global)
-- Copyright © 2000, ZZP Online, LLC. Free use for readers of Director Online's "The Multimedia Handyman". Visit Director Online at http://www.director-online.com.
property pMyStartV -- initial locV of the thumb sprite
property pMyStartH -- initial locH of the thumb sprite
property pMyGroup -- group name
property pSprite -- this sprite
global gScrollV -- amount scroll has been incremented Vertically from initial value
global gScrollH -- amount scroll has been incremented Horizontally from initial value
on getPropertyDescriptionList
p_list = [¬
#pMyGroup: [ #comment: "group name:"¬
#format: #symbol,¬
#default: #alpha]]
return p_list
end
on beginSprite me
pSprite = sprite(me.spriteNum)
pMyStartH = pSprite.locH
pMyStartV = pSprite.locV
end
on scrollH me, group
if pMyGroup = group then
pSprite.locH = pMyStartH + gScrollH[pMyGroup]
end if
end
on scrollV me, group
if pMyGroup = group then
pSprite.locV = pMyStartV + gScrollV[pMyGroup]
end if
end
on tellGroup me
return pMyGroup
end tellGroup

1 Respuesta

Respuesta
1
Primero tienes que decir que dentro del scroll cada una de tus imagenes y para eso tienes en la libreria y en la parte de texto tienes custom scrollbar.
Primero necesitas el texto en el escenario y luego tres elementos el que sube el texto el que lo baja y el cuadro que sube y baja. Tu arrastrs desde la libreria lo que he dicho antes a cada eñlemento y te sale un cuadro en el que le dices que es que.

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas