Re: [Flashcoders] Scrollpane in the arse - Solution

2005-12-02 Thread Devendran I
Hi , there is a way to Attch Dynamic movie into Scroll Pane Try this a way to attach Movie First Provide any Empty Or some movieName to the Scrollpane ContentPath. Now try This

Re: [Flashcoders] Scrollpane in the arse

2005-11-30 Thread Mike Boutin
I have tried using both content (which is read-only) and contentPath (which seems to target a enternal source, or a movieclip in the library with a linkage set). The problem is I am dynamically creating the clips first on the stage, then placing them in the scrollpane, so it does not contain

Re: [Flashcoders] Scrollpane in the arse

2005-11-30 Thread JesterXL
] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Wednesday, November 30, 2005 5:42 PM Subject: Re: [Flashcoders] Scrollpane in the arse I have tried using both content (which is read-only) and contentPath (which seems to target a enternal source, or a movieclip in the library

Re: [Flashcoders] Scrollpane in the arse

2005-11-30 Thread Mike Boutin
So I should be able to do something like this rather than putting all the clips in a empty_mc first: myScrollpane.attachMovie(productDisplay, product_+i, i, {_x:700, _y:pro_startY}); ? Steve Krichten wrote: Sorry, you can't do that with the V2 component. However I don't see why you

Re: [Flashcoders] Scrollpane in the arse

2005-11-30 Thread JesterXL
: [Flashcoders] Scrollpane in the arse So I should be able to do something like this rather than putting all the clips in a empty_mc first: myScrollpane.attachMovie(productDisplay, product_+i, i, {_x:700, _y:pro_startY}); ? Steve Krichten wrote: Sorry, you can't do that with the V2 component

Re: [Flashcoders] Scrollpane in the arse

2005-11-30 Thread Mike Boutin
Derek Vadneau wrote: _root.productPane.contentPath = productHolder; The contentPath code will do the attachMovie for you. You either have to specify a symbol name from the library or a URL. Derek Vadneau - Original Message - From: Mike Boutin [EMAIL PROTECTED] To:

Re: [Flashcoders] Scrollpane in the arse

2005-11-30 Thread Mike Boutin
- From: Mike Boutin [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Wednesday, November 30, 2005 5:55 PM Subject: Re: [Flashcoders] Scrollpane in the arse So I should be able to do something like this rather than putting all the clips in a empty_mc

Re: [Flashcoders] Scrollpane in the arse

2005-11-30 Thread JesterXL
, pro_startY); - Original Message - From: Mike Boutin [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Wednesday, November 30, 2005 5:55 PM Subject: Re: [Flashcoders] Scrollpane in the arse So I should be able to do something like this rather than putting

Re: [Flashcoders] Scrollpane in the arse

2005-11-30 Thread Mike Boutin
Message - From: Mike Boutin [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Wednesday, November 30, 2005 5:55 PM Subject: Re: [Flashcoders] Scrollpane in the arse So I should be able to do something like this rather than putting all the clips in a empty_mc

Re: [Flashcoders] Scrollpane in the arse

2005-11-30 Thread Mike Boutin
, 2005 6:06 PM Subject: Re: [Flashcoders] Scrollpane in the arse All that does is move the movieclip inside the pane around. I want to Duplicate that movieclip a bunch of times, not move it. This must be possible as it works fine with the old component. var pro_startY:Number = 0; for (i=0;i10;i

RE: [Flashcoders] Scrollpane in the arse

2005-11-30 Thread Steven Sacks
Why not make an empty movieclip in your library ahead of time, set its linkage identifier to something like SYM_SPContent, and then mysp.contentPath = SYM_SPContent; var mc = mysp.content; mc.attachMovie(...); Sometimes the most straightforward solution eludes the best of us. -Steven