That has got to do with client settings on "open" command of that filetype, 
sorry.

/ Mattias
.NET Developer
Dropit.se

________________________________

Från: [EMAIL PROTECTED] genom Mike Boutin
Skickat: to 2005-12-01 00:25
Till: Flashcoders mailing list
Ämne: Re: [Flashcoders] Scrollpane in the arse



Perfect! thanks it works great!

Mike Boutin wrote:

> Thanks for the example, except I need 10 productDisplay clips in 1
> scrollpane.
>
>
> JesterXL wrote:
>
>> Then try:
>>
>> var pro_startY= 0;
>> for(i=0; i<10; i++)
>> {
>>    var ref:ScrollPane = ScrollPane(attachMovie("ScrollPane", "pane" +
>> i, i));
>>    ref.move(0, pro_startY);
>>    ref.contentPath = "productDisplay";
>>    pro_startY += 160;
>> }
>>
>> That'll make 10 panes, each with a productDisplay loaded in it.
>>
>> ----- Original Message ----- From: "Mike Boutin"
>> <[EMAIL PROTECTED]>
>> To: "Flashcoders mailing list" <flashcoders@chattyfig.figleaf.com>
>> Sent: Wednesday, November 30, 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;i<10;i++){
>>    //Create movieclip object
>>    //productPane.attachMovie("productDisplay", "product_"+i, i, {_x:0,
>> _y:pro_startY});
>>    //pro_startY += 160;
>> }
>>
>> productPane.contentPath = "productDisplay" only adds 1 movieclip
>>
>> JesterXL wrote:
>>
>> 
>>
>>> Close!  Do what Derek said:
>>>
>>> myScrollpane.contentPath = "productDisplay";
>>> myScrollpane.move(700, 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 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 want to... The way it works now is you set the contentPath to
>>>> the linkage ID of a  clip in the library, then attach the individual
>>>> items to scrollPane.content.  To me this makes more sense this way
>>>> than the old way... why build content outside the pane then put it
>>>> inside? ... instead just build it directly inside the pane from the
>>>> start.
>>>>
>>>> -Steve
>>>>
>>>> -----------------------------------------
>>>> 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 a linkage in the library.
>>>> _______________________________________________
>>>> Flashcoders mailing list
>>>> Flashcoders@chattyfig.figleaf.com
>>>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>>>
>>>>
>>>>
>>>>    
>>>
>>> _______________________________________________
>>> Flashcoders mailing list
>>> Flashcoders@chattyfig.figleaf.com
>>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>> _______________________________________________
>>> Flashcoders mailing list
>>> Flashcoders@chattyfig.figleaf.com
>>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>>
>>>
>>>
>>>  
>>
>>
>> _______________________________________________
>> Flashcoders mailing list
>> Flashcoders@chattyfig.figleaf.com
>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>> _______________________________________________
>> Flashcoders mailing list
>> Flashcoders@chattyfig.figleaf.com
>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>
>> 
>>
>
> _______________________________________________
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>

_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to