Re: [Flashcoders] Re: SWAddress logical workflow

2009-06-17 Thread Glen Pike

Hi,

   By interrupting the loading / transition I mean:

   If someone navigates, causing a change in the SWFAddress URL and you 
start loading data corresponding to the change...
   ...THEN, whilst your data is still loading, someone clicks the back 
/ forward buttons, maybe more than once...
   Your SWFAddress URL will change again and you MAY need to handle 
that change gracefully by interrupting what is going on already and 
dealing with last SWFAddress change received...


   For exampe:  If you are halfway through an animated transition, what 
do you do - wiat for it to finish or stop it and make it run backwards, 
stop it and start a different one??  I don't know if Gaia does this - it 
might do out of the box reasonably well, so check it out...


   If you are loading data, that may be easy to interrupt - you could 
look at swapping Loader objects over, remove listeners from the dead 
one, if you can't tell the existing Loader to start over with your new 
request.


   Whatever happens, you either have to wait until the previous 
loading/animation finishes (takes time and this is what holds your site 
up), or you build in a way of killing that and doing another.  I think 
the latter would make your site more responsive, but may take a lot of 
time and effort to get right so you may have to weigh up pros  cons.


   HTH

   GLen

  


Omar Fouad wrote:

I almost forgot... what do you mean by interrupting the loading / transition
of the site?

On Wed, Jun 17, 2009 at 3:56 AM, Omar Fouad omarfouad@gmail.com wrote:

  

Thanks Guys, for the replies I'll see your example Glen.


On Tue, Jun 16, 2009 at 11:27 PM, Steven Sacks flash...@stevensacks.netwrote:



This is exactly how Gaia works.  goto() calls setValue on SWFAddress and
the response is dispatched to the framework to handle the navigation.
 Interrupts are handled in both loading and transitions.  It's open source,
so you're welcome to examine how it's done in Gaia.


On Jun 16, 2009, at 1:08 PM, Glen Pike wrote:

I see what you mean by setting a future date on the FWA site - I managed
  

to screw up the history completely (FF2 WinXP) so got stuck forever on that
date a bit like Groundhog Day :)
I think the only way to deal with fast browsing is to allow your loading
/ transition process to be interrupted if you keep getting changes from
SWFAddress.  Personally, I have not really thought about this in my stuff
before, but the way you said you were approaching the SWFAddress bit seemed
sensible to me - going a round-about way by setting the URL when you
navigate in Flash then responding to the change via SWFAddress.  This seems
much safer because everything goes through a single route.

There is a nice example of doing the dynamic thing with PHP in the
SWFAddress examples.  You can even tweak the whole site with Apache 
mod_rewrite to get pretty URL's - this may / may not work with Zend AMF
quite nicely so download and examine this example:
http://www.asual.com/swfaddress/samples/seo/ which seems to be the
smoothest one.

If you are worried about fast clicking, have a look to see how an HTML
site behaves with this - I guess you get half-assed page loading, etc. But
people expect to wait a bit for something to load if they go back  forth,
you just have to be prepared to interrupt what you are doing (I should
probably take my own advice here and make sure my SWFAddress site behaves
nicely)

Hope this helps and if you come up with any interesting stuff, let us
know!

Glen



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

  


--
Omar M. Fouad - Adobe Flash™ Platform Developer
www.omar-fouad.net
Cellular: (+20) 1011.88.534
Mail: m...@omar-fouad.net

This e-mail and any attachment is for authorised use by the intended
recipient(s) only. It may contain proprietary material, confidential
information and/or be subject to legal privilege. It should not be copied,
disclosed to, retained or used by, any other party. If you are not an
intended recipient then please promptly delete this e-mail and any
attachment and all copies and inform the sender. Thank you.






  


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


[Flashcoders] Re: SWAddress logical workflow

2009-06-16 Thread Omar Fouad
No ideas?

