Re: [flexcoders] Re: Zoom Tile Container

2008-07-28 Thread Jon Bradley

http://demo.quietlyscheming.com/fisheye/TileExplorer.html

On Jul 25, 2008, at 4:00 PM, Nate Pearson wrote:


Bump. Any ideas?




[flexcoders] Re: Zoom Tile Container

2008-07-28 Thread Nate Pearson
Oh wow!  That is awesome!

I like the 2nd one more too.  I'm going to dig into the code and see
how you did that.  If I make any improvements I'll repost it.

wow, thanks again.  This is really awesome.  This might deserve a spot
in the flex lib.  I'll work on making it more modular so someone can
just drop it in.

Thanks!

Nate

--- In flexcoders@yahoogroups.com, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> 
wrote:
>
> http://reenie.org/test/zoomComponent/zoomtest.html
> This is a new example which is the same as the one below (zoom with 
> effects) but it uses a mxml component based on the tile container, and 
> AS classes for the effects.
> 
> It still doesn't zoom to 100% because I don't know how to get an effect 
> to do that.
> 
> 
> 
> [EMAIL PROTECTED] wrote:
> > Here is an example of tile containers with zoom
> > http://reenie.org/test/tilezoom/zoomtest.html
> >
> > This example uses a canvas for each tile but the canvas only goes to 
> > 200% of its original size.
> > How would I do this  effect to get  a 100% of the application
percentage 
> > width ?
> >
> > In the following Effect, toValue="100%" is not allowed
> >
> > 
> >  > duration="1000"  />
> >  > duration="1000"  />
> > 
> >
> >
> >
> > Nate Pearson wrote:
> >   
> >> So if I have 4 boxes I want to set one to width=100% and
height="100%"
> >> and the others to width=0, height=0.
> >>
> >> I'd put an effect on it so that it looked like one of them would grow
> >> and the others would shrink to nothing.
> >>
> >> This is pretty easy to do in code, but I want to make a component
that
> >> can have a variable amount of boxes.  Not sure how to do that.
> >>
> >> --- In flexcoders@yahoogroups.com, "Tracy Spratt"  wrote:
> >>   
> >> 
> >>> What exactly do you mean by "zoom"?
> >>>
> >>> Tracy
> >>>
> >>>  
> >>>
> >>> 
> >>>
> >>> From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On
> >>> Behalf Of Nate Pearson
> >>> Sent: Friday, July 25, 2008 4:00 PM
> >>> To: flexcoders@yahoogroups.com
> >>> Subject: [flexcoders] Re: Zoom Tile Container
> >>>
> >>>  
> >>>
> >>>
> >>> Bump. Any ideas?
> >>>
> >>> --- In flexcoders@yahoogroups.com
<mailto:flexcoders%40yahoogroups.com>
> >>> , "Nate Pearson"  wrote:
> >>> 
> >>>   
> >>>> I want to make a custom component and I think I can extend the tile
> >>>> container to do it.
> >>>>
> >>>> Here's what I want to do:
> >>>> Have four boxes fill up the screen. If I click on one of the boxes
> >>>> that box zooms to fill the whole screen and the other three boxes
> >>>> shrink to nothing. 
> >>>>
> >>>> Inside of that box I want another set of boxes, lets say 6. If I
> >>>> click on that box it zooms and does the same thing as above. 
> >>>>
> >>>> Can anyone point me in the right direction? I'm pretty good at
making
> >>>> custom components so if someone could just kinda nudge me in
the right
> >>>> direction that would be great.
> >>>>
> >>>> Thanks!
> >>>>
> >>>> Nate
> >>>>
> >>>>   
> >>>> 
> >>
> >>
> >>   
> >> 
> >
> >
> > 
> >
> >
> >
>




Re: [flexcoders] Re: Zoom Tile Container

2008-07-28 Thread [EMAIL PROTECTED]
http://reenie.org/test/zoomComponent/zoomtest.html
This is a new example which is the same as the one below (zoom with 
effects) but it uses a mxml component based on the tile container, and 
AS classes for the effects.

It still doesn't zoom to 100% because I don't know how to get an effect 
to do that.



