[flexcoders] auto update of flash

2006-10-10 Thread b0b0bb0b
I've used flex builder to create my first flex 2 site, and in the 
properties I've asked it to look for flash version 9 0 16. but when 
some people go to my site all they get is a grey screen.  I think its 
because they have flash version 9, but just not the new version as 
other friends that have gone to the site and it auto updates just 
fine. When the said people get grey screens and then they manually 
update from the macromedia site, my flex site works fine.

What do I need to do to make sure if a user doesn't have the most 
recent version of flash that the swf will redirect them and they will 
get an update.
is there a difference between firefox and IE in the way that it works?

Also the properties in flex builder only give room for 3 numbers and 
yet when you look at the version of flash it has 4? ie 9 - 0 - 16 - 0.

Thanks Kenneth.








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[flexcoders] Re: Lots of images and 403 errors

2006-09-26 Thread b0b0bb0b
I've just had recent problems with something that might be similar. 
I've been modifying the photo gallery example and I uploaded about 
1000 pictures and the majority of them work fine.
What happens when I try to dynamically load the images, if their is a 
few erroneous files then it appears to fail and the site doesn't load 
any more info until the loads time out (not sure what sort of error 
that gives). But due to the time that it takes to time out, all the 
rest of the correct images don't get loaded either.

The only way I found out this was if a particular image or thumbnail 
failed to load inside the flex app, then I tried to load it straight 
from the server, i.e. www.mywebsite.com/thumbImages/img_2005.jpg and 
also compared that to a picture that I knew was working in the flex 
app. The files on the server appeared to be identical (file size 
properties etc) to the files on my machine which worked fine. This 
was the first time I've tried such a site and it seems that the ftp 
up loader has incorrectly uploaded a bunch of images, no idea why?

worth a look.


--- In flexcoders@yahoogroups.com, David Harris [EMAIL PROTECTED] 
wrote:

 I'm not sure if this is a Flex issue or maybe my server set up...but
 if any of you have any ideas, I'm be glad to hear them!
 
 I have a Flex Movie that is loading a lot of images. (yes, a 
picture gallery)
 
 The Flex2 app hits ColdFusion and gets a query back with all the
 information images (JPG infact) and the loads them in to a mx:Tile
 
 The problem I am having is the some of the images are not working, 
and
 when I look at the IIS logs, I am seeing 403 errors.
 I am putting it down to the web server not being able to handle the
 amount of hits from the flex app.
 
 Anyone esle had issues like this? and if so, any ideas on how to 
over come them?
 
 Cheers







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Re: photo gallery