On 6/14/09, Omar Fouad omarfouad@gmail.com wrote:
 Well i believe that group 94 are using a different technique to
 implement SWFAddress dynamically. Ty also took care of fast
 next-previous browsing. What do you think?

 On 6/14/09, Gerry noentour...@gmail.com wrote:
 That's strange, you might be setting the value later in your sequence.
 I've never had this happen before.
 Are you intending to change the title after the slide animation?
 I call setTitle at the same time I call the function to switch sections.
 On the undefined situation, you will probably have to write a
 conditional to handle undefined dates and/or
 include code to not allow future dates.
 -Gerry

 On Jun 13, 2009, at 2:19 PM, Omar Fouad wrote:

 Well i can do that but i don't use that syntax. i instead do
 /gallery/2. At the end i omit the first forward slash from the address
 value string, i split it to get an array of parameters such as, in
 this case, gallery and 2 which is the id of the photo to load.
 The dilemma now is to sync all this together. I don't know if you
 noticed but the address changing in the browser occurs after a second
 and not immediately. Check www.fwaphoto.com play with it and check the
 address behaviour after clicking. Today i discovered something
 interesting. In the address, replace the date of a picture to any date
 in the future like this www.fwaphoto.com/#/2009-6-20 and see what
 happens to the address when it finds nothing. The date changes to
 undefined! What the hell does this mean?

 On 6/13/09, Gerry noentour...@gmail.com wrote:
 Yeah, I understand. You'll need to figure out how to allow for extra
 params in the url.
 My function with the switch conditional code could be replaced with
 code that handles
 dynamic params.
 ie. do something with the string that includes /sectionName and if
 there is extra params
  after /sectionName?img=  do something else.
 I'm just spit balling but that might be what you have to do.
 I don't think I've ever seen any tutorials on how anyone else has
 handled that.

 -Gerry

 On Jun 13, 2009, at 12:15 PM, Omar Fouad wrote:

 Thanks Gerry this is exactly what i do. But as Matt says there is a
 problem when i rapidily fire next and previous, things screw up.
 Another thing, what if i have a section in my movie like a gallery,
 and i need to add an additional parameter to the address like the
 photo id to load the image, this is tricky.  i've been experiencing
 too much problems.

 On 6/13/09, Matt S. mattsp...@gmail.com wrote:
 Can you describe what the bugs are? SWFAddress can be tricky,
 especially with rapid-fire clicking of the browser previous/next
 buttons.

 .m


 I don't know if this is the right thing to do in this case. I just
 need
 some
 advice because things are too much buggy.

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


 --
 Sent from my mobile device

 Omar M. Fouad - Adobe Flash™ Platform Developer
 www.omar-fouad.net
 Cellular: (+20) 1011.88.534
 Mail: m...@omar-fouad.net

 This e-mail and any attachment is for authorised use by the intended
 recipient(s) only. It may contain proprietary material, confidential
 information and/or be subject to legal privilege. It should not be
 copied, disclosed to, retained or used by, any other party. If you
 are
 not an intended recipient then please promptly delete this e-mail
 and
 any attachment and all copies and inform the sender. Thank you.

 ___
 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


 --
 Sent from my mobile device

 Omar M. Fouad - Adobe Flash™ Platform Developer
 www.omar-fouad.net
 Cellular: (+20) 1011.88.534
 Mail: m...@omar-fouad.net

 This e-mail and any attachment is for authorised use by the intended
 recipient(s) only. It may contain proprietary material, confidential
 information and/or be subject to legal privilege. It should not be
 copied, disclosed to, retained or used by, any other party. If you are
 not an intended recipient then please promptly delete this e-mail and
 any attachment and all copies and inform the sender. Thank you.

 ___
 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


 --
 Sent from my mobile device

 Omar M. Fouad - Adobe Flash™ Platform Developer
 www.omar-fouad.net
 Cellular: (+20) 1011.88.534
 Mail: m...@omar-fouad.net

 This e-mail and any attachment is for 

Re: [Flashcoders] Re: SWAddress logical workflow

2009-06-16 Thread Glen Pike
I see what you mean by setting a future date on the FWA site - I managed 
to screw up the history completely (FF2 WinXP) so got stuck forever on 
that date a bit like Groundhog Day :) 

