[Papervision3D] MovieClip surfaces

John Grden neoriley at gmail.com
Thu Aug 16 13:27:36 PDT 2007


that should be the latest one Dustin

yeah, click / drag stuff needs to be worked out.  It's not a matter of
VirtualMouse being able to do it, it's a matter of figuring out how to use
it with the components etc.

So, we really need some people to dig into the component source, play around
and figure out how it should all go.

I actually did dig into the component source, and the root of the problem, I
believe, is the section where the stage property is set and the FocusManager
is instantiated.  Without a stage, it won't happen.

On 8/16/07, Dustin Sparks <djsparks at bsu.edu> wrote:
>
> When messing around with the components demo I found that the scrollbars
> and buttons that need a continous mouse_down event dont work right. If you
> click on the scrollbar and try to drag it on a 3D plane, then it doesnt
> drag.
>
> I tried messing with the source a little, but no change, and I'm not even
> slightly familiar with it yet. It could also be an older version with stuff
> you guys have fixed already. ( I do have revision # 171 from today)
>
> On 8/16/07, John Grden <neoriley at gmail.com> wrote:
> >
> > PS> I'll explain the *how* when we release it, right now, I'm tyring to
> > get my day job done, then create docs on the new API and get the demo's out
> > there for you guys
> >
> > On 8/16/07, John Grden <neoriley at gmail.com> wrote:
> > >
> > > hehe nope ;)
> > >
> > > nothing like that at all - we've included a new VirtualMouse from
> > > Trevor McCauley.  With that and the new ISM and InteractiveUtils (Thank you
> > > Pierre for the methods!) you now can receive the mouse events and it's
> > > completely seemless to the developer.
> > >
> > > More on this in just a few hours!!  We're as stoked to get it to you
> > > guys as you guys are to see it!
> > >
> > > We also have a test out there with a movieclip and a bunch of UI
> > > components and it primarily works right out of the box.  You can scroll
> > > textarea, use radio button, checkbox, combobox, sliders blah blah blah
> > >
> > > but there's an issue with the UI components that we're hoping someone
> > > on this list can figure out for us - if you don't have the movieclip sitting
> > > on stage, the UI components wont work.  SO, there's gotta be a way to fool
> > > them.  As soon as someone cracks that nut, we should be able to create a
> > > Movieclip, make a form with Ui components, and apply to a 3D object without
> > > even blinking.
> > >
> > > :)  THIS ROCKS \m/
> > >
> > > And De'Angelo has been a real driving force in getting this all ironed
> > > out with me - he finally figured out the issue with the coordinates last
> > > night and after that, we've been going nuts with samples and finalizing
> > > code.
> > >
> > > On 8/16/07, Patrick Matte | BLITZ < PMatte at blitzagency.com> wrote:
> > > >
> > > >  Wow how did you do it? Is the real movieclip transparent and moving
> > > > under the mouse cursor like in my cube example ?
> > > >
> > > >
> > > >
> > > > *BLITZ | Patrick Matte* 310-551-0200 *x214*
> > > >
> > > > *From:* papervision3d-bounces at osflash.org [mailto:papervision3d-bounces at osflash.org]
> > > > *On Behalf Of *John Grden
> > > > *Sent:* Thursday, August 16, 2007 11:54 AM
> > > > *To:* papervision3d at osflash.org
> > > > *Subject:* Re: [Papervision3D] MovieClip surfaces
> > > >
> > > >
> > > >
> > > > stoopid big fingers...
> > > >
> > > > and the code is now as easy and native as you need it to be:
> > > >
> > > > protected function createPlane():void {
> > > >             var material:MovieMaterial = new
> > > > InteractiveMovieMaterial(mc);
> > > >             var mChild:DisplayObject = material.movie.getChildByName
> > > > ("child");
> > > >             material.animated = true;
> > > >             material.smooth = true;
> > > >
> > > >             mChild.addEventListener(MouseEvent.CLICK,
> > > > handleBTNClick);
> > > >             mChild.addEventListener(MouseEvent.MOUSE_OVER,
> > > > handleBTNOver);
> > > >             mChild.addEventListener(MouseEvent.MOUSE_OUT,
> > > > handleBTNOut);
> > > >
> > > >             material.updateBitmap();
> > > >
> > > >             var plane:Plane = new Plane( material, mc.width,
> > > > mc.height, 8, 8 );
> > > >             scene.addChild(plane);
> > > >         }
> > > >
> > > > Thanks to Jim Kremens for that little sample ;)
> > > >
> > > > More on this when we post it for everyone - few more hours ;)
> > > >
> > > > On 8/16/07, *John Grden* <neoriley at gmail.com> wrote:
> > > >
> > > > we'll be announcing this today/tomorrow depending on my getting the
> > > > docs done and De'Angelo finishing up a demo for it.
> > > >
> > > > http://papervision3d.googlecode.com/svn/trunk/branches/FaceLevelInteractivity/tests/formUITest/TestInteractiveSceneSimple.swf
> > > >
> > > >
> > > > if you rollover the blue square, it changes color
> > > >
> > > > On 8/16/07, *dan at futurlab.co.uk* < dan at futurlab.co.uk> wrote:
> > > >
> > > > Hello Papervision list.
> > > >
> > > > i'm just checking out PV3D and have a quick question i hope someone
> > > > can
> > > > answer...
> > > >
> > > > can movieclip materials retain their movieclip functionality? as in,
> > > > can
> > > > buttons and other mouse based interactions still be used, or is the
> > > > mc
> > > > rendered to a non-interactive bitmap?
> > > >
> > > > also, as i guess this (and probably several other questions im
> > > > likely to
> > > > come up with) has been asked before, is there an archive of posts to
> > > > this
> > > > list that i can browse through without boring everyone with the same
> > > > old
> > > > questions?
> > > >
> > > > thanks in advance!
> > > >
> > > > dan
> > > >
> > > >
> > > >
> > > > _______________________________________________
> > > > Papervision3D mailing list
> > > > Papervision3D at osflash.org
> > > > http://osflash.org/mailman/listinfo/papervision3d_osflash.org
> > > >
> > > >
> > > >
> > > >
> > > > --
> > > > [  JPG  ]
> > > >
> > > >
> > > >
> > > >
> > > > --
> > > > [  JPG  ]
> > > >
> > > > _______________________________________________
> > > > Papervision3D mailing list
> > > > Papervision3D at osflash.org
> > > > http://osflash.org/mailman/listinfo/papervision3d_osflash.org
> > > >
> > > >
> > >
> > >
> > > --
> > > [  JPG  ]
> > >
> >
> >
> >
> > --
> > [  JPG  ]
> > _______________________________________________
> > Papervision3D mailing list
> > Papervision3D at osflash.org
> > http://osflash.org/mailman/listinfo/papervision3d_osflash.org
> >
> >
>
>
> --
> [ Dustin Sparks ]
> p. (765) 273-4793
> _______________________________________________
> Papervision3D mailing list
> Papervision3D at osflash.org
> http://osflash.org/mailman/listinfo/papervision3d_osflash.org
>
>


-- 
[  JPG  ]
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://osflash.org/pipermail/papervision3d_osflash.org/attachments/20070816/1f3ebefc/attachment.html 


More information about the Papervision3D mailing list