2006-09-25 Thread b0b0bb0b
Thanks for the help, I've found out what the problem was, and it 
wasn't a flex problem :) 
Somehow during the upload of my pictures, some of them do not appear 
to have been uploaded correctly. the properties and files size appear 
to be the same as on my local machine but they are not. 
So I just need to identify all of the pictures that have been 
uploaded incorrectly. (little bit unsure of best way to do this as 
I've uploaded about 1000!).

When I get some time going to try and write a loading bar for an 
image and if the data for the picture takes too long to load then 
stop it from loading so that the pictures that are correct can still 
load.
hopefully that way I'll be able to work out which pictures are at 
fault and replace them.

thanks. 



--- In flexcoders@yahoogroups.com, Bela Hajzer [EMAIL PROTECTED] 
wrote:

 
 
 --- In flexcoders@yahoogroups.com, b0b0bb0b ksutherland@ wrote:
 
  Cheers I had a look at SWFLoader, but it doesn't do anything
  differently. I use a Image tag and set the source of the image at
  run time. The actual source comes from an XML document which I use
  for searching. I start of with a large XML document that contains
  everything (this does not load any images), I then search that XML
  for keywords and similiar and create a new smaller XML document. 
This
  new XML documnet then creates the gallery, which gets loaded.
 
  When the app loads you get a loading bar, is there any way to get 
a
  loading bar for each image? this might help find out whats 
happening.
 
  Thanks again.
 
  --- In flexcoders@yahoogroups.com, Bela Hajzer Bela.Hajzer@
  wrote:
 
   --
  
   Hi,
  
   Looks like you've got some resource problem.
  
   My first guess is that you should load your jpeg dynamically 
using
   SWFLoader controll instead of loading all
  
   at once in the PhotoService as.
  
   I am going to give a try myself in a few days time.
  
   Bye Bela
  
 
 Hi again,
 
 May I suggest to monitor this image loading, just put the following 
into
 your ThumbnailView.mxml:
 
 * change=startTime(event)//put it into photoList, your
 HorizontalList
 * complete=endTime(event)   //put it into photoImage, your
 currently selected  image
 * mx:TextArea id=ta1/   //put it into e.x. your VBox, and 
the
 following into mx:Script/mx:Script
 *  private function startTime(e:Event):void {
 sTime = getTimer();
 }
 private function endTime(e:Event):void {
 var eTime:Number=getTimer();
 var totalTime:Number=eTime - sTime;
 ta1.text = totalTime:  + totalTime;
 totalTime=0;
 }
 
 So whenever you click any thumbnail you gonna get the elapsed time 
of
 the currently selected image's loading.
 
 Bottleneck can occur at different level, just try to isolate it.
 
 For the first time you get NaN in your ta1 TextArea, just ignore it.
 
 ps: In the Build and Deploy pdf you can find two chapters about
 optimization.
 
 Cheers Bela








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[flexcoders] Re: photo gallery

2006-09-22 Thread b0b0bb0b
Cheers I had a look at SWFLoader, but it doesn't do anything 
differently.  I use a Image tag and set the source of the image at 
run time. The actual source comes from an XML document which I use 
for searching. I start of with a large XML document that contains 
everything (this does not load any images), I then search that XML 
for keywords and similiar and create a new smaller XML document. This 
new XML documnet then creates the gallery, which gets loaded.

When the app loads you get a loading bar, is there any way to get a 
loading bar for each image? this might help find out whats happening.

Thanks again.

--- In flexcoders@yahoogroups.com, Bela Hajzer [EMAIL PROTECTED] 
wrote:

 --
 
 Hi,
 
 Looks like you've got some resource problem.
 
 My first guess is that you should load your jpeg dynamically using
 SWFLoader controll instead of loading all
 
 at once in the PhotoService as.
 
 I am going to give a try myself in a few days time.
 
 Bye Bela







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Re: photo gallery example

2006-09-22 Thread b0b0bb0b
I'll ceratinly check that but the actual XML which is used to 
generate the gallery is created on the client from the XML sent from 
the server. And as it works 100% of the time on my machine I would 
think this unlikely.  

Is there a call or method to confirm that the XML is valid, so that 
once its loaded I check to see if its a valid XML doc, if not i'll 
reload it before using it to create the new smaller XML on the client?

(I have checked that its valid before I posted it to the server)

My main XML file which gets loaded from server is over 200k at 
present so looking through it manually isn't really an option and as 
my gallery grows so will the file.

Thanks.


--- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote:

 Check to see if there are any funky characters in the XML file that 
you
 load?  It may be that it's having problems parsing the XML file
 depending on how the server sent it?
 
  
 
 Matt
 
  
 
 
 
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
 Behalf Of b0b0bb0b
 Sent: Wednesday, September 20, 2006 1:48 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] photo gallery example
 
  
 
 I've been looking at the photo gallery example from the adobe site, 
 and i've a problem when I place the swf file onto a web server.
 
 I've modified the code so that all the photos are loaded from a XML 
 file and this allows me to do a search, so that anyone entering the 
 site can load only a few photos at a time. Now everything works 
100% 
 of the time when I run it locally on my machine, but when I place 
the 
 swf file onto the server it works sometimes and not others.
 
 What happens (when its not working)is that once you do a search and 
 it goes to thumbnail view it will load 3-6 thumbnail images and 
then 
 stop. The message at the bottom of firefox says transfering data. 
The 
 site remains frozen as far as getting more data back. you can 
 naviagate around but you cant get any more pictures.
 
 this does not happen all the time, sometimes it works, sometimes it 
 doesn't! It does seem to work more often in firefox than in IE?? Is 
 there any way to debug this as it works fine on my machine.
 
 I've tried service capture but it only seems to list the calls 
going 
 out when the site works, as I can see each call for each thumbnail 
or 
 picture. But when not working and it loads say 3 thumbnails then 
 stops, service capture doesn't list any calls, not even for the 3 
 thumbnails that have come back. I've tried deleting all history and 
 cache but makes no difference.
 
 Sorry for being long winded here, but hopefully I've given enough 
 info for someone to help. 
 Thanks.








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] photo gallery

2006-09-21 Thread b0b0bb0b
hi folks, I've not had any response to my previous question, and the 
problem is baffling me. 

I have a photo gallery (modified from the flex 2 examples) which works 
100% when its run locally on my machine. when I place the swf into a 
webpage it doesn't always work. It might say download 3 images then 
just stop, with tranferring data at the bottom left of firefox. no 
more data will be transfered at all when this happens.
Can anyone explain why this might be?
Any tools that I could use to find out what the problem is?