I think the only way to deal with fast browsing is to allow your loading 
/ transition process to be interrupted if you keep getting changes from 
SWFAddress.  Personally, I have not really thought about this in my 
stuff before, but the way you said you were approaching the SWFAddress 
bit seemed sensible to me - going a round-about way by setting the URL 
when you navigate in Flash then responding to the change via 
SWFAddress.  This seems much safer because everything goes through a 
single route.


There is a nice example of doing the dynamic thing with PHP in the 
SWFAddress examples.  You can even tweak the whole site with Apache  
mod_rewrite to get pretty URL's - this may / may not work with Zend 
AMF quite nicely so download and examine this example: 
http://www.asual.com/swfaddress/samples/seo/ which seems to be the 
smoothest one.


If you are worried about fast clicking, have a look to see how an HTML 
site behaves with this - I guess you get half-assed page loading, etc. 
But people expect to wait a bit for something to load if they go back  
forth, you just have to be prepared to interrupt what you are doing (I 
should probably take my own advice here and make sure my SWFAddress site 
behaves nicely)


Hope this helps and if you come up with any interesting stuff, let us know!

Glen

Omar Fouad wrote:

No ideas?

On 6/14/09, Omar Fouad omarfouad@gmail.com wrote:
  

Well i believe that group 94 are using a different technique to
implement SWFAddress dynamically. Ty also took care of fast
next-previous browsing. What do you think?

On 6/14/09, Gerry noentour...@gmail.com wrote:


That's strange, you might be setting the value later in your sequence.
I've never had this happen before.
Are you intending to change the title after the slide animation?
I call setTitle at the same time I call the function to switch sections.
On the undefined situation, you will probably have to write a
conditional to handle undefined dates and/or
include code to not allow future dates.
-Gerry

On Jun 13, 2009, at 2:19 PM, Omar Fouad wrote:

  

Well i can do that but i don't use that syntax. i instead do
/gallery/2. At the end i omit the first forward slash from the address
value string, i split it to get an array of parameters such as, in
this case, gallery and 2 which is the id of the photo to load.
The dilemma now is to sync all this together. I don't know if you
noticed but the address changing in the browser occurs after a second
and not immediately. Check www.fwaphoto.com play with it and check the
address behaviour after clicking. Today i discovered something
interesting. In the address, replace the date of a picture to any date
in the future like this www.fwaphoto.com/#/2009-6-20 and see what
happens to the address when it finds nothing. The date changes to
undefined! What the hell does this mean?

On 6/13/09, Gerry noentour...@gmail.com wrote:


Yeah, I understand. You'll need to figure out how to allow for extra
params in the url.
My function with the switch conditional code could be replaced with
code that handles
dynamic params.
ie. do something with the string that includes /sectionName and if
there is extra params
 after /sectionName?img=  do something else.
I'm just spit balling but that might be what you have to do.
I don't think I've ever seen any tutorials on how anyone else has
handled that.

-Gerry

On Jun 13, 2009, at 12:15 PM, Omar Fouad wrote:

  

Thanks Gerry this is exactly what i do. But as Matt says there is a
problem when i rapidily fire next and previous, things screw up.
Another thing, what if i have a section in my movie like a gallery,
and i need to add an additional parameter to the address like the
photo id to load the image, this is tricky.  i've been experiencing
too much problems.

On 6/13/09, Matt S. mattsp...@gmail.com wrote:


Can you describe what the bugs are? SWFAddress can be tricky,
especially with rapid-fire clicking of the browser previous/next
buttons.

.m


  

I don't know if this is the right thing to do in this case. I just
need
some
advice because things are too much buggy.



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

  

--
Sent from my mobile device

Omar M. Fouad - Adobe Flash™ Platform Developer
www.omar-fouad.net
Cellular: (+20) 1011.88.534
Mail: m...@omar-fouad.net

This e-mail and any attachment is for authorised use by the intended
recipient(s) only. It may contain proprietary material, confidential
information and/or be subject to legal privilege. It should not be
copied, disclosed to, retained or used by, any other party. If you
are
not an intended recipient then please 

Re: [Flashcoders] Re: SWAddress logical workflow

