<html>
<head>
<style>
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
FONT-SIZE: 10pt;
FONT-FAMILY:Tahoma
}
</style>
</head>
<body class='hmmessage'>
Tim,<BR>
 <BR>
<P style="MARGIN-BOTTOM: 0cm">“Thanks,&nbsp;&nbsp;</P>
<P style="MARGIN-BOTTOM: 0cm">Can I use tweener with yaw, pitch, and roll, I'm having some trouble with that.&nbsp;</P>
<P style="MARGIN-BOTTOM: 0cm">Tim G.”</P>
&nbsp;<BR>
I have used tweener with PV3D, it is really simple to use with amazing results there are examples of me using it on my blog (www.allthatflash.co.uk , look at sound examples). However,&nbsp;I have not put the code up (yet)&nbsp;:(<BR>
&nbsp;<BR>
Follow Matthias advice and join the PV3D mailing list and it might also&nbsp;be worth joining tweeners list.<BR>
&nbsp;<BR>
I have just dug this out should help you out:<BR>
&nbsp;<BR>
----- Original Message ----- <BR>From: &lt;papervision3d-request@osflash.org&gt;<BR>To: &lt;papervision3d@osflash.org&gt;<BR>Sent: Wednesday, January 23, 2008 8:00 PM<BR>Subject: Papervision3D Digest, Vol 16, Issue 278<BR> <BR> <BR>&gt; Send Papervision3D mailing list submissions to<BR>&gt; papervision3d@osflash.org<BR>&gt;<BR>&gt; To subscribe or unsubscribe via the World Wide Web, visit<BR>&gt; <A href="http://osflash.org/mailman/listinfo/papervision3d_osflash.org" target=_blank>http://osflash.org/mailman/listinfo/papervision3d_osflash.org</A><BR>&gt; or, via email, send a message with subject or body 'help' to<BR>&gt; papervision3d-request@osflash.org<BR>&gt;<BR>&gt; You can reach the person managing the list at<BR>&gt; papervision3d-owner@osflash.org<BR>&gt;<BR>&gt; When replying, please edit your Subject line so it is more specific<BR>&gt; than "Re: Contents of Papervision3D digest..."<BR>&gt;<BR>&gt;<BR>&gt; Today's Topics:<BR>&gt;<BR>&gt; 1. Re: Tweening planes (Carlson, Jonathan David)<BR>&gt; 2. Re: Audio Visualisation 05 (Tyler E)<BR>&gt; 3. Re: Audio Visualisation 05 (xero)<BR>&gt;<BR>&gt;<BR>&gt; ----------------------------------------------------------------------<BR>&gt;<BR>&gt; Message: 1<BR>&gt; Date: Wed, 23 Jan 2008 14:43:09 -0500<BR>&gt; From: "Carlson, Jonathan David" &lt;jdcarlson@liberty.edu&gt;<BR>&gt; Subject: Re: [Papervision3D] Tweening planes<BR>&gt; To: &lt;papervision3d@osflash.org&gt;<BR>&gt; Message-ID:<BR>&gt; &lt;84A543082108AB4F9EA26B76A935598C0244E50C@LUEMS03VS.University.liberty.edu&gt;<BR>&gt;<BR>&gt; Content-Type: text/plain; charset="us-ascii"<BR>&gt;<BR>&gt; Worked perfectly! Thanks a lot Zeh :)<BR>&gt;<BR>&gt; Jonathan Carlson<BR>&gt; Creative Web Developer<BR>&gt; Liberty University<BR>&gt; jdcarlson@liberty.edu<BR>&gt; -----Original Message-----<BR>&gt; From: papervision3d-bounces@osflash.org<BR>&gt; [mailto:papervision3d-bounces@osflash.org] On Behalf Of Zeh Fernando<BR>&gt; Sent: Wednesday, January 23, 2008 3:10 PM<BR>&gt; To: papervision3d@osflash.org<BR>&gt; Subject: Re: [Papervision3D] Tweening planes<BR>&gt;<BR>&gt; Apparently your plane is very simple, there are not enough triangles for<BR>&gt;<BR>&gt; a good distortion so you'll see them skewing when you try to rotate it<BR>&gt; instead of distorting accurately. Create your plane instance with more<BR>&gt; segments (check the parameters of the Plane constructor) and it should<BR>&gt; be fine.<BR>&gt;<BR>&gt; Zeh<BR>&gt;<BR>&gt; Carlson, Jonathan David wrote:<BR>&gt;&gt; Hey guys,<BR>&gt;&gt;<BR>&gt;&gt; Had a quick question about tweening planes...I'm using tweener to flip<BR>&gt; a<BR>&gt;&gt; plane to its other side, and when I call the tween it seems to morph<BR>&gt; the<BR>&gt;&gt; picture as its tweening, instead of a smooth transition. How do I fix<BR>&gt; this??<BR>&gt;&gt;<BR>&gt;&gt; You can see the swf at<BR>&gt;&gt; <A href="http://www.liberty.edu/media/9930/temp/coverflowTest.html" target=_blank>http://www.liberty.edu/media/9930/temp/coverflowTest.html</A><BR>&gt;&gt;<BR>&gt;&gt; The code I'm using is...<BR>&gt;&gt;<BR>&gt;&gt; container = this.createEmptyMovieClip( "container",<BR>&gt;&gt; this.getNextHighestDepth());<BR>&gt;&gt;<BR>&gt;&gt; container._x = Stage.width/2;<BR>&gt;&gt;<BR>&gt;&gt; container._y = Stage.height/2;<BR>&gt;&gt;<BR>&gt;&gt; scene = new MovieScene3D( container );<BR>&gt;&gt;<BR>&gt;&gt; camera = new Camera3D();<BR>&gt;&gt;<BR>&gt;&gt; camera.z = -1000;<BR>&gt;&gt;<BR>&gt;&gt; camera.zoom = 1;<BR>&gt;&gt;<BR>&gt;&gt; camera.focus = 500;<BR>&gt;&gt;<BR>&gt;&gt; var material :BitmapAssetMaterial = new BitmapAssetMaterial(<BR>&gt; "albumcover" );<BR>&gt;&gt;<BR>&gt;&gt; material.oneSide = false;<BR>&gt;&gt;<BR>&gt;&gt; var plane:Plane = new Plane(material);<BR>&gt;&gt;<BR>&gt;&gt; plane.x = (container._width /2);<BR>&gt;&gt;<BR>&gt;&gt; plane.y = (container._height / 2)-90;<BR>&gt;&gt;<BR>&gt;&gt; plane.z = 0;<BR>&gt;&gt;<BR>&gt;&gt; scene.push(plane);<BR>&gt;&gt;<BR>&gt;&gt; var container:MovieClip = plane.container;<BR>&gt;&gt;<BR>&gt;&gt; container._alpha = 50;<BR>&gt;&gt;<BR>&gt;&gt; container.myparent = plane;<BR>&gt;&gt;<BR>&gt;&gt; container.onRollOver = function()<BR>&gt;&gt;<BR>&gt;&gt; {<BR>&gt;&gt;<BR>&gt;&gt; Tweener.addTween(this,{_alpha:100,time:.5});<BR>&gt;&gt;<BR>&gt;&gt;<BR>&gt; Tweener.addTween(this.displayObject3D,{scaleX:1.5,scaleY:1.5,time:.5});<BR>&gt;&gt;<BR>&gt;&gt; };<BR>&gt;&gt;<BR>&gt;&gt; container.onRollOut = container.onReleaseOutside = function()<BR>&gt;&gt;<BR>&gt;&gt; {<BR>&gt;&gt;<BR>&gt;&gt; Tweener.addTween(this,{_alpha:50,time:.5});<BR>&gt;&gt;<BR>&gt;&gt; Tweener.addTween(this.displayObject3D,{scaleX:1,scaleY:1,time:.5});<BR>&gt;&gt;<BR>&gt;&gt; };<BR>&gt;&gt;<BR>&gt;&gt; container.onRelease = function()<BR>&gt;&gt;<BR>&gt;&gt; {<BR>&gt;&gt;<BR>&gt;&gt; if(!Tweener.isTweening(this.myparent)) {<BR>&gt;&gt;<BR>&gt;&gt; var tempRot = Math.abs(this.myparent.rotationY - 180);<BR>&gt;&gt;<BR>&gt;&gt; Tweener.addTween(this.myparent,{rotationY:tempRot,time:.5});<BR>&gt;&gt;<BR>&gt;&gt; }<BR>&gt;&gt;<BR>&gt;&gt; };<BR>&gt;&gt;<BR>&gt;&gt; camera.x = container._width / 2;<BR>&gt;&gt;<BR>&gt;&gt; camera.y = container._height / 2;<BR>&gt;&gt;<BR>&gt;&gt; scene.renderCamera( camera );<BR>&gt;&gt;<BR>&gt;&gt; Any ideas?? Thanks a lot, the mailing list, wiki, etc have been a huge<BR>&gt;<BR>&gt;&gt; help so far, been wanting to get into Papervision for awhile now...<BR>&gt;&gt;<BR>&gt;&gt; Jonathan Carlson<BR>&gt;&gt;<BR>&gt;&gt; /Creative Web Developer/<BR>&gt;&gt;<BR>&gt;&gt; /Liberty University/<BR>&gt;&gt;<BR>&gt;&gt; /jdcarlson@liberty.edu &lt;mailto:jdcarlson@liberty.edu&gt;/<BR>&gt;&gt;<BR>&gt;&gt;<BR>&gt;&gt;<BR>&gt; ------------------------------------------------------------------------<BR>&gt;&gt;<BR>&gt;&gt; _______________________________________________<BR>&gt;&gt; Papervision3D mailing list<BR>&gt;&gt; Papervision3D@osflash.org<BR>&gt;&gt; <A href="http://osflash.org/mailman/listinfo/papervision3d_osflash.org" target=_blank>http://osflash.org/mailman/listinfo/papervision3d_osflash.org</A><BR>&gt;<BR>&gt; _______________________________________________<BR>&gt; Papervision3D mailing list<BR>&gt; Papervision3D@osflash.org<BR>&gt; <A href="http://osflash.org/mailman/listinfo/papervision3d_osflash.org" target=_blank>http://osflash.org/mailman/listinfo/papervision3d_osflash.org</A><BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; ------------------------------<BR>&gt;<BR>&gt; Message: 2<BR>&gt; Date: Wed, 23 Jan 2008 11:46:57 -0800 (PST)<BR>&gt; From: Tyler E &lt;tyleregeto@hotmail.com&gt;<BR>&gt; Subject: Re: [Papervision3D] Audio Visualisation 05<BR>&gt; To: papervision3D@osflash.org<BR>&gt; Message-ID: &lt;15050271.post@talk.nabble.com&gt;<BR>&gt; Content-Type: text/plain; charset=us-ascii<BR>&gt;<BR>&gt;<BR>&gt; Very nice!<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; Mr.doob wrote:<BR>&gt;&gt;<BR>&gt;&gt; <A href="http://mrdoob.com/#/63/" target=_blank>http://mrdoob.com/#/63/</A> + FFT = <A href="http://mrdoob.com/#/67/" target=_blank>http://mrdoob.com/#/67/</A><BR>&gt;&gt;<BR>&gt;&gt; Clicking loads another tune.<BR>&gt;&gt;<BR>&gt;&gt; Hope somebody finds it (or the sources) interesting.<BR>&gt;&gt;<BR>&gt;&gt; Cheers,<BR>&gt;&gt; Mr.doob<BR>&gt;&gt;<BR>&gt;<BR>&gt;<BR>&gt; -----<BR>&gt; Tyler Egeto<BR>&gt; My site is <A href="http://tyleregeto.com/" target=_blank>http://tyleregeto.com</A> TylerEgeto.com - Feel free to drop by.<BR>&gt; -- <BR>&gt; View this message in context: <BR>&gt; <A href="http://www.nabble.com/Audio-Visualisation-05-tp15048586p15050271.html" target=_blank>http://www.nabble.com/Audio-Visualisation-05-tp15048586p15050271.html</A><BR>&gt; Sent from the Papervision3D mailing list archive at Nabble.com.<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; ------------------------------<BR>&gt;<BR>&gt; Message: 3<BR>&gt; Date: Wed, 23 Jan 2008 14:48:06 -0500<BR>&gt; From: xero &lt;xero.nu@gmail.com&gt;<BR>&gt; Subject: Re: [Papervision3D] Audio Visualisation 05<BR>&gt; To: papervision3d@osflash.org<BR>&gt; Message-ID:<BR>&gt; &lt;b0a8f07c0801231148s47de73eal4dbcbd83bf1cf201@mail.gmail.com&gt;<BR>&gt; Content-Type: text/plain; charset="iso-8859-1"<BR>&gt;<BR>&gt; your way beyond rad!<BR>&gt; thanx again for the sources!<BR>&gt; ____ ___<BR>&gt; \ \/ /___________ ____<BR>&gt; .\ // __ \_ __ \/ _ \<BR>&gt; ./ \ ___/| | \( &lt;_&gt; )<BR>&gt; /___/\ \___ &gt;__|---\____/<BR>&gt; | \_/ \/ |<BR>&gt; | xero harrison |<BR>&gt; | x@xero.nu |<BR>&gt; | <A href="http://xero.nu/" target=_blank>http://xero.nu</A> |<BR>&gt; | <A href="http://fontvir.us/" target=_blank>http://fontvir.us</A> |<BR>&gt; | <A href="http://xero.owns.us/" target=_blank>http://xero.owns.us</A> |<BR>&gt; `---------------------'<BR>&gt;<BR>&gt;<BR>&gt;&gt; ---------- Forwarded message ----------<BR>&gt;&gt; From: "Mr.doob" &lt;info@mrdoob.com&gt;<BR>&gt;&gt; To: papervision3D@osflash.org<BR>&gt;&gt; Date: Wed, 23 Jan 2008 10:43:31 -0800 (PST)<BR>&gt;&gt; Subject: [Papervision3D] Audio Visualisation 05<BR>&gt;&gt;<BR>&gt;&gt; <A href="http://mrdoob.com/#/63/" target=_blank>http://mrdoob.com/#/63/</A> + FFT = <A href="http://mrdoob.com/#/67/" target=_blank>http://mrdoob.com/#/67/</A><BR>&gt;&gt;<BR>&gt;&gt; Clicking loads another tune.<BR>&gt;&gt;<BR>&gt;&gt; Hope somebody finds it (or the sources) interesting.<BR>&gt;&gt;<BR>&gt;&gt; Cheers,<BR>&gt;&gt; Mr.doob<BR>&gt;&gt; --<BR>&gt;&gt; View this message in context:<BR>&gt;&gt; <A href="http://www.nabble.com/Audio-Visualisation-05-tp15048586p15048586.html" target=_blank>http://www.nabble.com/Audio-Visualisation-05-tp15048586p15048586.html</A><BR>&gt;&gt; Sent from the Papervision3D mailing list archive at <BR>&gt;&gt; Nabble.com&lt;<A href="http://nabble.com/" target=_blank>http://nabble.com/</A>&gt;<BR>&gt;&gt; .<BR>&gt; -------------- next part --------------<BR>&gt; An HTML attachment was scrubbed...<BR>&gt; URL: <BR>&gt; <A href="http://osflash.org/pipermail/papervision3d_osflash.org/attachments/20080123/fd3bdd01/attachment-0001.html" target=_blank>http://osflash.org/pipermail/papervision3d_osflash.org/attachments/20080123/fd3bdd01/attachment-0001.html</A><BR>&gt;<BR>&gt; ------------------------------<BR>&gt;<BR>&gt; _______________________________________________<BR>&gt; Papervision3D mailing list<BR>&gt; Papervision3D@osflash.org<BR>&gt; <A href="http://osflash.org/mailman/listinfo/papervision3d_osflash.org" target=_blank>http://osflash.org/mailman/listinfo/papervision3d_osflash.org</A><BR>&gt;<BR>&gt;<BR>&gt; End of Papervision3D Digest, Vol 16, Issue 278<BR>&gt; **********************************************&nbsp;<BR> <BR><br /><hr />Think you know your TV, music and film? <a href='https://www.searchcharades.com' target='_new'>Try Search Charades!</a></body>
</html>