if someone has an idea but needs more info from me, then just ask.

cheers.






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[flexcoders] photo gallery example

2006-09-20 Thread b0b0bb0b
I've been looking at the photo gallery example from the adobe site, 
and i've a problem when I place the swf file onto a web server.

I've modified the code so that all the photos are loaded from a XML 
file and this allows me to do a search, so that anyone entering the 
site can load only a few photos at a time. Now everything works 100% 
of the time when I run it locally on my machine, but when I place the 
swf file onto the server it works sometimes and not others.

What happens (when its not working)is that once you do a search and 
it goes to thumbnail view it will load 3-6 thumbnail images and then 
stop. The message at the bottom of firefox says transfering data. The 
site remains frozen as far as getting more data back. you can 
naviagate around but you cant get any more pictures.

this does not happen all the time, sometimes it works, sometimes it 
doesn't! It does seem to work more often in firefox than in IE?? Is 
there any way to debug this as it works fine on my machine.

I've tried service capture but it only seems to list the calls going 
out when the site works, as I can see each call for each thumbnail or 
picture. But when not working and it loads say 3 thumbnails then 
stops, service capture doesn't list any calls, not even for the 3 
thumbnails that have come back. I've tried deleting all history and 
cache but makes no difference.

Sorry for being long winded here, but hopefully I've given enough 
info for someone to help. 
Thanks.






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[flexcoders] Re: tabbing in flex

2006-07-25 Thread b0b0bb0b
well there are two things, one is a controlBar with buttons in it, 
and when tabbed the first button will be highlighted then it will 
just move onto the next text box in the VBox rather than the other 
buttons in the controlBar. I haven't implented the below, so I was 
just using the default settings.  I then tried telling flex to make 
them all true but the program tabbed in the same way.


The other custom component is a mxml file that contains a dateField 
and a text box. this get skiped altoghter when tabbing.

thanks





--- In flexcoders@yahoogroups.com, JesterXL [EMAIL PROTECTED] wrote:

 Does it extend UIComponent (or a sub-class)?  Does it implment:
 
 tabChildren = false;
 tabEnabled = true;
 focusEnabled = true;
 
 ???
 
 - Original Message - 
 From: b0b0bb0b [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Friday, July 21, 2006 10:04 AM
 Subject: [flexcoders] tabbing in flex
 
 
 if I have a Vbox with say 10 items in it. from buttons to text 
boxes, 
 as well as a custom component which I've extended. then when the 
app 
 loads I tab my way through the app which works fine until it comes 
to 
 the custom component.  it has a tabIndex like the rest of the 
buttons 
 and text boxes, but it never recieves focus if you tab. the focus 
moves 
 straight to the next non-custom component.
 Any ideas how to get around this.
 cheers. I'm using flex 1.5
 
 
 
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com 
 Yahoo! Groups Links








 Yahoo! Groups Sponsor ~-- 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/7EuRwD/fOaOAA/yQLSAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Re: Flex work in the UK

2006-07-21 Thread b0b0bb0b
if you dont mind working in scotland, then company I'm working for 
are looking for more people.
check out http://www.inps.co.uk look under the dundee section.
if your interested send your CV of to [EMAIL PROTECTED]
you'll have to know a bit about java as well. Most of the guys here 
are doing both java and flex. mainly flex though.
 


--- In flexcoders@yahoogroups.com, jamiebadman [EMAIL PROTECTED] 
wrote:

 Hi,
 
 I've been working with Flex application development for a good 
while 
 now and am looking for a new role. Can anyone recommend either 
 companies that might be seeking Flex app designers/developers or 
 recruitment agencies that are well placed for such roles, in the 
UK ?
 
 Apologies if this post is inappropriate but it seems to be the 
largest 
 group of 'FlexHeads' on the internet and I've been hanging around 
here 
 for a while!
 
 Thanks in advance (or apologies if required!),
 
 Jamie.








 Yahoo! Groups Sponsor ~-- 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] tabbing in flex

2006-07-21 Thread b0b0bb0b
if I have a Vbox with say 10 items in it. from buttons to text boxes, 
as well as a custom component which I've extended. then when the app 
loads I tab my way through the app which works fine until it comes to 
the custom component.  it has a tabIndex like the rest of the buttons 
and text boxes, but it never recieves focus if you tab. the focus moves 
straight to the next non-custom component.
Any ideas how to get around this.
cheers. I'm using flex 1.5






 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/