2009-06-16 Thread Steven Sacks
This is exactly how Gaia works.  goto() calls setValue on SWFAddress  
and the response is dispatched to the framework to handle the  
navigation.  Interrupts are handled in both loading and transitions.   
It's open source, so you're welcome to examine how it's done in Gaia.



On Jun 16, 2009, at 1:08 PM, Glen Pike wrote:

I see what you mean by setting a future date on the FWA site - I  
managed to screw up the history completely (FF2 WinXP) so got stuck  
forever on that date a bit like Groundhog Day :)
I think the only way to deal with fast browsing is to allow your  
loading / transition process to be interrupted if you keep getting  
changes from SWFAddress.  Personally, I have not really thought  
about this in my stuff before, but the way you said you were  
approaching the SWFAddress bit seemed sensible to me - going a round- 
about way by setting the URL when you navigate in Flash then  
responding to the change via SWFAddress.  This seems much safer  
because everything goes through a single route.


There is a nice example of doing the dynamic thing with PHP in the  
SWFAddress examples.  You can even tweak the whole site with Apache  
 mod_rewrite to get pretty URL's - this may / may not work with  
Zend AMF quite nicely so download and examine this example: http://www.asual.com/swfaddress/samples/seo/ 
 which seems to be the smoothest one.


If you are worried about fast clicking, have a look to see how an  
HTML site behaves with this - I guess you get half-assed page  
loading, etc. But people expect to wait a bit for something to load  
if they go back  forth, you just have to be prepared to interrupt  
what you are doing (I should probably take my own advice here and  
make sure my SWFAddress site behaves nicely)


Hope this helps and if you come up with any interesting stuff, let  
us know!


Glen


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


Re: [Flashcoders] Re: SWAddress logical workflow

2009-06-16 Thread Omar Fouad
Thanks Guys, for the replies I'll see your example Glen.

On Tue, Jun 16, 2009 at 11:27 PM, Steven Sacks flash...@stevensacks.netwrote:

 This is exactly how Gaia works.  goto() calls setValue on SWFAddress and
 the response is dispatched to the framework to handle the navigation.
  Interrupts are handled in both loading and transitions.  It's open source,
 so you're welcome to examine how it's done in Gaia.


 On Jun 16, 2009, at 1:08 PM, Glen Pike wrote:

 I see what you mean by setting a future date on the FWA site - I managed to
 screw up the history completely (FF2 WinXP) so got stuck forever on that
 date a bit like Groundhog Day :)
 I think the only way to deal with fast browsing is to allow your loading /
 transition process to be interrupted if you keep getting changes from
 SWFAddress.  Personally, I have not really thought about this in my stuff
 before, but the way you said you were approaching the SWFAddress bit seemed
 sensible to me - going a round-about way by setting the URL when you
 navigate in Flash then responding to the change via SWFAddress.  This seems
 much safer because everything goes through a single route.

 There is a nice example of doing the dynamic thing with PHP in the
 SWFAddress examples.  You can even tweak the whole site with Apache 
 mod_rewrite to get pretty URL's - this may / may not work with Zend AMF
 quite nicely so download and examine this example:
 http://www.asual.com/swfaddress/samples/seo/ which seems to be the
 smoothest one.

 If you are worried about fast clicking, have a look to see how an HTML
 site behaves with this - I guess you get half-assed page loading, etc. But
 people expect to wait a bit for something to load if they go back  forth,
 you just have to be prepared to interrupt what you are doing (I should
 probably take my own advice here and make sure my SWFAddress site behaves
 nicely)

 Hope this helps and if you come up with any interesting stuff, let us
 know!

 Glen


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




-- 
Omar M. Fouad - Adobe Flash™ Platform Developer
www.omar-fouad.net
Cellular: (+20) 1011.88.534
Mail: m...@omar-fouad.net

This e-mail and any attachment is for authorised use by the intended
recipient(s) only. It may contain proprietary material, confidential
information and/or be subject to legal privilege. It should not be copied,
disclosed to, retained or used by, any other party. If you are not an
intended recipient then please promptly delete this e-mail and any
attachment and all copies and inform the sender. Thank you.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Re: SWAddress logical workflow