[EMAIL PROTECTED] wrote:
> Here is an example of tile containers with zoom
> http://reenie.org/test/tilezoom/zoomtest.html
>
> This example uses a canvas for each tile but the canvas only goes to 
> 200% of its original size.
> How would I do this  effect to get  a 100% of the application percentage 
> width ?
>
> In the following Effect, toValue="100%" is not allowed
>
> 
>  duration="1000"  />
>  duration="1000"  />
> 
>
>
>
> Nate Pearson wrote:
>   
>> So if I have 4 boxes I want to set one to width=100% and height="100%"
>> and the others to width=0, height=0.
>>
>> I'd put an effect on it so that it looked like one of them would grow
>> and the others would shrink to nothing.
>>
>> This is pretty easy to do in code, but I want to make a component that
>> can have a variable amount of boxes.  Not sure how to do that.
>>
>> --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote:
>>   
>> 
>>> What exactly do you mean by "zoom"?
>>>
>>> Tracy
>>>
>>>  
>>>
>>> 
>>>
>>> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
>>> Behalf Of Nate Pearson
>>> Sent: Friday, July 25, 2008 4:00 PM
>>> To: flexcoders@yahoogroups.com
>>> Subject: [flexcoders] Re: Zoom Tile Container
>>>
>>>  
>>>
>>>
>>> Bump. Any ideas?
>>>
>>> --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com>
>>> , "Nate Pearson"  wrote:
>>> 
>>>   
>>>> I want to make a custom component and I think I can extend the tile
>>>> container to do it.
>>>>
>>>> Here's what I want to do:
>>>> Have four boxes fill up the screen. If I click on one of the boxes
>>>> that box zooms to fill the whole screen and the other three boxes
>>>> shrink to nothing. 
>>>>
>>>> Inside of that box I want another set of boxes, lets say 6. If I
>>>> click on that box it zooms and does the same thing as above. 
>>>>
>>>> Can anyone point me in the right direction? I'm pretty good at making
>>>> custom components so if someone could just kinda nudge me in the right
>>>> direction that would be great.
>>>>
>>>> Thanks!
>>>>
>>>> Nate
>>>>
>>>>   
>>>> 
>>
>>
>>   
>> 
>
>
> 
>
>
>   



Re: [flexcoders] Re: Zoom Tile Container

2008-07-27 Thread [EMAIL PROTECTED]
Here is an example of a tile container zoom that does zoom to %100 of 
the application,
but it doesn't use an effect, it uses states and transitions.
http://reenie.org/test/zoom/zoomtest.html

I like this better, but I'm not sure you can generate  dynamic 
components with this method.


[EMAIL PROTECTED] wrote:
> Here is an example of tile containers with zoom
> http://reenie.org/test/tilezoom/zoomtest.html
>
> This example uses a canvas for each tile but the canvas only goes to 
> 200% of its original size.
> How would I do this  effect to get  a 100% of the application percentage 
> width ?
>
> In the following Effect, toValue="100%" is not allowed
>
> 
>  duration="1000"  />
>  duration="1000"  />
> 
>
>
>
> Nate Pearson wrote:
>   
>> So if I have 4 boxes I want to set one to width=100% and height="100%"
>> and the others to width=0, height=0.
>>
>> I'd put an effect on it so that it looked like one of them would grow
>> and the others would shrink to nothing.
>>
>> This is pretty easy to do in code, but I want to make a component that
>> can have a variable amount of boxes.  Not sure how to do that.
>>
>> --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote:
>>   
>> 
>>> What exactly do you mean by "zoom"?
>>>
>>> Tracy
>>>
>>>  
>>>
>>> 
>>>
>>> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
>>> Behalf Of Nate Pearson
>>> Sent: Friday, July 25, 2008 4:00 PM
>>> To: flexcoders@yahoogroups.com
>>> Subject: [flexcoders] Re: Zoom Tile Container
>>>
>>>  
>>>
>>>
>>> Bump. Any ideas?
>>>
>>> --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com>
>>> , "Nate Pearson"  wrote:
>>> 
>>>   
>>>> I want to make a custom component and I think I can extend the tile
>>>> container to do it.
>>>>
>>>> Here's what I want to do:
>>>> Have four boxes fill up the screen. If I click on one of the boxes
>>>> that box zooms to fill the whole screen and the other three boxes
>>>> shrink to nothing. 
>>>>
>>>> Inside of that box I want another set of boxes, lets say 6. If I
>>>> click on that box it zooms and does the same thing as above. 
>>>>
>>>> Can anyone point me in the right direction? I'm pretty good at making
>>>> custom components so if someone could just kinda nudge me in the right
>>>> direction that would be great.
>>>>
>>>> Thanks!
>>>>
>>>> Nate
>>>>
>>>>   
>>>> 
>>
>> 
>>
>> --
>> Flexcoders Mailing List
>> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
>> Search Archives: 
>> http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links
>>
>>
>>
>>
>> No virus found in this incoming message.
>> Checked by AVG - http://www.avg.com 
>> Version: 8.0.138 / Virus Database: 270.5.5/1571 - Release Date: 7/24/2008 
>> 5:42 PM
>>
>>
>>
>>   
>> 
>
>
> 
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links
>
>
>
>
> No virus found in this incoming message.
> Checked by AVG - http://www.avg.com 
> Version: 8.0.138 / Virus Database: 270.5.6/1576 - Release Date: 7/27/2008 
> 4:16 PM
>
>
>
>   



Re: [flexcoders] Re: Zoom Tile Container

2008-07-27 Thread [EMAIL PROTECTED]

Here is an example of tile containers with zoom
http://reenie.org/test/tilezoom/zoomtest.html

This example uses a canvas for each tile but the canvas only goes to 
200% of its original size.
How would I do this  effect to get  a 100% of the application percentage 
width ?

