Ask a Question related to Macromedia Director Lingo, Design and Development.
-
Rowan Ferguson #1
basic panning
I'm trying to get a sprite to move horizontally when I hold down the cursor
key. Except it won't keep panning while I hold the key down. I don't know
how to add a "repeat while the keydown" in here?
I've got:
on exitframe
--right arrow
if keyPressed(124) then
set the locH of sprite 25 = the locH of sprite 5 + 8
end if
go the frame
end
Rowan Ferguson Guest
-
Sound panning
Hi, Hope someone can help. I have created a 3d world in director. Objects in the world emit sounds but so far I can only control the volume. (i.e... -
Live panning of sound
Hi, I'm trying to use live panning of sound in a 3D world that I have created. I have four objects which each emit a seperate sound and the volume... -
Panning while editing text
Maybe this has already been discussed, but I can't find the answer anywhere. Pressing the spacebar, as a shortcut for the Hand tool, is great, and... -
Motion Tweens: Panning Pictures in Stationary Mask
The New York Times has Flash slide shows on their site. There is a motion tween effect they use that I can not figure out. If anyone could give me... -
Panning Large Images
Hello everyone, I'm working on a project where the client wants to pan very large images left to right across the screen. This is easy enough to... -
Jerry Ndo #2
Re: basic panning
You had the wrong sprite number (you had 5 instead of 25):
set the locH of sprite 25 = the locH of sprite 25 + 8
^^
I hope that helps.
Thanks,
Jerry
"Rowan Ferguson" <rowan@netimpact.com.au> wrote in message
news:br5sbs$q46$1@forums.macromedia.com...cursor> I'm trying to get a sprite to move horizontally when I hold down the> key. Except it won't keep panning while I hold the key down. I don't know
> how to add a "repeat while the keydown" in here?
>
> I've got:
>
> on exitframe
> --right arrow
> if keyPressed(124) then
> set the locH of sprite 25 = the locH of sprite 5 + 8
> end if
> go the frame
> end
>
>
Jerry Ndo Guest
-
Rowan Ferguson #3
Re: basic panning
Thanks Jerry,
I've never learned to count past 10.
"Jerry Ndo" <ndookie2000@yahoo.com> wrote in message
news:br5u3d$sd4$1@forums.macromedia.com...know> You had the wrong sprite number (you had 5 instead of 25):
>
> set the locH of sprite 25 = the locH of sprite 25 + 8
> ^^
>
> I hope that helps.
>
> Thanks,
> Jerry
>
>
> "Rowan Ferguson" <rowan@netimpact.com.au> wrote in message
> news:br5sbs$q46$1@forums.macromedia.com...> cursor> > I'm trying to get a sprite to move horizontally when I hold down the> > key. Except it won't keep panning while I hold the key down. I don't>> > how to add a "repeat while the keydown" in here?
> >
> > I've got:
> >
> > on exitframe
> > --right arrow
> > if keyPressed(124) then
> > set the locH of sprite 25 = the locH of sprite 5 + 8
> > end if
> > go the frame
> > end
> >
> >
>
Rowan Ferguson Guest



Reply With Quote