2009-06-16 Thread Omar Fouad
I almost forgot... what do you mean by interrupting the loading / transition
of the site?

On Wed, Jun 17, 2009 at 3:56 AM, Omar Fouad omarfouad@gmail.com wrote:

 Thanks Guys, for the replies I'll see your example Glen.


 On Tue, Jun 16, 2009 at 11:27 PM, Steven Sacks 
 flash...@stevensacks.netwrote:

 This is exactly how Gaia works.  goto() calls setValue on SWFAddress and
 the response is dispatched to the framework to handle the navigation.
  Interrupts are handled in both loading and transitions.  It's open source,
 so you're welcome to examine how it's done in Gaia.


 On Jun 16, 2009, at 1:08 PM, Glen Pike wrote:

 I see what you mean by setting a future date on the FWA site - I managed
 to screw up the history completely (FF2 WinXP) so got stuck forever on that
 date a bit like Groundhog Day :)
 I think the only way to deal with fast browsing is to allow your loading
 / transition process to be interrupted if you keep getting changes from
 SWFAddress.  Personally, I have not really thought about this in my stuff
 before, but the way you said you were approaching the SWFAddress bit seemed
 sensible to me - going a round-about way by setting the URL when you
 navigate in Flash then responding to the change via SWFAddress.  This seems
 much safer because everything goes through a single route.

 There is a nice example of doing the dynamic thing with PHP in the
 SWFAddress examples.  You can even tweak the whole site with Apache 
 mod_rewrite to get pretty URL's - this may / may not work with Zend AMF
 quite nicely so download and examine this example:
 http://www.asual.com/swfaddress/samples/seo/ which seems to be the
 smoothest one.

 If you are worried about fast clicking, have a look to see how an HTML
 site behaves with this - I guess you get half-assed page loading, etc. But
 people expect to wait a bit for something to load if they go back  forth,
 you just have to be prepared to interrupt what you are doing (I should
 probably take my own advice here and make sure my SWFAddress site behaves
 nicely)

 Hope this helps and if you come up with any interesting stuff, let us
 know!

 Glen


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




 --
 Omar M. Fouad - Adobe Flash™ Platform Developer
 www.omar-fouad.net
 Cellular: (+20) 1011.88.534
 Mail: m...@omar-fouad.net

 This e-mail and any attachment is for authorised use by the intended
 recipient(s) only. It may contain proprietary material, confidential
 information and/or be subject to legal privilege. It should not be copied,
 disclosed to, retained or used by, any other party. If you are not an
 intended recipient then please promptly delete this e-mail and any
 attachment and all copies and inform the sender. Thank you.




-- 
Omar M. Fouad - Adobe Flash™ Platform Developer
www.omar-fouad.net
Cellular: (+20) 1011.88.534
Mail: m...@omar-fouad.net

This e-mail and any attachment is for authorised use by the intended
recipient(s) only. It may contain proprietary material, confidential
information and/or be subject to legal privilege. It should not be copied,
disclosed to, retained or used by, any other party. If you are not an
intended recipient then please promptly delete this e-mail and any
attachment and all copies and inform the sender. Thank you.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Re: SWAddress logical workflow

2009-06-13 Thread Omar Fouad
Thanks Gerry this is exactly what i do. But as Matt says there is a
problem when i rapidily fire next and previous, things screw up.
Another thing, what if i have a section in my movie like a gallery,
and i need to add an additional parameter to the address like the
photo id to load the image, this is tricky.  i've been experiencing
too much problems.

On 6/13/09, Matt S. mattsp...@gmail.com wrote:
 Can you describe what the bugs are? SWFAddress can be tricky,
 especially with rapid-fire clicking of the browser previous/next
 buttons.

 .m


 I don't know if this is the right thing to do in this case. I just need
 some
 advice because things are too much buggy.

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


-- 
Sent from my mobile device

Omar M. Fouad - Adobe Flash™ Platform Developer
www.omar-fouad.net
Cellular: (+20) 1011.88.534
Mail: m...@omar-fouad.net