In the following Effect, toValue="100%" is not allowed








Nate Pearson wrote:
> So if I have 4 boxes I want to set one to width=100% and height="100%"
> and the others to width=0, height=0.
>
> I'd put an effect on it so that it looked like one of them would grow
> and the others would shrink to nothing.
>
> This is pretty easy to do in code, but I want to make a component that
> can have a variable amount of boxes.  Not sure how to do that.
>
> --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote:
>   
>> What exactly do you mean by "zoom"?
>>
>> Tracy
>>
>>  
>>
>> 
>>
>> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
>> Behalf Of Nate Pearson
>> Sent: Friday, July 25, 2008 4:00 PM
>> To: flexcoders@yahoogroups.com
>> Subject: [flexcoders] Re: Zoom Tile Container
>>
>>  
>>
>>
>> Bump. Any ideas?
>>
>> --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com>
>> , "Nate Pearson"  wrote:
>> 
>>> I want to make a custom component and I think I can extend the tile
>>> container to do it.
>>>
>>> Here's what I want to do:
>>> Have four boxes fill up the screen. If I click on one of the boxes
>>> that box zooms to fill the whole screen and the other three boxes
>>> shrink to nothing. 
>>>
>>> Inside of that box I want another set of boxes, lets say 6. If I
>>> click on that box it zooms and does the same thing as above. 
>>>
>>> Can anyone point me in the right direction? I'm pretty good at making
>>> custom components so if someone could just kinda nudge me in the right
>>> direction that would be great.
>>>
>>> Thanks!
>>>
>>> Nate
>>>
>>>   
>
>
>
> 
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links
>
>
>
>
> No virus found in this incoming message.
> Checked by AVG - http://www.avg.com 
> Version: 8.0.138 / Virus Database: 270.5.5/1571 - Release Date: 7/24/2008 
> 5:42 PM
>
>
>
>   



[flexcoders] Re: Zoom Tile Container

2008-07-25 Thread Nate Pearson
So if I have 4 boxes I want to set one to width=100% and height="100%"
and the others to width=0, height=0.

I'd put an effect on it so that it looked like one of them would grow
and the others would shrink to nothing.

This is pretty easy to do in code, but I want to make a component that
can have a variable amount of boxes.  Not sure how to do that.

--- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote:
>
> What exactly do you mean by "zoom"?
> 
> Tracy
> 
>  
> 
> 
> 
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of Nate Pearson
> Sent: Friday, July 25, 2008 4:00 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: Zoom Tile Container
> 
>  
> 
> 
> Bump. Any ideas?
> 
> --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com>
> , "Nate Pearson"  wrote:
> >
> > I want to make a custom component and I think I can extend the tile
> > container to do it.
> > 
> > Here's what I want to do:
> > Have four boxes fill up the screen. If I click on one of the boxes
> > that box zooms to fill the whole screen and the other three boxes
> > shrink to nothing. 
> > 
> > Inside of that box I want another set of boxes, lets say 6. If I
> > click on that box it zooms and does the same thing as above. 
> > 
> > Can anyone point me in the right direction? I'm pretty good at making
> > custom components so if someone could just kinda nudge me in the right
> > direction that would be great.
> > 
> > Thanks!
> > 
> > Nate
> >
>




RE: [flexcoders] Re: Zoom Tile Container

2008-07-25 Thread Tracy Spratt
What exactly do you mean by "zoom"?

Tracy

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Nate Pearson
Sent: Friday, July 25, 2008 4:00 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Zoom Tile Container

 


Bump. Any ideas?

--- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com>
, "Nate Pearson" <[EMAIL PROTECTED]> wrote:
>
> I want to make a custom component and I think I can extend the tile
> container to do it.
> 
> Here's what I want to do:
> Have four boxes fill up the screen. If I click on one of the boxes
> that box zooms to fill the whole screen and the other three boxes
> shrink to nothing. 
> 
> Inside of that box I want another set of boxes, lets say 6. If I
> click on that box it zooms and does the same thing as above. 
> 
> Can anyone point me in the right direction? I'm pretty good at making
> custom components so if someone could just kinda nudge me in the right
> direction that would be great.
> 
> Thanks!
> 
> Nate
>

 



[flexcoders] Re: Zoom Tile Container

2008-07-25 Thread Nate Pearson

Bump.  Any ideas?

--- In flexcoders@yahoogroups.com, "Nate Pearson" <[EMAIL PROTECTED]> wrote:
>
> I want to make a custom component and I think I can extend the tile
> container to do it.
> 
> Here's what I want to do:
> Have four boxes fill up the screen.  If I click on one of the boxes
> that box zooms to fill the whole screen and the other three boxes
> shrink to nothing.  
> 
> Inside of that box I want another set of boxes, lets say 6.  If I
> click on that box it zooms and does the same thing as above. 
> 
> Can anyone point me in the right direction?  I'm pretty good at making
> custom components so if someone could just kinda nudge me in the right
> direction that would be great.
> 
> Thanks!
> 
> Nate
>