|
From: David A. <dap...@fi...> - 2004-09-07 10:50:16
|
hi, I want to do another slideTo action once the current slideTo has finished. I have tried capturing threadfinished and threadstop events but they dont seem to fire. What is the best way of doing it? Thanks David |
|
From: Leif W <war...@us...> - 2004-09-08 06:59:09
|
Message> ----- Original Message ----- > From: David Appledore > To: dyn...@li... > Sent: Tuesday, September 07, 2004 06:54 > Subject: [Dynapi-Help] slideTo events > > hi, > I want to do another slideTo action once the current slideTo > has finished. I have tried capturing threadfinished and threadstop > events but they dont seem to fire. What is the best way of doing it? > > Thanks > > David At the least, state which version of the DynAPI you are using, which browser and version, and a description of what you are trying to do, and preferably some examples of code that you have tried. If you are using the old DynAPI 2, would it be possible to switch to DynAPI 3? If you are starting a new project, then I'd suggest DynAPI 3. If you are modifying an existing project, I'd suggest staying with that, unless it's possible to rewrite all the JavaScript. I forget the slideTo and event capturing, but I can probably relearn and explain in DynAPI 3. Leif |
|
From: David A. <dap...@fi...> - 2004-09-08 09:04:33
|
Hi,
Well I managed to get it to work, I didn't find the help in the docs or
on the website, in fact in the examples the events didn't work on some ,
I found on another site. I am using dynAPI 3, IE 6 and firefox. I found
that to trap an event I have to put "on" in front of it, examples I saw
said I had to trap threadfinish but when I digged into the code it was
pathfinish here is some code I used.
var listener = {};
listener.onpathrun = function(e) {
var o = e.getSource();
status = "play "+o.x+" "+o.y;
}
listener.onpathfinish = function(e) {
var o = e.getSource();
status = "stop "+o.x+" "+o.y;;
slider.Bounce(slider.bounceInc);
}
this.lyr.addEventListener(listener);
-----Original Message-----
From: dyn...@li...
[mailto:dyn...@li...] On Behalf Of Leif W
Sent: 08 September 2004 07:59 AM
To: dyn...@li...
Subject: Re: [Dynapi-Help] slideTo events
Message> ----- Original Message -----
> From: David Appledore
> To: dyn...@li...
> Sent: Tuesday, September 07, 2004 06:54
> Subject: [Dynapi-Help] slideTo events
>
> hi,
> I want to do another slideTo action once the current slideTo has
> finished. I have tried capturing threadfinished and threadstop events
> but they dont seem to fire. What is the best way of doing it?
>
> Thanks
>
> David
At the least, state which version of the DynAPI you are using, which
browser and version, and a description of what you are trying to do, and
preferably some examples of code that you have tried. If you are using
the old DynAPI 2, would it be possible to switch to DynAPI 3? If you
are starting a new project, then I'd suggest DynAPI 3. If you are
modifying an existing project, I'd suggest staying with that, unless
it's possible to rewrite all the JavaScript.
I forget the slideTo and event capturing, but I can probably relearn and
explain in DynAPI 3.
Leif
-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click
_______________________________________________
Dynapi-Help mailing list
Dyn...@li...
https://lists.sourceforge.net/lists/listinfo/dynapi-help
|
|
From: Leif W <war...@us...> - 2004-09-08 15:49:31
|
Hi!
Well, it's cool that you got it to work. Can you tell me which examples
you were looking at? If they were in the DynAPI CVS, then which
examples' events didn't work and which docs did you look at hoping to
find answers? I think the threads were for multiple paths running
simultaneously, where you referenced each path by a thread. The docs
and examples for threads are very thin to nonexistent in my copy of the
CVS. The "on" prefix is required for events, though I remember asking
such a question when I was learning how to use events. I don't see this
documented clearly ("on" prefix, or the pathanim or slideanim objects
and events in Quick Ref). The examples with threadfinish were perhaps
written when the slideTo code resided in the Thread object. The
changelog in CVS indicates that they were moved to a separate file, and
thus presumably have their own event names.
Leif
----- Original Message -----
From: "David Appledore" <dap...@fi...>
To: <dyn...@li...>
Sent: Wednesday, September 08, 2004 05:09
Subject: RE: [Dynapi-Help] slideTo events
> Hi,
> Well I managed to get it to work, I didn't find the help in the docs
or
> on the website, in fact in the examples the events didn't work on some
,
> I found on another site. I am using dynAPI 3, IE 6 and firefox. I
found
> that to trap an event I have to put "on" in front of it, examples I
saw
> said I had to trap threadfinish but when I digged into the code it was
> pathfinish here is some code I used.
>
> var listener = {};
>
> listener.onpathrun = function(e) {
> var o = e.getSource();
> status = "play "+o.x+" "+o.y;
> }
>
>
> listener.onpathfinish = function(e) {
> var o = e.getSource();
> status = "stop "+o.x+" "+o.y;;
> slider.Bounce(slider.bounceInc);
> }
> this.lyr.addEventListener(listener);
>
>
> -----Original Message-----
> From: dyn...@li...
> [mailto:dyn...@li...] On Behalf Of Leif W
> Sent: 08 September 2004 07:59 AM
> To: dyn...@li...
> Subject: Re: [Dynapi-Help] slideTo events
>
>
> Message> ----- Original Message -----
> > From: David Appledore
> > To: dyn...@li...
> > Sent: Tuesday, September 07, 2004 06:54
> > Subject: [Dynapi-Help] slideTo events
> >
> > hi,
> > I want to do another slideTo action once the current slideTo has
> > finished. I have tried capturing threadfinished and threadstop
events
> > but they dont seem to fire. What is the best way of doing it?
> >
> > Thanks
> >
> > David
>
> At the least, state which version of the DynAPI you are using, which
> browser and version, and a description of what you are trying to do,
and
> preferably some examples of code that you have tried. If you are
using
> the old DynAPI 2, would it be possible to switch to DynAPI 3? If you
> are starting a new project, then I'd suggest DynAPI 3. If you are
> modifying an existing project, I'd suggest staying with that, unless
> it's possible to rewrite all the JavaScript.
>
> I forget the slideTo and event capturing, but I can probably relearn
and
> explain in DynAPI 3.
>
> Leif
>
>
>
>
>
> -------------------------------------------------------
> This SF.Net email is sponsored by BEA Weblogic Workshop
> FREE Java Enterprise J2EE developer tools!
> Get your free copy of BEA WebLogic Workshop 8.1 today.
> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click
> _______________________________________________
> Dynapi-Help mailing list
> Dyn...@li...
> https://lists.sourceforge.net/lists/listinfo/dynapi-help
>
>
>
>
> -------------------------------------------------------
> This SF.Net email is sponsored by BEA Weblogic Workshop
> FREE Java Enterprise J2EE developer tools!
> Get your free copy of BEA WebLogic Workshop 8.1 today.
> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click
> _______________________________________________
> Dynapi-Help mailing list
> Dyn...@li...
> https://lists.sourceforge.net/lists/listinfo/dynapi-help
>
|