This e-mail and any attachment is for authorised use by the intended
recipient(s) only. It may contain proprietary material, confidential
information and/or be subject to legal privilege. It should not be
copied, disclosed to, retained or used by, any other party. If you are
not an intended recipient then please promptly delete this e-mail and
any attachment and all copies and inform the sender. Thank you.

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


Re: [Flashcoders] Re: SWAddress logical workflow

2009-06-13 Thread Gerry
Yeah, I understand. You'll need to figure out how to allow for extra  
params in the url.
My function with the switch conditional code could be replaced with  
code that handles

dynamic params.
ie. do something with the string that includes /sectionName and if  
there is extra params

 after /sectionName?img=  do something else.
I'm just spit balling but that might be what you have to do.
I don't think I've ever seen any tutorials on how anyone else has  
handled that.


-Gerry

On Jun 13, 2009, at 12:15 PM, Omar Fouad wrote:


Thanks Gerry this is exactly what i do. But as Matt says there is a
problem when i rapidily fire next and previous, things screw up.
Another thing, what if i have a section in my movie like a gallery,
and i need to add an additional parameter to the address like the
photo id to load the image, this is tricky.  i've been experiencing
too much problems.

On 6/13/09, Matt S. mattsp...@gmail.com wrote:

Can you describe what the bugs are? SWFAddress can be tricky,
especially with rapid-fire clicking of the browser previous/next
buttons.

.m


I don't know if this is the right thing to do in this case. I just  
need

some
advice because things are too much buggy.


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



--
Sent from my mobile device

Omar M. Fouad - Adobe Flash™ Platform Developer
www.omar-fouad.net
Cellular: (+20) 1011.88.534
Mail: m...@omar-fouad.net

This e-mail and any attachment is for authorised use by the intended
recipient(s) only. It may contain proprietary material, confidential
information and/or be subject to legal privilege. It should not be
copied, disclosed to, retained or used by, any other party. If you are
not an intended recipient then please promptly delete this e-mail and
any attachment and all copies and inform the sender. Thank you.

___
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] Re: SWAddress logical workflow

2009-06-13 Thread Omar Fouad
Well i can do that but i don't use that syntax. i instead do
/gallery/2. At the end i omit the first forward slash from the address
value string, i split it to get an array of parameters such as, in
this case, gallery and 2 which is the id of the photo to load.
The dilemma now is to sync all this together. I don't know if you
noticed but the address changing in the browser occurs after a second
and not immediately. Check www.fwaphoto.com play with it and check the
address behaviour after clicking. Today i discovered something
interesting. In the address, replace the date of a picture to any date
in the future like this www.fwaphoto.com/#/2009-6-20 and see what
happens to the address when it finds nothing. The date changes to
undefined! What the hell does this mean?

On 6/13/09, Gerry noentour...@gmail.com wrote:
 Yeah, I understand. You'll need to figure out how to allow for extra
 params in the url.
 My function with the switch conditional code could be replaced with
 code that handles
 dynamic params.
 ie. do something with the string that includes /sectionName and if
 there is extra params
   after /sectionName?img=  do something else.
 I'm just spit balling but that might be what you have to do.
 I don't think I've ever seen any tutorials on how anyone else has
 handled that.

 -Gerry

 On Jun 13, 2009, at 12:15 PM, Omar Fouad wrote:

 Thanks Gerry this is exactly what i do. But as Matt says there is a
 problem when i rapidily fire next and previous, things screw up.
 Another thing, what if i have a section in my movie like a gallery,
 and i need to add an additional parameter to the address like the
 photo id to load the image, this is tricky.  i've been experiencing
 too much problems.

 On 6/13/09, Matt S. mattsp...@gmail.com wrote:
 Can you describe what the bugs are? SWFAddress can be tricky,
 especially with rapid-fire clicking of the browser previous/next
 buttons.

 .m


 I don't know if this is the right thing to do in this case. I just
 need
 some
 advice because things are too much buggy.

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


 --
 Sent from my mobile device

 Omar M. Fouad - Adobe Flash™ Platform Developer
 www.omar-fouad.net
 Cellular: (+20) 1011.88.534
 Mail: m...@omar-fouad.net

 This e-mail and any attachment is for authorised use by the intended
 recipient(s) only. It may contain proprietary material, confidential
 information and/or be subject to legal privilege. It should not be
 copied, disclosed to, retained or used by, any other party. If you are
 not an intended recipient then please promptly delete this e-mail and
 any attachment and all copies and inform the sender. Thank you.

 ___
 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


