From ty at addicted2tv.com Wed Sep 1 12:00:54 2010 From: ty at addicted2tv.com (ty at addicted2tv.com) Date: 1 Sep 2010 20:00:54 +0100 Subject: [Papervision3D] Ty is on Holiday Message-ID: <20100901190054.15705.qmail@addicted2tv.com> I am away on holiday from Monday 30th August until Monday 6th September. If you have an urgent query please contact Sarah at addicted2tv.com. I'll respond to all mails when I return. Best wishes Ty-John Roberts Addicted2tv.com From ty at addicted2tv.com Thu Sep 2 12:01:19 2010 From: ty at addicted2tv.com (ty at addicted2tv.com) Date: 2 Sep 2010 20:01:19 +0100 Subject: [Papervision3D] Ty is on Holiday Message-ID: <20100902190119.7608.qmail@addicted2tv.com> I am away on holiday from Monday 30th August until Monday 6th September. If you have an urgent query please contact Sarah at addicted2tv.com. I'll respond to all mails when I return. Best wishes Ty-John Roberts Addicted2tv.com From admiral at nuclearpixel.com Thu Sep 2 21:05:58 2010 From: admiral at nuclearpixel.com (Admiral) Date: Thu, 2 Sep 2010 21:05:58 -0700 (PDT) Subject: [Papervision3D] Displaying a preloader for a Collada (.DAE) file In-Reply-To: <1283486058421-2525082.post@n4.nabble.com> References: <1263788963175-782807.post@n4.nabble.com> <4170db510712260251h7d28023coef097a17b4be3c20@mail.gmail.com> <0FE7EC2A6979604D8BA08B8A032D2A4A613DB3@mail01.lostboys.nl> <1283486058422-782810.post@n4.nabble.com> <1283486058421-2525082.post@n4.nabble.com> Message-ID: <07E08B2D-31FE-424B-8769-953B999F9799@nuclearpixel.com> Pardon, what? In the message that you just sent to me, there are so many chains of conversation going that I have lost track of any original message you might have meant to send to me. Can you please clarify? Talk with you soon, -Admiral On Sep 2, 2010, at 9:54 PM, amandak695 [via Papervision3D] wrote: > > Admiral wrote: > I am very interested in learning about how you would go about > applying a callback function to a material that already exists on a > DAE. Does anyone know how you would go about using > BitmapFileMaterial.callback? > > As it is in my scene, I have a function that I call when a DAE has > completed loading, and I apply it like this: > >
> package {
>
>         //...import everything...
>
>         public class myScene extends Sprite {
>
>                 //...set up all my variables, camera, scene,  
> viewport...
>                 var model = new DAE();
>
>                 public function myScene(){
>                         //...position the camera, add the viewport,  
> all of that...
>
>                          
> model.addEventListener(FileLoadEvent.ANIMATIONS_COMPLETE,  
> daeLoadHandler);
>                         model.load('model.dae');
>
>                         addEventListener(Event.ENTER_FRAME, loop);
>                 }
>
>                 //...define the loop function, make it render...
>
>                 public function daeLoadHandler(event:Event){
>                         var daeInstance = event.target;
>                         for (var matName:String in  
> daeInstance.materials.materialsByName) {
>                                 var daeMat:MaterialObject3D =  
> daeInstance.materials.materialsByName[ matName ];
>                                 daeMat.callback = callbackFunction;
>                         }
>                 }
>
>                 public function callbackFunction(event:Event){
>                 //...make my preloader animation go away...
>                 }
>
>         }
> }
> 
> > My code breaks at the bolded line above; I'm not sure how to use > 'callback'. Any ideas, anyone? > > For the longest time, I had been battling with the issue of not > being able to display a progress bar for the percent loaded of all > of the DAE files I was pulling into my scenes. Now that I've got > that figured out, it seems that my next challenge is to find a way > to find out the download progress of all of the bitmap files that > belong to the materials that come on those DAEs by default... I > really don't want to have to spend the time to put those materials > on my DAEs in my 3D app just to have to assign them to the model > again in my actionscript. > > I think it would be the greatest thing since sliced bread if someone > could find a way to return an overall download progress percentage > from an array of assets they want loaded. > > Eric-Paul Lecluse, thank you for bringing to my attention the > 'callback' property and 'COLLADA_MATERIALS_DONE' event. > > Has anyone been able to make any use of the 'COLLADA_MATERIALS_DONE' > event? Might you be kind enough to post a quick example of how to > use it? > > -Admiral > > > > > Eric-Paul Lecluse wrote: > Hey Tim, > > The ProgressEvent.PROGRESS works great for the DAE/XML, but not for > possible bitmap textures that are loaded in automatically. The Collada > class used the FileLoadEvent.COLLADA_MATERIALS_DONE, but this seems to > be unimplemented in the DAE. > > Now, there is the static BitmapFileMaterial.callback > ision3d_materials_BitmapFileMaterial.html#callback> , to which you > could > assign a method that's triggered when all bitmap loading has finished. > But I'm not sure if you want us abusing that property instead of maybe > listening to an event of a kind. > > What's your advice? > > Cheers, > Eric-Paul. > > > -----Original Message----- > On Behalf Of Tim Knip > Subject: Re: [Papervision3D] Displaying a preloader for a Collada > (.DAE) file > > dae = new DAE(); > dae.addEventListener( ProgressEvent.PROGRESS, myLoadHandler ); > dae.load( "myfile.DAE" ); > > Tim > 2007/12/25, garion1 : > > > > > Can someone please explain how to display a preloader for a .dae > file. > > _______________________________________________ > Papervision3D mailing list > Papervision3D at osflash.org > http://osflash.org/mailman/listinfo/papervision3d_osflash.org > Thanks you for the post. > http://moviesonlineworld.com > > > View message @ http://papervision3d.758870.n4.nabble.com/Displaying-a-preloader-for-a-Collada-DAE-file-tp782807p2525082.html > To unsubscribe from Re: Displaying a preloader for a Collada (.DAE) > file, click here. > -- View this message in context: http://papervision3d.758870.n4.nabble.com/Displaying-a-preloader-for-a-Collada-DAE-file-tp782807p2525091.html Sent from the Papervision3D mailing list archive at Nabble.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ty at addicted2tv.com Fri Sep 3 12:01:06 2010 From: ty at addicted2tv.com (ty at addicted2tv.com) Date: 3 Sep 2010 20:01:06 +0100 Subject: [Papervision3D] Ty is on Holiday Message-ID: <20100903190106.20080.qmail@addicted2tv.com> I am away on holiday from Monday 30th August until Monday 6th September. If you have an urgent query please contact Sarah at addicted2tv.com. I'll respond to all mails when I return. Best wishes Ty-John Roberts Addicted2tv.com From ross.sclafani at gmail.com Fri Sep 3 12:48:17 2010 From: ross.sclafani at gmail.com (Ross Sclafani) Date: Fri, 3 Sep 2010 15:48:17 -0400 Subject: [Papervision3D] Ty is on Holiday In-Reply-To: <20100903190106.20080.qmail@addicted2tv.com> References: <20100903190106.20080.qmail@addicted2tv.com> Message-ID: Does anyone know if Ty is away on Holiday? And when he comes back? If not, do you know who can contact? It's urgent. Ross P. Sclafani design / technology / creative http://ross.sclafani.net http://www.twitter.com/rosssclafani (347) 204.5714 let go of even your longest held beliefs, the only truth is in observation. On Sep 3, 2010, at 3:01 PM, ty at addicted2tv.com wrote: > I am away on holiday from Monday 30th August until Monday 6th September. > > If you have an urgent query please contact Sarah at addicted2tv.com. > > I'll respond to all mails when I return. > > Best wishes > > Ty-John Roberts > > Addicted2tv.com > > > > > > _______________________________________________ > Papervision3D mailing list > Papervision3D at osflash.org > http://osflash.org/mailman/listinfo/papervision3d_osflash.org -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ross_thumb.jpg Type: image/jpeg Size: 7221 bytes Desc: not available URL: From ty at addicted2tv.com Fri Sep 3 12:56:25 2010 From: ty at addicted2tv.com (ty at addicted2tv.com) Date: 3 Sep 2010 20:56:25 +0100 Subject: [Papervision3D] Ty is on Holiday Message-ID: <20100903195625.1811.qmail@addicted2tv.com> I am away on holiday from Monday 30th August until Monday 6th September. If you have an urgent query please contact Sarah at addicted2tv.com. I'll respond to all mails when I return. Best wishes Ty-John Roberts Addicted2tv.com From ross.sclafani at gmail.com Fri Sep 3 12:48:17 2010 From: ross.sclafani at gmail.com (Ross Sclafani) Date: Fri, 3 Sep 2010 15:48:17 -0400 Subject: [Papervision3D] Ty is on Holiday In-Reply-To: <20100903190106.20080.qmail@addicted2tv.com> References: <20100903190106.20080.qmail@addicted2tv.com> Message-ID: Does anyone know if Ty is away on Holiday? And when he comes back? If not, do you know who can contact? It's urgent. Ross P. Sclafani design / technology / creative http://ross.sclafani.net http://www.twitter.com/rosssclafani (347) 204.5714 let go of even your longest held beliefs, the only truth is in observation. On Sep 3, 2010, at 3:01 PM, ty at addicted2tv.com wrote: > I am away on holiday from Monday 30th August until Monday 6th September. > > If you have an urgent query please contact Sarah at addicted2tv.com. > > I'll respond to all mails when I return. > > Best wishes > > Ty-John Roberts > > Addicted2tv.com > > > > > > _______________________________________________ > Papervision3D mailing list > Papervision3D at osflash.org > http://osflash.org/mailman/listinfo/papervision3d_osflash.org -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ross_thumb.jpg Type: image/jpeg Size: 7221 bytes Desc: not available URL: From ty at addicted2tv.com Fri Sep 3 13:20:10 2010 From: ty at addicted2tv.com (ty at addicted2tv.com) Date: 3 Sep 2010 21:20:10 +0100 Subject: [Papervision3D] Ty is on Holiday Message-ID: <20100903202010.16090.qmail@addicted2tv.com> I am away on holiday from Monday 30th August until Monday 6th September. If you have an urgent query please contact Sarah at addicted2tv.com. I'll respond to all mails when I return. Best wishes Ty-John Roberts Addicted2tv.com From ross.sclafani at gmail.com Fri Sep 3 12:48:17 2010 From: ross.sclafani at gmail.com (Ross Sclafani) Date: Fri, 3 Sep 2010 15:48:17 -0400 Subject: [Papervision3D] Ty is on Holiday In-Reply-To: <20100903190106.20080.qmail@addicted2tv.com> References: <20100903190106.20080.qmail@addicted2tv.com> Message-ID: Does anyone know if Ty is away on Holiday? And when he comes back? If not, do you know who can contact? It's urgent. Ross P. Sclafani design / technology / creative http://ross.sclafani.net http://www.twitter.com/rosssclafani (347) 204.5714 let go of even your longest held beliefs, the only truth is in observation. On Sep 3, 2010, at 3:01 PM, ty at addicted2tv.com wrote: > I am away on holiday from Monday 30th August until Monday 6th September. > > If you have an urgent query please contact Sarah at addicted2tv.com. > > I'll respond to all mails when I return. > > Best wishes > > Ty-John Roberts > > Addicted2tv.com > > > > > > _______________________________________________ > Papervision3D mailing list > Papervision3D at osflash.org > http://osflash.org/mailman/listinfo/papervision3d_osflash.org -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ross_thumb.jpg Type: image/jpeg Size: 7221 bytes Desc: not available URL: From ross.sclafani at gmail.com Fri Sep 3 12:48:17 2010 From: ross.sclafani at gmail.com (Ross Sclafani) Date: Fri, 3 Sep 2010 15:48:17 -0400 Subject: [Papervision3D] Ty is on Holiday In-Reply-To: <20100903190106.20080.qmail@addicted2tv.com> References: <20100903190106.20080.qmail@addicted2tv.com> Message-ID: Does anyone know if Ty is away on Holiday? And when he comes back? If not, do you know who can contact? It's urgent. Ross P. Sclafani design / technology / creative http://ross.sclafani.net http://www.twitter.com/rosssclafani (347) 204.5714 let go of even your longest held beliefs, the only truth is in observation. On Sep 3, 2010, at 3:01 PM, ty at addicted2tv.com wrote: > I am away on holiday from Monday 30th August until Monday 6th September. > > If you have an urgent query please contact Sarah at addicted2tv.com. > > I'll respond to all mails when I return. > > Best wishes > > Ty-John Roberts > > Addicted2tv.com > > > > > > _______________________________________________ > Papervision3D mailing list > Papervision3D at osflash.org > http://osflash.org/mailman/listinfo/papervision3d_osflash.org -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ross_thumb.jpg Type: image/jpeg Size: 7221 bytes Desc: not available URL: From ross.sclafani at gmail.com Fri Sep 3 12:48:17 2010 From: ross.sclafani at gmail.com (Ross Sclafani) Date: Fri, 3 Sep 2010 15:48:17 -0400 Subject: [Papervision3D] Ty is on Holiday In-Reply-To: <20100903190106.20080.qmail@addicted2tv.com> References: <20100903190106.20080.qmail@addicted2tv.com> Message-ID: Does anyone know if Ty is away on Holiday? And when he comes back? If not, do you know who can contact? It's urgent. Ross P. Sclafani design / technology / creative http://ross.sclafani.net http://www.twitter.com/rosssclafani (347) 204.5714 let go of even your longest held beliefs, the only truth is in observation. On Sep 3, 2010, at 3:01 PM, ty at addicted2tv.com wrote: > I am away on holiday from Monday 30th August until Monday 6th September. > > If you have an urgent query please contact Sarah at addicted2tv.com. > > I'll respond to all mails when I return. > > Best wishes > > Ty-John Roberts > > Addicted2tv.com > > > > > > _______________________________________________ > Papervision3D mailing list > Papervision3D at osflash.org > http://osflash.org/mailman/listinfo/papervision3d_osflash.org -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ross_thumb.jpg Type: image/jpeg Size: 7221 bytes Desc: not available URL: From ty at addicted2tv.com Fri Sep 3 13:21:12 2010 From: ty at addicted2tv.com (ty at addicted2tv.com) Date: 3 Sep 2010 21:21:12 +0100 Subject: [Papervision3D] Ty is on Holiday Message-ID: <20100903202112.19476.qmail@addicted2tv.com> I am away on holiday from Monday 30th August until Monday 6th September. If you have an urgent query please contact Sarah at addicted2tv.com. I'll respond to all mails when I return. Best wishes Ty-John Roberts Addicted2tv.com From ty at addicted2tv.com Fri Sep 3 13:21:17 2010 From: ty at addicted2tv.com (ty at addicted2tv.com) Date: 3 Sep 2010 21:21:17 +0100 Subject: [Papervision3D] Ty is on Holiday Message-ID: <20100903202117.19568.qmail@addicted2tv.com> I am away on holiday from Monday 30th August until Monday 6th September. If you have an urgent query please contact Sarah at addicted2tv.com. I'll respond to all mails when I return. Best wishes Ty-John Roberts Addicted2tv.com From ty at addicted2tv.com Fri Sep 3 13:21:27 2010 From: ty at addicted2tv.com (ty at addicted2tv.com) Date: 3 Sep 2010 21:21:27 +0100 Subject: [Papervision3D] Ty is on Holiday Message-ID: <20100903202127.19666.qmail@addicted2tv.com> I am away on holiday from Monday 30th August until Monday 6th September. If you have an urgent query please contact Sarah at addicted2tv.com. I'll respond to all mails when I return. Best wishes Ty-John Roberts Addicted2tv.com From waneck at gmail.com Fri Sep 3 13:35:00 2010 From: waneck at gmail.com (=?ISO-8859-1?Q?Cau=EA_Waneck?=) Date: Fri, 3 Sep 2010 17:35:00 -0300 Subject: [Papervision3D] Ty is on Holiday In-Reply-To: <20100903202117.19568.qmail@addicted2tv.com> References: <20100903202117.19568.qmail@addicted2tv.com> Message-ID: oh no, he's responding to his own mails! 2010/9/3 > I am away on holiday from Monday 30th August until Monday 6th September. > > If you have an urgent query please contact Sarah at addicted2tv.com. > > I'll respond to all mails when I return. > > Best wishes > > Ty-John Roberts > > Addicted2tv.com > > > > > > _______________________________________________ > Papervision3D mailing list > Papervision3D at osflash.org > http://osflash.org/mailman/listinfo/papervision3d_osflash.org > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ross.sclafani at gmail.com Fri Sep 3 12:48:17 2010 From: ross.sclafani at gmail.com (Ross Sclafani) Date: Fri, 3 Sep 2010 15:48:17 -0400 Subject: [Papervision3D] Ty is on Holiday In-Reply-To: <20100903190106.20080.qmail@addicted2tv.com> References: <20100903190106.20080.qmail@addicted2tv.com> Message-ID: Does anyone know if Ty is away on Holiday? And when he comes back? If not, do you know who can contact? It's urgent. Ross P. Sclafani design / technology / creative http://ross.sclafani.net http://www.twitter.com/rosssclafani (347) 204.5714 let go of even your longest held beliefs, the only truth is in observation. On Sep 3, 2010, at 3:01 PM, ty at addicted2tv.com wrote: > I am away on holiday from Monday 30th August until Monday 6th September. > > If you have an urgent query please contact Sarah at addicted2tv.com. > > I'll respond to all mails when I return. > > Best wishes > > Ty-John Roberts > > Addicted2tv.com > > > > > > _______________________________________________ > Papervision3D mailing list > Papervision3D at osflash.org > http://osflash.org/mailman/listinfo/papervision3d_osflash.org -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ross_thumb.jpg Type: image/jpeg Size: 7221 bytes Desc: not available URL: From ty at addicted2tv.com Fri Sep 3 13:54:45 2010 From: ty at addicted2tv.com (ty at addicted2tv.com) Date: 3 Sep 2010 21:54:45 +0100 Subject: [Papervision3D] Ty is on Holiday Message-ID: <20100903205445.20002.qmail@addicted2tv.com> I am away on holiday from Monday 30th August until Monday 6th September. If you have an urgent query please contact Sarah at addicted2tv.com. I'll respond to all mails when I return. Best wishes Ty-John Roberts Addicted2tv.com From jason.merrill at bankofamerica.com Fri Sep 3 15:28:31 2010 From: jason.merrill at bankofamerica.com (Merrill, Jason) Date: Fri, 03 Sep 2010 18:28:31 -0400 Subject: [Papervision3D] Ty is on Holiday In-Reply-To: <20100903205445.20002.qmail@addicted2tv.com> References: <20100903205445.20002.qmail@addicted2tv.com> Message-ID: <32167F32E523A44BB866B6C251C3A1C703B11129@ex2k.bankofamerica.com> Is there a list moderator who can remove this guy from the list until he gets back? Pretty obvious Sarah doesn't care. Jason Merrill Instructional Technology Architect Bank of America Global Learning Join the Bank of America Flash Platform Community and visit our Instructional Technology Design Blog (Note: these resources are only available for Bank of America associates) -----Original Message----- From: papervision3d-bounces at osflash.org [mailto:papervision3d-bounces at osflash.org] On Behalf Of ty at addicted2tv.com Sent: Friday, September 03, 2010 4:55 PM To: papervision3d at osflash.org Subject: [Papervision3D] Ty is on Holiday I am away on holiday from Monday 30th August until Monday 6th September. If you have an urgent query please contact Sarah at addicted2tv.com. I'll respond to all mails when I return. Best wishes Ty-John Roberts Addicted2tv.com _______________________________________________ Papervision3D mailing list Papervision3D at osflash.org http://osflash.org/mailman/listinfo/papervision3d_osflash.org From naz at object404.com Sat Sep 4 06:40:49 2010 From: naz at object404.com (Carlos Nazareno) Date: Sat, 04 Sep 2010 21:40:49 +0800 Subject: [Papervision3D] Ty is on Holiday In-Reply-To: References: Message-ID: <4C824C61.5090308@object404.com> > oh no, he's responding to his own mails! Holy crap! This is even worse than the time I saw 2 guys on a mailing list, both with autoresponders, then the 2 autoresponders started responding to each other! *facepalm* -Naz -- http://www.object404.com http://twitter.com/object404 -- Core Team Member Phlashers: Philippine Flash Actionscripters http://www.phlashers.com -- "if you don't like the way the world is running, then change it instead of just complaining." From cpramuk at gmail.com Sat Sep 4 08:47:12 2010 From: cpramuk at gmail.com (Christian Pramuk) Date: Sat, 4 Sep 2010 08:47:12 -0700 Subject: [Papervision3D] Ty is on Holiday In-Reply-To: <20100903205445.20002.qmail@addicted2tv.com> References: <20100903205445.20002.qmail@addicted2tv.com> Message-ID: addicted2tysemails On Fri, Sep 3, 2010 at 1:54 PM, wrote: > I am away on holiday from Monday 30th August until Monday 6th September. > > If you have an urgent query please contact Sarah at addicted2tv.com. > > I'll respond to all mails when I return. > > Best wishes > > Ty-John Roberts > > Addicted2tv.com > > > > > > _______________________________________________ > Papervision3D mailing list > Papervision3D at osflash.org > http://osflash.org/mailman/listinfo/papervision3d_osflash.org > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ty at addicted2tv.com Sat Sep 4 12:00:56 2010 From: ty at addicted2tv.com (ty at addicted2tv.com) Date: 4 Sep 2010 20:00:56 +0100 Subject: [Papervision3D] Ty is on Holiday Message-ID: <20100904190056.22337.qmail@addicted2tv.com> I am away on holiday from Monday 30th August until Monday 6th September. If you have an urgent query please contact Sarah at addicted2tv.com. I'll respond to all mails when I return. Best wishes Ty-John Roberts Addicted2tv.com From ty at addicted2tv.com Sun Sep 5 06:39:38 2010 From: ty at addicted2tv.com (Ty-John Roberts) Date: Sun, 5 Sep 2010 14:39:38 +0100 Subject: [Papervision3D] Papervision3D Digest, Vol 47, Issue 14 In-Reply-To: References: Message-ID: <02FE41FB-44D1-486B-82B3-AFD73234264D@addicted2tv.com> Dear PV3D List Apologies for the infraction, Sarah has given me the 'back hand' as requested (thank you John). Server admin responsible for the auto responder is now sleeping with horses head at night. Ty On 31 Aug 2010, at 20:07, papervision3d-request at osflash.org wrote: > Send Papervision3D mailing list submissions to > papervision3d at osflash.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://osflash.org/mailman/listinfo/papervision3d_osflash.org > or, via email, send a message with subject or body 'help' to > papervision3d-request at osflash.org > > You can reach the person managing the list at > papervision3d-owner at osflash.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Papervision3D digest..." > > > Today's Topics: > > 1. Ty is on Holiday (ty at addicted2tv.com) > 2. Re: Ty is on Holiday (John Grden) > 3. Re: Ty is on Holiday (Ross Sclafani) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: 31 Aug 2010 20:01:07 +0100 > From: ty at addicted2tv.com > Subject: [Papervision3D] Ty is on Holiday > To: papervision3d at osflash.org > Message-ID: <20100831190107.5215.qmail at addicted2tv.com> > Content-Type: text/plain; charset="UTF-8" > > I am away on holiday from Monday 30th August until Monday 6th > September. > > If you have an urgent query please contact Sarah at addicted2tv.com. > > I'll respond to all mails when I return. > > Best wishes > > Ty-John Roberts > > Addicted2tv.com > > > > > > > > ------------------------------ > > Message: 2 > Date: Tue, 31 Aug 2010 14:02:53 -0500 > From: John Grden > Subject: Re: [Papervision3D] Ty is on Holiday > To: papervision3d at osflash.org > Message-ID: > > Content-Type: text/plain; charset="iso-8859-1" > > Maybe all of us should write to Sarah.... then she can back hand him > when he > comes back from vacation ;) > > On Tue, Aug 31, 2010 at 2:01 PM, wrote: > >> I am away on holiday from Monday 30th August until Monday 6th >> September. >> >> If you have an urgent query please contact Sarah at addicted2tv.com. >> >> I'll respond to all mails when I return. >> >> Best wishes >> >> Ty-John Roberts >> >> Addicted2tv.com >> >> >> >> >> >> _______________________________________________ >> Papervision3D mailing list >> Papervision3D at osflash.org >> http://osflash.org/mailman/listinfo/papervision3d_osflash.org >> > > > > -- > [ JPG ] > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > > > ------------------------------ > > Message: 3 > Date: Tue, 31 Aug 2010 15:06:50 -0400 > From: Ross Sclafani > Subject: Re: [Papervision3D] Ty is on Holiday > To: papervision3d at osflash.org > Message-ID: <3C22F616-62EC-4535-8167-6265353C76CE at gmail.com> > Content-Type: text/plain; charset="us-ascii" > > I'm in. [FWD] > Ross P. Sclafani > design / technology / creative > > http://ross.sclafani.net > http://www.twitter.com/rosssclafani > (347) 204.5714 > > > > let go of even your longest held beliefs, > the only truth is in observation. > > On Aug 31, 2010, at 3:02 PM, John Grden wrote: > >> Maybe all of us should write to Sarah.... then she can back hand >> him when he comes back from vacation ;) >> >> On Tue, Aug 31, 2010 at 2:01 PM, wrote: >> I am away on holiday from Monday 30th August until Monday 6th >> September. >> >> If you have an urgent query please contact Sarah at addicted2tv.com. >> >> I'll respond to all mails when I return. >> >> Best wishes >> >> Ty-John Roberts >> >> Addicted2tv.com >> >> >> >> >> >> _______________________________________________ >> Papervision3D mailing list >> Papervision3D at osflash.org >> http://osflash.org/mailman/listinfo/papervision3d_osflash.org >> >> >> >> -- >> [ JPG ] >> _______________________________________________ >> Papervision3D mailing list >> Papervision3D at osflash.org >> http://osflash.org/mailman/listinfo/papervision3d_osflash.org > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: ross_thumb.jpg > Type: image/jpeg > Size: 7221 bytes > Desc: not available > URL: > > > ------------------------------ > > _______________________________________________ > Papervision3D mailing list > Papervision3D at osflash.org > http://osflash.org/mailman/listinfo/papervision3d_osflash.org > > > End of Papervision3D Digest, Vol 47, Issue 14 > ********************************************* From emilkorngold at hotmail.com Mon Sep 6 00:35:51 2010 From: emilkorngold at hotmail.com (Emil Korngold) Date: Mon, 6 Sep 2010 09:35:51 +0200 Subject: [Papervision3D] Ty is on Holiday In-Reply-To: References: Message-ID: Obviously off-topic, but I couldn't help but think of this video when I saw him reply to himself. http://www.youtube.com/watch?v=et_MmlTxMXA&feature=player_embedded Cheers, Emil -------------- next part -------------- An HTML attachment was scrubbed... URL: From makc.the.great at gmail.com Mon Sep 6 18:49:57 2010 From: makc.the.great at gmail.com (Makc) Date: Tue, 7 Sep 2010 04:49:57 +0300 Subject: [Papervision3D] Ty is on Holiday In-Reply-To: References: <20100903190106.20080.qmail@addicted2tv.com> Message-ID: "like it's funny twice", eh? ref. to http://www.newgrounds.com/portal/view/188559 ending -------------- next part -------------- An HTML attachment was scrubbed... URL: From gcreighton at discmakers.com Tue Sep 7 13:34:04 2010 From: gcreighton at discmakers.com (Creighton, Gerry) Date: Tue, 7 Sep 2010 16:34:04 -0400 Subject: [Papervision3D] Sketchup 8 dae's Message-ID: Anybody else having issues when changing materials with DAE files lately? I exported several from Sketchup 7 Pro and those DAE?s and my DAE parsing code work great, however, that trial has since expired so I can no longer export kmz or dae files that work with PV3D DAE parsing. I sought older Mac Sketchup versions but no luck. I now have two 3D files that I need to export and their materials aren?t being replaced like my previous sample. I can trace out the materials in the dae and have looked through the dae structure to get the material id?s but can not replace those materials now. Here is my function so you can see what I?m doing, nothing special but it works with DAE?s exported from Sketchup 7 Pro but not any other versions. Any insight would be appreciated. -Gerry The following function is called each time a DAE file is loaded. I have an array of two DAE path strings to pull from. var count:Number = 0; private function setDAE(e:FileLoadEvent):void{ // var daeModel:DisplayObject3D = e.target as DisplayObject3D; var backDAE:DisplayObject3D = new DisplayObject3D(); var frontDAE:DisplayObject3D = new DisplayObject3D(); // color materials in 3D object var whtMat:ColorMaterial = new ColorMaterial(0xEDEDED,.5); var blkMat:ColorMaterial = new ColorMaterial(0x000000,1); var redMat:ColorMaterial = new ColorMaterial(0x990000,.6);//color mat to use for testing to show dae layers trace("/////////////////////////// count: ?+count+? | dae materials: \n"+daeModel.materials+"\n/////////////////////////// count:\n"+count); if(count == 0){ /* Lid */ daeModel.replaceMaterialByName(whtMat,"ID5"); FrontDO = new DisplayObject3D(); FrontDO.addChild(daeModel); count = count+1; loadDAEFiles(count); // }else if(count == 1){ /* Tray */ if(packageType == "PKG120-00004"){ //black tray daeModel.replaceMaterialByName(blkMat,"ID5"); }else{ //clear tray - should show traycard art on both sides daeModel.replaceMaterialByName(redMat,"ID5"); } BackDO = new DisplayObject3D(); BackDO.addChild(daeModel); //There is a call here to another method that does some other things to load other assets then adds the FrontDO and BackDO to the stage. } } -------------- next part -------------- An HTML attachment was scrubbed... URL: From bh at pano-life.de Thu Sep 9 03:41:21 2010 From: bh at pano-life.de (Benjamin Haller) Date: Thu, 09 Sep 2010 12:41:21 +0200 Subject: [Papervision3D] Frustrum Clipping frustrating me Message-ID: <4C88B9D1.4020700@pano-life.de> I have a plane 256 by 256 pixels with a bitmapMaterial on z=127 right in front of my camera xyz=0. Now I rotate the camera onRenderTick rotationY+=value. I then get the weirdest clipping errors playing with zoom, focus, useCulling, useClipping, autoClipping, autoCulling, segements of the plane for hours... nothing. I do a little research and find this: http://blog.zupko.info/?p=170 Sounds great. I try it out and it clips nicely BUT what seems to happen is this: clip the plane -> rotate the camera -> render The result ist that I can see the clipped border. When I stop the camera rotation I can watch the clipping catching up until my plane fills the viewport nicely again. As in the blogpost by andy it works nicely I tried out his script as a flexproject, as an actionscript project and in flash itself, same problem as I have... doesn?t work any more. Anybody knows how to fix this? In the blog post some guy seemed to have the same problem: "Joe I think there is a bug with the edges -- seems be ok until you rotate the camera. Here's and example... http://testing.usecake.com/game2.html It seems like, when the camera rotates, the scene is clipped before the planes are updated. Joe Wheeler Ok I found a fix but I think it will probably need to be optimised. I've basically stuck this: renderSessionData.camera.updateTransform(); On line 145 --- just before this line: _matrix.copy( renderSessionData.camera.transform );" Class Name would have been nice. Help is much appreciated and thanks in advance. -Benjamin -------------- next part -------------- An HTML attachment was scrubbed... URL: From gcreighton at discmakers.com Mon Sep 13 09:45:29 2010 From: gcreighton at discmakers.com (Creighton, Gerry) Date: Mon, 13 Sep 2010 12:45:29 -0400 Subject: [Papervision3D] Sketchup 8 dae's - SOLUTION In-Reply-To: Message-ID: I figured out last week a way to get my materials colored the way that I wanted/needed. For my loading function I set all materials to one color: redMat = new ColorMaterial(0x990000,.6); model.load(str,new MaterialsList({all:redMat}); Then after each DAE is loaded I can change the color of the material to what I need: var whtMat:ColorMaterial = new ColorMaterial(0xEDEDED,.4); var daeModel:DisplayObject3D = e.target as DisplayObject3D; daeModel.replaceMaterialByName(whtMat,"all"); Just thought I?d pass along my solution to the problem I was having. -Gerry On 9/7/10 4:34 PM, "Creighton, Gerry" wrote: Anybody else having issues when changing materials with DAE files lately? I exported several from Sketchup 7 Pro and those DAE?s and my DAE parsing code work great, however, that trial has since expired so I can no longer export kmz or dae files that work with PV3D DAE parsing. I sought older Mac Sketchup versions but no luck. I now have two 3D files that I need to export and their materials aren?t being replaced like my previous sample. I can trace out the materials in the dae and have looked through the dae structure to get the material id?s but can not replace those materials now. Here is my function so you can see what I?m doing, nothing special but it works with DAE?s exported from Sketchup 7 Pro but not any other versions. Any insight would be appreciated. -Gerry The following function is called each time a DAE file is loaded. I have an array of two DAE path strings to pull from. var count:Number = 0; private function setDAE(e:FileLoadEvent):void{ // var daeModel:DisplayObject3D = e.target as DisplayObject3D; var backDAE:DisplayObject3D = new DisplayObject3D(); var frontDAE:DisplayObject3D = new DisplayObject3D(); // color materials in 3D object var whtMat:ColorMaterial = new ColorMaterial(0xEDEDED,.5); var blkMat:ColorMaterial = new ColorMaterial(0x000000,1); var redMat:ColorMaterial = new ColorMaterial(0x990000,.6);//color mat to use for testing to show dae layers trace("/////////////////////////// count: ?+count+? | dae materials: \n"+daeModel.materials+"\n/////////////////////////// count:\n"+count); if(count == 0){ /* Lid */ daeModel.replaceMaterialByName(whtMat,"ID5"); FrontDO = new DisplayObject3D(); FrontDO.addChild(daeModel); count = count+1; loadDAEFiles(count); // }else if(count == 1){ /* Tray */ if(packageType == "PKG120-00004"){ //black tray daeModel.replaceMaterialByName(blkMat,"ID5"); }else{ //clear tray - should show traycard art on both sides daeModel.replaceMaterialByName(redMat,"ID5"); } BackDO = new DisplayObject3D(); BackDO.addChild(daeModel); //There is a call here to another method that does some other things to load other assets then adds the FrontDO and BackDO to the stage. } } -------------- next part -------------- An HTML attachment was scrubbed... URL: From more.shailendra at gmail.com Wed Sep 15 00:17:46 2010 From: more.shailendra at gmail.com (shailendra more) Date: Wed, 15 Sep 2010 12:47:46 +0530 Subject: [Papervision3D] Rubik Cube with auto solve Message-ID: Hi all, check this link http://setvelocity.blogspot.com/2010/03/first-ever-papervision3d-experiment.html i have done Rubic Cube using Papervision3D. You can drag each row coloum of cube and also rotate whole cube by dragging outside of cube. there is also button for solve this cube. when u click on the button it actually solve this cube. if you have suggestion. plz mail me Thanx Shailendra -------------- next part -------------- An HTML attachment was scrubbed... URL: From info at maxpellizzaro.com Wed Sep 15 00:23:35 2010 From: info at maxpellizzaro.com (info at maxpellizzaro.com) Date: Wed, 15 Sep 2010 09:23:35 +0200 Subject: [Papervision3D] Rubik Cube with auto solve In-Reply-To: References: Message-ID: So cool !!!! From: papervision3d-bounces at osflash.org To: papervision3d at osflash.org Cc: Date: Wed, 15 Sep 2010 12:47:46 +0530 Subject: [Papervision3D] Rubik Cube with auto solve > Hi all, > check this link http://setvelocity.blogspot.com/2010/03/first-ever-papervision3d-experiment.html > i have done Rubic Cube using Papervision3D. You can drag each row coloum of cube and also rotate whole cube by dragging outside of cube. > there is also button for solve this cube. when u click on the button it actually solve this cube. > if you have suggestion. plz mail me > ? > Thanx > Shailendra > ? -------------- next part -------------- An HTML attachment was scrubbed... URL: From info at maxpellizzaro.com Wed Sep 15 00:23:35 2010 From: info at maxpellizzaro.com (info at maxpellizzaro.com) Date: Wed, 15 Sep 2010 09:23:35 +0200 Subject: [Papervision3D] Rubik Cube with auto solve In-Reply-To: References: Message-ID: So cool !!!! From: papervision3d-bounces at osflash.org To: papervision3d at osflash.org Cc: Date: Wed, 15 Sep 2010 12:47:46 +0530 Subject: [Papervision3D] Rubik Cube with auto solve > Hi all, > check this link http://setvelocity.blogspot.com/2010/03/first-ever-papervision3d-experiment.html > i have done Rubic Cube using Papervision3D. You can drag each row coloum of cube and also rotate whole cube by dragging outside of cube. > there is also button for solve this cube. when u click on the button it actually solve this cube. > if you have suggestion. plz mail me > ? > Thanx > Shailendra > ? -------------- next part -------------- An HTML attachment was scrubbed... URL: From admiral at nuclearpixel.com Wed Sep 15 00:29:44 2010 From: admiral at nuclearpixel.com (Admiral Potato) Date: Wed, 15 Sep 2010 01:29:44 -0600 Subject: [Papervision3D] Rubik Cube with auto solve In-Reply-To: References: Message-ID: Seriously, you've done a nice job on this one. It looks truly polished. I especially like the way the cube rotates when you drag outside of it. I like the momentum you've got going on for it. On Sep 15, 2010, at 1:23 AM, info at maxpellizzaro.com wrote: > So cool !!!! > > From: papervision3d-bounces at osflash.org > To: papervision3d at osflash.org > Cc: > Date: Wed, 15 Sep 2010 12:47:46 +0530 > Subject: [Papervision3D] Rubik Cube with auto solve > > > Hi all, > > check this link http://setvelocity.blogspot.com/2010/03/first-ever-papervision3d-experiment.html > > i have done Rubic Cube using Papervision3D. You can drag each row coloum of cube and also rotate whole cube by dragging outside of cube. > > there is also button for solve this cube. when u click on the button it actually solve this cube. > > if you have suggestion. plz mail me > > > > Thanx > > Shailendra > > > _______________________________________________ > Papervision3D mailing list > Papervision3D at osflash.org > http://osflash.org/mailman/listinfo/papervision3d_osflash.org -------------- next part -------------- An HTML attachment was scrubbed... URL: From markincuba at hotmail.com Wed Sep 15 05:16:40 2010 From: markincuba at hotmail.com (Mark Ireland) Date: Wed, 15 Sep 2010 22:16:40 +1000 Subject: [Papervision3D] Rubik Cube with auto solve In-Reply-To: References: Message-ID: This is such good work. I just watched it solve itself. I wish you would opensource this because I would love to see the code. I would add images and links to the squares and use it as a novel navigation menu. Date: Wed, 15 Sep 2010 12:47:46 +0530 From: more.shailendra at gmail.com To: papervision3d at osflash.org Subject: [Papervision3D] Rubik Cube with auto solve Hi all, check this link http://setvelocity.blogspot.com/2010/03/first-ever-papervision3d-experiment.html i have done Rubic Cube using Papervision3D. You can drag each row coloum of cube and also rotate whole cube by dragging outside of cube. there is also button for solve this cube. when u click on the button it actually solve this cube. if you have suggestion. plz mail me Thanx Shailendra _______________________________________________ Papervision3D mailing list Papervision3D at osflash.org http://osflash.org/mailman/listinfo/papervision3d_osflash.org -------------- next part -------------- An HTML attachment was scrubbed... URL: From whuffa_killa at yahoo.com Sun Sep 19 12:57:42 2010 From: whuffa_killa at yahoo.com (Bruce b) Date: Sun, 19 Sep 2010 12:57:42 -0700 (PDT) Subject: [Papervision3D] pierre branitz Message-ID: <209124.1449.qm@web51405.mail.re2.yahoo.com> Do you know about online shop with good meds? I?ll tell you http://seewebtv.net/net.php From altomare.francis at gmail.com Fri Sep 24 13:19:30 2010 From: altomare.francis at gmail.com (Francis Altomare) Date: Fri, 24 Sep 2010 16:19:30 -0400 Subject: [Papervision3D] Papervision Cube, change faces on roll over and out Message-ID: Hello, Sorry if this is considered spam, I'm new to the mailing list and Papervision3D. I'm currently working on creating rollover effects on each face of a cube done in papervision, I'm trying to lower the opacity of the face and add a border when the user rolls over it. I am attaching a roll over to each cube face boxFace.addEventListener(MouseEvent.MOUSE_OVER, onMatOver); boxFace.alpha = .9; var movieMat:MovieMaterial = new MovieMaterial(boxFace, true, true); movieMat.interactive = true; Inside of my onMatOver function I change the face of the rolled over cube. This will eventually be in a switch statement but for now I'm just trying it with the "back" face protected function onMatOver(e:MouseEvent):void{ var boxFace:Sprite = new Sprite(); boxFace.graphics.lineStyle(1); boxFace.graphics.beginFill(0x76b6f8); boxFace.graphics.drawRect(0, 0, 100, 100); boxFace.alpha = .5 boxFace.graphics.endFill(); boxFace.name = "back" colorBox.addEventListener(MouseEvent.MOUSE_OUT, onMatOut); var movieMat:MovieMaterial = new MovieMaterial(boxFace, true, true); movieMat.interactive = true; movieMat.smooth = true; movieMat.doubleSided = true; cube.replaceMaterialByName(movieMat, "back"); This seems to be working My problem is with the MOUSE OUT event, that function is the same as onMatOver except it is redrawing the sprite without the lineStyle and with a higher opacity. The problem is this does not seem to be working. The MOUSE_OUT event is called but the material is not changed. -- -------------- next part -------------- An HTML attachment was scrubbed... URL: From altomare.francis at gmail.com Fri Sep 24 13:19:30 2010 From: altomare.francis at gmail.com (Francis Altomare) Date: Fri, 24 Sep 2010 16:19:30 -0400 Subject: [Papervision3D] Papervision Cube, change faces on roll over and out Message-ID: Hello, Sorry if this is considered spam, I'm new to the mailing list and Papervision3D. I'm currently working on creating rollover effects on each face of a cube done in papervision, I'm trying to lower the opacity of the face and add a border when the user rolls over it. I am attaching a roll over to each cube face boxFace.addEventListener(MouseEvent.MOUSE_OVER, onMatOver); boxFace.alpha = .9; var movieMat:MovieMaterial = new MovieMaterial(boxFace, true, true); movieMat.interactive = true; Inside of my onMatOver function I change the face of the rolled over cube. This will eventually be in a switch statement but for now I'm just trying it with the "back" face protected function onMatOver(e:MouseEvent):void{ var boxFace:Sprite = new Sprite(); boxFace.graphics.lineStyle(1); boxFace.graphics.beginFill(0x76b6f8); boxFace.graphics.drawRect(0, 0, 100, 100); boxFace.alpha = .5 boxFace.graphics.endFill(); boxFace.name = "back" colorBox.addEventListener(MouseEvent.MOUSE_OUT, onMatOut); var movieMat:MovieMaterial = new MovieMaterial(boxFace, true, true); movieMat.interactive = true; movieMat.smooth = true; movieMat.doubleSided = true; cube.replaceMaterialByName(movieMat, "back"); This seems to be working My problem is with the MOUSE OUT event, that function is the same as onMatOver except it is redrawing the sprite without the lineStyle and with a higher opacity. The problem is this does not seem to be working. The MOUSE_OUT event is called but the material is not changed. -- -------------- next part -------------- An HTML attachment was scrubbed... URL: From cduneau at tenso.fr Tue Sep 28 04:02:16 2010 From: cduneau at tenso.fr (Cyrill Duneau) Date: Tue, 28 Sep 2010 13:02:16 +0200 Subject: [Papervision3D] Mobius strips and Klein bottles Message-ID: <4CA1CB38.8010307@tenso.fr> Hi pv3d'ers Does anyone know of experiments made in pv3d to create Mobius strips and/or Klein bottles? Thanx in advance, Cyrill From makc.the.great at gmail.com Tue Sep 28 04:40:56 2010 From: makc.the.great at gmail.com (Makc) Date: Tue, 28 Sep 2010 14:40:56 +0300 Subject: [Papervision3D] Mobius strips and Klein bottles In-Reply-To: <4CA1CB38.8010307@tenso.fr> References: <4CA1CB38.8010307@tenso.fr> Message-ID: On Tue, Sep 28, 2010 at 2:02 PM, Cyrill Duneau wrote: > ?Hi pv3d'ers > Does anyone know of experiments made in pv3d to create Mobius strips and/or > Klein bottles? I assume the problem is with disappearing faces, well that's quite easy to solve by doubling all the faces and flipping normals. Personally, I would just make a model in blender or something. From karim at kurst.co.uk Tue Sep 28 07:44:16 2010 From: karim at kurst.co.uk (Karim Beyrouti) Date: Tue, 28 Sep 2010 15:44:16 +0100 Subject: [Papervision3D] Plane - Different Material on each side.. Message-ID: <42E8719F-486E-4DEE-A040-92A23E5AAC11@kurst.co.uk> Hello All, wondering if there is a quick / simple way of having a different material on each side of a plane? Regards Karim Beyrouti From gcreighton at discmakers.com Tue Sep 28 07:59:58 2010 From: gcreighton at discmakers.com (Creighton, Gerry) Date: Tue, 28 Sep 2010 10:59:58 -0400 Subject: [Papervision3D] [SPAM?] Plane - Different Material on each side.. In-Reply-To: <42E8719F-486E-4DEE-A040-92A23E5AAC11@kurst.co.uk> Message-ID: Not really... Just make a plane group then add two planes to it, rotate the one around and give that the different material. I posted a sample a while back that shows this, I need to repost a new cleaner version as I've been working in Papervision for the past 6+months. This will give you the idea anyway... http://blog.thespikeranch.com/panel-flip-in-papervision3d/ -Gerry On 9/28/10 10:44 AM, "Karim Beyrouti" wrote: > Hello All, > > wondering if there is a quick / simple way of having a different material on > each side of a plane? > > > Regards > > > > Karim Beyrouti > _______________________________________________ > Papervision3D mailing list > Papervision3D at osflash.org > http://osflash.org/mailman/listinfo/papervision3d_osflash.org From gcreighton at discmakers.com Tue Sep 28 08:26:42 2010 From: gcreighton at discmakers.com (Creighton, Gerry) Date: Tue, 28 Sep 2010 11:26:42 -0400 Subject: [Papervision3D] [SPAM?] Plane - Different Material on each side.. In-Reply-To: <42E8719F-486E-4DEE-A040-92A23E5AAC11@kurst.co.uk> Message-ID: Sorry for the multiple replies but I updated my blog with this post. http://blog.thespikeranch.com/basic-panel-flip/ Hope that helps you out. -Gerry On 9/28/10 10:44 AM, "Karim Beyrouti" wrote: > Hello All, > > wondering if there is a quick / simple way of having a different material on > each side of a plane? > > > Regards > > > > Karim Beyrouti > _______________________________________________ > Papervision3D mailing list > Papervision3D at osflash.org > http://osflash.org/mailman/listinfo/papervision3d_osflash.org From jbpv3d at googlemail.com Tue Sep 28 08:52:39 2010 From: jbpv3d at googlemail.com (John Brookes) Date: Tue, 28 Sep 2010 16:52:39 +0100 Subject: [Papervision3D] [SPAM?] Plane - Different Material on each side.. In-Reply-To: References: <42E8719F-486E-4DEE-A040-92A23E5AAC11@kurst.co.uk> Message-ID: http://papervision3d.758870.n4.nabble.com/How-to-get-DoubleSidedCompositeMaterial-working-w-Latest-PV3D-td781516.html#a781518 -------------- next part -------------- An HTML attachment was scrubbed... URL: From karim at kurst.co.uk Tue Sep 28 09:22:44 2010 From: karim at kurst.co.uk (Karim Beyrouti) Date: Tue, 28 Sep 2010 17:22:44 +0100 Subject: [Papervision3D] [SPAM?] Plane - Different Material on each side.. In-Reply-To: References: <42E8719F-486E-4DEE-A040-92A23E5AAC11@kurst.co.uk> Message-ID: <8297B6CA-844F-454F-841A-E6965945FD2D@kurst.co.uk> Perfect - Thank you !... Karim On 28 Sep 2010, at 16:52, John Brookes wrote: > http://papervision3d.758870.n4.nabble.com/How-to-get-DoubleSidedCompositeMaterial-working-w-Latest-PV3D-td781516.html#a781518 > _______________________________________________ > Papervision3D mailing list > Papervision3D at osflash.org > http://osflash.org/mailman/listinfo/papervision3d_osflash.org -------------- next part -------------- An HTML attachment was scrubbed... URL: From altomare.francis at gmail.com Tue Sep 28 09:54:05 2010 From: altomare.francis at gmail.com (Francis Altomare) Date: Tue, 28 Sep 2010 12:54:05 -0400 Subject: [Papervision3D] Creating a plane from the faces of a cube Message-ID: Hello, My end goal here is to create a set of 6 planes that will hover above each face of a cube. Each face should have the same width/height and transform as the cube but will be placed higher then its respective face. Currently I'm trying to create a plane and have it take the transform matrix of the cube thats already on screen. The code looks like this: var dp:DisplayObject3D = new DisplayObject3D(); var testPlane:Plane = new Plane(movieMat,100,100) var currentRotationMatrix:org.papervision3d.core.math.Matrix3D = new org.papervision3d.core.math.Matrix3D(); dp.addChild(testPlane); scene.addChild(dp); currentRotationMatrix = cubeHolder.transform; trace(currentRotationMatrix); dp.transform = currentRotationMatrix trace(dp.transform); Cube holder is a DisplayObject3D that hols the cube and has the transofmration applied to it I'm tracing out the rotation matrix before and after I apply the cube's transform and both values are the same The issue is when I set dp.transform = currentRotationMatrix the cube rotates to what looks like front view, I think maybe the viewport is changing? Does anyone have another way for creating a plane that will have the same size and transform as a face on a cube? -thanks, -- Francis Altomare, -------------- next part -------------- An HTML attachment was scrubbed... URL: From pajhonka at yahoo.com Tue Sep 28 14:07:25 2010 From: pajhonka at yahoo.com (Kevin Burke) Date: Tue, 28 Sep 2010 14:07:25 -0700 (PDT) Subject: [Papervision3D] The unbeatable Security sandbox dilemma - Policy file not working! Message-ID: <1285708045254-2717943.post@n4.nabble.com> Hi, I have a Papervision plane that uses a user's Facebook profile picture as a MovieClip in a MovieMaterial. When I test this .swf from my local machine, it works, but when I upload it to my web host, I get an error. SITE: http://www.kevinburkeportfolio.com/Facebook/facebook_test.html ERROR MESSAGE: SecurityError: Error #2122: Security sandbox violation: BitmapData.draw: http://www.kevinburkeportfolio.com/Facebook/facebook_test.swf/[[DYNAMIC]]/3 cannot access http://profile.ak.fbcdn.net/hprofile-ak-snc4/hs347.snc4/41502_689060327_4407_n.jpg. A policy file is required, but the checkPolicyFile flag was not set when this media was loaded. at flash.display::BitmapData/draw() at Main/checkLoad() I have read about this sandbox/checkPolicyFile problem in many posts, so I included this crossdomain file in the root folder of my server. http://www.kevinburkeportfolio.com/crossdomain.xml AND here: http://www.kevinburkeportfolio.com/Facebook/crossdomain.xml I also added the following code to my Facebook MovieClip's AS class' constructor function: Security.allowDomain("*"); Security.loadPolicyFile("http://www.kevinburkeportfolio.com/crossdomain.xml"); loaderContext = new LoaderContext(true); loaderContext.checkPolicyFile = true; And this code after the MovieClip connects to the Facebook user's profile: loader = new Loader(); loader.contentLoaderInfo.addEventListener(Event.COMPLETE, init); loader.load(url,loaderContext); I also added this code to my document class's properties: public var checkPolicyFile:Boolean; AND this to the constructor: checkPolicyFile = true; Security.loadPolicyFile("http://www.kevinburkeportfolio.com/crossdomain.xml"); The plane is NOT built until the image is done loading and I even drew in a white box to the MovieClip so there would be something in it before the plane requested its instance. I'm out of ideas. Can anyone please help???!?!?!?!?!?!?!!?!??!?!?!?!?!?!?!?!?!? -- View this message in context: http://papervision3d.758870.n4.nabble.com/The-unbeatable-Security-sandbox-dilemma-Policy-file-not-working-tp2717943p2717943.html Sent from the Papervision3D mailing list archive at Nabble.com. From zeh at zehfernando.com Tue Sep 28 14:18:43 2010 From: zeh at zehfernando.com (Zeh Fernando) Date: Tue, 28 Sep 2010 17:18:43 -0400 Subject: [Papervision3D] The unbeatable Security sandbox dilemma - Policy file not working! In-Reply-To: <1285708045254-2717943.post@n4.nabble.com> References: <1285708045254-2717943.post@n4.nabble.com> Message-ID: Crossdomain needs to be on the target domain (profile.ak.fbcdn.net), not on the source (kevinburkeportfolio.com). Usually just having checkPolicyFile set to true is enough. However, in this case, knowing Facebook, it's probably because the actual image loading is redirecting you to a different domain (via 302 redirect), and redirect loads don't take checkPolicyFile into consideration (it's always set to false). The solution is loading the crossdomain file yourself beforehand. TL;DR: Just do... Security.loadPolicyFile("http://profile.ak.fbcdn.net/crossdomain.xml"); ...somewhere on your application's initialization. You can get rid of the other loadPolicyFile methods and crossdomain.xml files. Zeh On Tue, Sep 28, 2010 at 5:07 PM, Kevin Burke wrote: > > Hi, > I have a Papervision plane that uses a user's Facebook profile picture as a > MovieClip in a MovieMaterial. > > When I test this .swf from my local machine, it works, but when I upload it > to my web host, I get an error. > > SITE: > http://www.kevinburkeportfolio.com/Facebook/facebook_test.html > > ERROR MESSAGE: > SecurityError: Error #2122: Security sandbox violation: BitmapData.draw: > http://www.kevinburkeportfolio.com/Facebook/facebook_test.swf/[[DYNAMIC]]/3 > cannot access > > http://profile.ak.fbcdn.net/hprofile-ak-snc4/hs347.snc4/41502_689060327_4407_n.jpg > . > A policy file is required, but the checkPolicyFile flag was not set when > this media was loaded. > at flash.display::BitmapData/draw() > at Main/checkLoad() > > I have read about this sandbox/checkPolicyFile problem in many posts, so I > included this crossdomain file in the root folder of my server. > http://www.kevinburkeportfolio.com/crossdomain.xml > AND here: > http://www.kevinburkeportfolio.com/Facebook/crossdomain.xml > > I also added the following code to my Facebook MovieClip's AS class' > constructor function: > Security.allowDomain("*"); > > Security.loadPolicyFile(" > http://www.kevinburkeportfolio.com/crossdomain.xml"); > loaderContext = new LoaderContext(true); > loaderContext.checkPolicyFile = true; > > And this code after the MovieClip connects to the Facebook user's profile: > loader = new Loader(); > > loader.contentLoaderInfo.addEventListener(Event.COMPLETE, init); > loader.load(url,loaderContext); > > > I also added this code to my document class's properties: > public var checkPolicyFile:Boolean; > > AND this to the constructor: > checkPolicyFile = true; > > Security.loadPolicyFile(" > http://www.kevinburkeportfolio.com/crossdomain.xml"); > > The plane is NOT built until the image is done loading and I even drew in a > white box to the MovieClip so there would be something in it before the > plane requested its instance. > > I'm out of ideas. Can anyone please > help???!?!?!?!?!?!?!!?!??!?!?!?!?!?!?!?!?!? > -- > View this message in context: > http://papervision3d.758870.n4.nabble.com/The-unbeatable-Security-sandbox-dilemma-Policy-file-not-working-tp2717943p2717943.html > Sent from the Papervision3D mailing list archive at Nabble.com. > > _______________________________________________ > Papervision3D mailing list > Papervision3D at osflash.org > http://osflash.org/mailman/listinfo/papervision3d_osflash.org > -------------- next part -------------- An HTML attachment was scrubbed... URL: From wviaria at gmail.com Tue Sep 28 14:28:00 2010 From: wviaria at gmail.com (viaria) Date: Tue, 28 Sep 2010 14:28:00 -0700 (PDT) Subject: [Papervision3D] The unbeatable Security sandbox dilemma - Policy file not working! In-Reply-To: <1285708045254-2717943.post@n4.nabble.com> References: <1285708045254-2717943.post@n4.nabble.com> Message-ID: <1285709280267-2717974.post@n4.nabble.com> hey, it works for me. -- View this message in context: http://papervision3d.758870.n4.nabble.com/The-unbeatable-Security-sandbox-dilemma-Policy-file-not-working-tp2717943p2717974.html Sent from the Papervision3D mailing list archive at Nabble.com. From pajhonka at yahoo.com Tue Sep 28 14:33:36 2010 From: pajhonka at yahoo.com (Kevin Burke) Date: Tue, 28 Sep 2010 14:33:36 -0700 (PDT) Subject: [Papervision3D] The unbeatable Security sandbox dilemma - Policy file not working! In-Reply-To: References: <1285708045254-2717943.post@n4.nabble.com> Message-ID: <8518.66736.qm@web113820.mail.gq1.yahoo.com> You fixed it!!!!! I'm so grateful!!!! Thank you!!!!!!!!!!!!!!!!!! That was taking up so many hours!!!!!!!! Can I buy you a meal or something? Thank you!!!!! Kevin ________________________________ From: Zeh Fernando-3 [via Papervision3D] To: Kevin Burke Sent: Tue, September 28, 2010 4:24:21 PM Subject: Re: The unbeatable Security sandbox dilemma - Policy file not working! Crossdomain needs to be on the target domain (profile.ak.fbcdn.net), not on the source (kevinburkeportfolio.com). Usually just having checkPolicyFile set to true is enough. However, in this case, knowing Facebook, it's probably because the actual image loading is redirecting you to a different domain (via 302 redirect), and redirect loads don't take checkPolicyFile into consideration (it's always set to false). The solution is loading the crossdomain file yourself beforehand. TL;DR: Just do... Security.loadPolicyFile("http://profile.ak.fbcdn.net/crossdomain.xml"); ...somewhere on your application's initialization. You can get rid of the other loadPolicyFile methods and crossdomain.xml files. Zeh On Tue, Sep 28, 2010 at 5:07 PM, Kevin Burke <[hidden email]> wrote: >Hi, >I have a Papervision plane that uses a user's Facebook profile picture as a >MovieClip in a MovieMaterial. > >When I test this .swf from my local machine, it works, but when I upload it >to my web host, I get an error. > >SITE: >http://www.kevinburkeportfolio.com/Facebook/facebook_test.html > >ERROR MESSAGE: >SecurityError: Error #2122: Security sandbox violation: BitmapData.draw: >http://www.kevinburkeportfolio.com/Facebook/facebook_test.swf/[[DYNAMIC]]/3 >cannot access >http://profile.ak.fbcdn.net/hprofile-ak-snc4/hs347.snc4/41502_689060327_4407_n.jpg. > >A policy file is required, but the checkPolicyFile flag was not set when >this media was loaded. > at flash.display::BitmapData/draw() > at Main/checkLoad() > >I have read about this sandbox/checkPolicyFile problem in many posts, so I >included this crossdomain file in the root folder of my server. >http://www.kevinburkeportfolio.com/crossdomain.xml >AND here: >http://www.kevinburkeportfolio.com/Facebook/crossdomain.xml > >I also added the following code to my Facebook MovieClip's AS class' >constructor function: > Security.allowDomain("*"); > >Security.loadPolicyFile("http://www.kevinburkeportfolio.com/crossdomain.xml"); > loaderContext = new LoaderContext(true); > loaderContext.checkPolicyFile = true; > >And this code after the MovieClip connects to the Facebook user's profile: > loader = new Loader(); > loader.contentLoaderInfo.addEventListener(Event.COMPLETE, >init); > loader.load(url,loaderContext); > > >I also added this code to my document class's properties: > public var checkPolicyFile:Boolean; > >AND this to the constructor: > checkPolicyFile = true; > >Security.loadPolicyFile("http://www.kevinburkeportfolio.com/crossdomain.xml"); > >The plane is NOT built until the image is done loading and I even drew in a >white box to the MovieClip so there would be something in it before the >plane requested its instance. > >I'm out of ideas. Can anyone please >help???!?!?!?!?!?!?!!?!??!?!?!?!?!?!?!?!?!? >-- >View this message in context: >http://papervision3d.758870.n4.nabble.com/The-unbeatable-Security-sandbox-dilemma-Policy-file-not-working-tp2717943p2717943.html?by-user=t > >Sent from the Papervision3D mailing list archive at Nabble.com. > >_______________________________________________ >Papervision3D mailing list >[hidden email] >http://osflash.org/mailman/listinfo/papervision3d_osflash.org > _______________________________________________ Papervision3D mailing list [hidden email] http://osflash.org/mailman/listinfo/papervision3d_osflash.org ________________________________ View message @ http://papervision3d.758870.n4.nabble.com/The-unbeatable-Security-sandbox-dilemma-Policy-file-not-working-tp2717943p2717967.html To unsubscribe from The unbeatable Security sandbox dilemma - Policy file not working!, click here. -- View this message in context: http://papervision3d.758870.n4.nabble.com/The-unbeatable-Security-sandbox-dilemma-Policy-file-not-working-tp2717943p2717981.html Sent from the Papervision3D mailing list archive at Nabble.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From pajhonka at yahoo.com Tue Sep 28 14:38:20 2010 From: pajhonka at yahoo.com (Kevin Burke) Date: Tue, 28 Sep 2010 14:38:20 -0700 (PDT) Subject: [Papervision3D] The unbeatable Security sandbox dilemma - Policy file not working! In-Reply-To: <1285709280267-2717974.post@n4.nabble.com> References: <1285708045254-2717943.post@n4.nabble.com> <1285709280267-2717974.post@n4.nabble.com> Message-ID: <239728.73540.qm@web113802.mail.gq1.yahoo.com> Someone sent me the fix...I was using the wrong Policy file...it should have been Facebook's. Thank you for the response!!! ________________________________ From: viaria [via Papervision3D] To: Kevin Burke Sent: Tue, September 28, 2010 4:28:00 PM Subject: Re: The unbeatable Security sandbox dilemma - Policy file not working! hey, it works for me. ________________________________ View message @ http://papervision3d.758870.n4.nabble.com/The-unbeatable-Security-sandbox-dilemma-Policy-file-not-working-tp2717943p2717974.html To unsubscribe from The unbeatable Security sandbox dilemma - Policy file not working!, click here. -- View this message in context: http://papervision3d.758870.n4.nabble.com/The-unbeatable-Security-sandbox-dilemma-Policy-file-not-working-tp2717943p2717991.html Sent from the Papervision3D mailing list archive at Nabble.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From karim at kurst.co.uk Thu Sep 30 04:19:23 2010 From: karim at kurst.co.uk (Karim Beyrouti) Date: Thu, 30 Sep 2010 12:19:23 +0100 Subject: [Papervision3D] Particle + Light Reactive Material Message-ID: <33AB5A1E-C720-4157-AE6D-590E088D2674@kurst.co.uk> Hello List - wondering if we have a shader / material for particles reacting to a light source? or what would be the best way of simulating this one ? Best Karim Beyrouti