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