-- 
Sent from my mobile device

Omar M. Fouad - Adobe Flash™ Platform Developer
www.omar-fouad.net
Cellular: (+20) 1011.88.534
Mail: m...@omar-fouad.net

This e-mail and any attachment is for authorised use by the intended
recipient(s) only. It may contain proprietary material, confidential
information and/or be subject to legal privilege. It should not be
copied, disclosed to, retained or used by, any other party. If you are
not an intended recipient then please promptly delete this e-mail and
any attachment and all copies and inform the sender. Thank you.

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


Re: [Flashcoders] Re: SWAddress logical workflow

2009-06-13 Thread Gerry
That's strange, you might be setting the value later in your sequence.  
I've never had this happen before.

Are you intending to change the title after the slide animation?
I call setTitle at the same time I call the function to switch sections.
On the undefined situation, you will probably have to write a  
conditional to handle undefined dates and/or

include code to not allow future dates.
-Gerry

On Jun 13, 2009, at 2:19 PM, Omar Fouad wrote:


Well i can do that but i don't use that syntax. i instead do
/gallery/2. At the end i omit the first forward slash from the address
value string, i split it to get an array of parameters such as, in
this case, gallery and 2 which is the id of the photo to load.
The dilemma now is to sync all this together. I don't know if you
noticed but the address changing in the browser occurs after a second
and not immediately. Check www.fwaphoto.com play with it and check the
address behaviour after clicking. Today i discovered something
interesting. In the address, replace the date of a picture to any date
in the future like this www.fwaphoto.com/#/2009-6-20 and see what
happens to the address when it finds nothing. The date changes to
undefined! What the hell does this mean?

On 6/13/09, Gerry noentour...@gmail.com wrote:

Yeah, I understand. You'll need to figure out how to allow for extra
params in the url.
My function with the switch conditional code could be replaced with
code that handles
dynamic params.
ie. do something with the string that includes /sectionName and if
there is extra params
 after /sectionName?img=  do something else.
I'm just spit balling but that might be what you have to do.
I don't think I've ever seen any tutorials on how anyone else has
handled that.

-Gerry

On Jun 13, 2009, at 12:15 PM, Omar Fouad wrote:


Thanks Gerry this is exactly what i do. But as Matt says there is a
problem when i rapidily fire next and previous, things screw up.
Another thing, what if i have a section in my movie like a gallery,
and i need to add an additional parameter to the address like the
photo id to load the image, this is tricky.  i've been experiencing
too much problems.

On 6/13/09, Matt S. mattsp...@gmail.com wrote:

Can you describe what the bugs are? SWFAddress can be tricky,
especially with rapid-fire clicking of the browser previous/next
buttons.

.m



I don't know if this is the right thing to do in this case. I just
need
some
advice because things are too much buggy.


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



--
Sent from my mobile device

Omar M. Fouad - Adobe Flash™ Platform Developer
www.omar-fouad.net
Cellular: (+20) 1011.88.534
Mail: m...@omar-fouad.net

This e-mail and any attachment is for authorised use by the intended
recipient(s) only. It may contain proprietary material, confidential
information and/or be subject to legal privilege. It should not be
copied, disclosed to, retained or used by, any other party. If you  
are
not an intended recipient then please promptly delete this e-mail  
and

any attachment and all copies and inform the sender. Thank you.

___
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



--
Sent from my mobile device

Omar M. Fouad - Adobe Flash™ Platform Developer
www.omar-fouad.net
Cellular: (+20) 1011.88.534
Mail: m...@omar-fouad.net

This e-mail and any attachment is for authorised use by the intended
recipient(s) only. It may contain proprietary material, confidential
information and/or be subject to legal privilege. It should not be
copied, disclosed to, retained or used by, any other party. If you are
not an intended recipient then please promptly delete this e-mail and
any attachment and all copies and inform the sender. Thank you.

___
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] Re: SWAddress logical workflow

2009-06-13 Thread Omar Fouad
Well i believe that group 94 are using a different technique to
implement SWFAddress dynamically. Ty also took care of fast
next-previous browsing. What do you think?

On 6/14/09, Gerry noentour...@gmail.com wrote:
 That's strange, you might be setting the value later in your sequence.
 I've never had this happen before.
 Are you intending to change the title after the slide animation?
 I call setTitle at the same time I call the function to switch sections.
 On the undefined situation, you will probably have to write a
 conditional to handle undefined dates and/or
 include code to not allow future dates.
 -Gerry

 On Jun 13, 2009, at 2:19 PM, Omar Fouad wrote:

 Well i can do that but i don't use that syntax. i instead do
 /gallery/2. At the end i omit the first forward slash from the address
 value string, i split it to get an array of parameters such as, in
 this case, gallery and 2 which is the id of the photo to load.
 The dilemma now is to sync all this together. I don't know if you
 noticed but the address changing in the browser occurs after a second
 and not immediately. Check www.fwaphoto.com play with it and check the
 address behaviour after clicking. Today i discovered something
 interesting. In the address, replace the date of a picture to any date
 in the future like this www.fwaphoto.com/#/2009-6-20 and see what
 happens to the address when it finds nothing. The date changes to
 undefined! What the hell does this mean?

 On 6/13/09, Gerry noentour...@gmail.com wrote:
 Yeah, I understand. You'll need to figure out how to allow for extra
 params in the url.
 My function with the switch conditional code could be replaced with
 code that handles
 dynamic params.
 ie. do something with the string that includes /sectionName and if
 there is extra params
  after /sectionName?img=  do something else.
 I'm just spit balling but that might be what you have to do.
 I don't think I've ever seen any tutorials on how anyone else has
 handled that.

 -Gerry

 On Jun 13, 2009, at 12:15 PM, Omar Fouad wrote:

 Thanks Gerry this is exactly what i do. But as Matt says there is a
 problem when i rapidily fire next and previous, things screw up.
 Another thing, what if i have a section in my movie like a gallery,
 and i need to add an additional parameter to the address like the
 photo id to load the image, this is tricky.  i've been experiencing
 too much problems.

 On 6/13/09, Matt S. mattsp...@gmail.com wrote:
 Can you describe what the bugs are? SWFAddress can be tricky,
 especially with rapid-fire clicking of the browser previous/next
 buttons.

 .m


 I don't know if this is the right thing to do in this case. I just
 need
 some
 advice because things are too much buggy.

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


 --
 Sent from my mobile device

 Omar M. Fouad - Adobe Flash™ Platform Developer
 www.omar-fouad.net
 Cellular: (+20) 1011.88.534
 Mail: m...@omar-fouad.net

 This e-mail and any attachment is for authorised use by the intended
 recipient(s) only. It may contain proprietary material, confidential
 information and/or be subject to legal privilege. It should not be
 copied, disclosed to, retained or used by, any other party. If you
 are
 not an intended recipient then please promptly delete this e-mail
 and
 any attachment and all copies and inform the sender. Thank you.

 ___
 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


 --
 Sent from my mobile device

 Omar M. Fouad - Adobe Flash™ Platform Developer
 www.omar-fouad.net
 Cellular: (+20) 1011.88.534
 Mail: m...@omar-fouad.net

 This e-mail and any attachment is for authorised use by the intended
 recipient(s) only. It may contain proprietary material, confidential
 information and/or be subject to legal privilege. It should not be
 copied, disclosed to, retained or used by, any other party. If you are
 not an intended recipient then please promptly delete this e-mail and
 any attachment and all copies and inform the sender. Thank you.

 ___
 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


-- 
Sent from my mobile device

Omar M. Fouad - Adobe Flash™ Platform Developer
www.omar-fouad.net
Cellular: (+20) 1011.88.534
Mail: m...@omar-fouad.net

This e-mail and any attachment is for authorised use by the intended
recipient(s) only. It may contain