[flexcoders] Preloader

2010-02-03 Thread criptopus
I would like to use the Application default preloader (gray box with rounded 
corners with a loading bar) for my modules, does anybody know how to refrence 
it?

- Stephen



Re: [flexcoders] Preloader

2010-02-03 Thread Alex Harui
Modules are not loaded on the display list so they won’t show a preloader.  
Better option is to hook up mx.controls.ProgressBar to the IModuleInfo events.  
 You can skin it to look like the other progress bar.


On 2/3/10 11:56 AM, criptopus sd_br...@ntlworld.com wrote:






I would like to use the Application default preloader (gray box with rounded 
corners with a loading bar) for my modules, does anybody know how to refrence 
it?

- Stephen






--
Alex Harui
Flex SDK Team
Adobe System, Inc.
http://blogs.adobe.com/aharui


[flexcoders] Preloader in a big shared library, bad idea?

2008-08-22 Thread Baz
Hi,

I have a Flex Library Project that is the foundation for all other flex
projects in our department. It includes complex mxml components, themes,
fonts, images, assets, etc. - heavy stuff. I am now working on a custom
preloader that I would like all the applications to share and use. The
question is, should I create separate Flex Library Project just for the
preloader to keep the size at an absolute minimum, or is flex capable of
loading only the preloader bits during preloading if I include it in my big
fat library?

Thanks,
Baz


Re: [flexcoders] Preloader in a big shared library, bad idea?

2008-08-22 Thread Doug McCune
Only what you use in your app will be linked into the SWF, so if the
preloader is all that you use then none of the other bloat will make it into
the SWF file. So your library SWC might be 5 megs, but if all you use is the
tiny preloader then your swf file won't be big... well, unless you think all
Flex swfs are big... :)

Doug

On Fri, Aug 22, 2008 at 1:57 PM, Baz [EMAIL PROTECTED] wrote:

   Hi,

 I have a Flex Library Project that is the foundation for all other flex
 projects in our department. It includes complex mxml components, themes,
 fonts, images, assets, etc. - heavy stuff. I am now working on a custom
 preloader that I would like all the applications to share and use. The
 question is, should I create separate Flex Library Project just for the
 preloader to keep the size at an absolute minimum, or is flex capable of
 loading only the preloader bits during preloading if I include it in my big
 fat library?

 Thanks,
 Baz



  



Re: [flexcoders] Preloader in a big shared library, bad idea?

2008-08-22 Thread Baz
Thanks Doug,

Lets say that a new application links to my 5mb library and at one point or
another it ends up using 3mb worth of components, including the tiny
preloader. At the time of preloading, does it only load the 5kb needed to
preload, even though later on it needs 3mb? Or does it load the whole 3mb,
then run the preloader? If it is the latter, then I clearly need a separate
preloader library because it doesn't make sense to load 3mb to then run a
loader.

Cheers,
Baz



On Fri, Aug 22, 2008 at 2:13 PM, Doug McCune [EMAIL PROTECTED] wrote:

   Only what you use in your app will be linked into the SWF, so if the
 preloader is all that you use then none of the other bloat will make it into
 the SWF file. So your library SWC might be 5 megs, but if all you use is the
 tiny preloader then your swf file won't be big... well, unless you think all
 Flex swfs are big... :)

 Doug


 On Fri, Aug 22, 2008 at 1:57 PM, Baz [EMAIL PROTECTED] wrote:

   Hi,

 I have a Flex Library Project that is the foundation for all other flex
 projects in our department. It includes complex mxml components, themes,
 fonts, images, assets, etc. - heavy stuff. I am now working on a custom
 preloader that I would like all the applications to share and use. The
 question is, should I create separate Flex Library Project just for the
 preloader to keep the size at an absolute minimum, or is flex capable of
 loading only the preloader bits during preloading if I include it in my big
 fat library?

 Thanks,
 Baz




  



Re: [flexcoders] Preloader in a big shared library, bad idea?

2008-08-22 Thread Doug McCune
aha, I see. I think you should be good to go. As far as I know, the
preloader will get loader first and that will get added to the stage and run
while the rest of the SWF loads. Just make sure you don't use any huge
classes within your Preloader (ie don't use UIComponent or any Flex controls
in the preloader).

Doug

On Fri, Aug 22, 2008 at 2:53 PM, Baz [EMAIL PROTECTED] wrote:

   Thanks Doug,

 Lets say that a new application links to my 5mb library and at one point or
 another it ends up using 3mb worth of components, including the tiny
 preloader. At the time of preloading, does it only load the 5kb needed to
 preload, even though later on it needs 3mb? Or does it load the whole 3mb,
 then run the preloader? If it is the latter, then I clearly need a separate
 preloader library because it doesn't make sense to load 3mb to then run a
 loader.

 Cheers,
 Baz



 On Fri, Aug 22, 2008 at 2:13 PM, Doug McCune [EMAIL PROTECTED] wrote:

   Only what you use in your app will be linked into the SWF, so if the
 preloader is all that you use then none of the other bloat will make it into
 the SWF file. So your library SWC might be 5 megs, but if all you use is the
 tiny preloader then your swf file won't be big... well, unless you think all
 Flex swfs are big... :)

 Doug


 On Fri, Aug 22, 2008 at 1:57 PM, Baz [EMAIL PROTECTED] wrote:

   Hi,

 I have a Flex Library Project that is the foundation for all other flex
 projects in our department. It includes complex mxml components, themes,
 fonts, images, assets, etc. - heavy stuff. I am now working on a custom
 preloader that I would like all the applications to share and use. The
 question is, should I create separate Flex Library Project just for the
 preloader to keep the size at an absolute minimum, or is flex capable of
 loading only the preloader bits during preloading if I include it in my big
 fat library?

 Thanks,
 Baz





  



[flexcoders] preloader customization (great docs)

2008-06-04 Thread nihilismmachine
Whoever sent me the link for the preloader docs, awsome. One question,  
no what type of preloader I use, it says downloading, then  
initaliazting, then the progress bar only gets to about 65% and then  
my site loads. why is that?




// code

package com.preloader {

import mx.preloaders.*;
import flash.events.ProgressEvent;

public class DownloadProgressBarSubClassMin extends  
DownloadProgressBar {


public function DownloadProgressBarSubClassMin() {
super();
// Set the download label.
downloadingLabel=Downloading Portfolio...
// Set the initialization label.
initializingLabel=Initializing Portfolio...
// Set the minimum display time to 2.5 seconds.
MINIMUM_DISPLAY_TIME=2500;
}

// Override to return true so progress bar appears
// during initialization.
override protected function  
showDisplayForInit(elapsedTime:int, count:int):Boolean {

return true;
}

// Override to return true so progress bar appears during  
download.
override protected function  
showDisplayForDownloading(elapsedTime:int,  
event:ProgressEvent):Boolean {

return true;
}
}

}



[flexcoders] Preloader - only shows after app has loaded

2008-01-21 Thread polestar11
Hi 

I have an app that's approx. 2MB big  was using the default Flex
preloader, which has suddenly stopped working.

I have confirmed this by throttling my app with Charles. While my app
loads, there is a blank screen. Once the swf has loaded, the preloader
displays for a short few seconds  then my app displays.

I made a custom preloader, hooking into the various events. This had
exactly the same effect. It only displayed after the swf had loaded.

I am using Flex 3 Beta 3.

Cheers
Tracy





Re: [flexcoders] Preloader - only shows after app has loaded

2008-01-21 Thread Tom Chiverton
On Monday 21 Jan 2008, polestar11 wrote:
 preloader, which has suddenly stopped working.

What had you just changed ? Roll back in your version control and trya some 
older versions.
Does clearing the browser cache help at all ?

-- 
Tom Chiverton
Helping to seamlessly innovate unique customers
on: http://thefalken.livejournal.com



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.


--
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] preloader

2007-04-10 Thread Gautam

Hi,

I would like to change simple attributes (color, font, layout, size etc) of
an Application Preloader.
Can i do this by changing the System Preloader itself, rather than creating
a Custom Preloader Class?

I have gone through the below url, but is there a simple way of changing the
preloader...
http://www.onflex.org/ted/2006/07/flex-2-preloaders-swf-png-gif-examples.php

Thanks  Regards,
Gautam.


Re: [flexcoders] preloader

2007-04-10 Thread Igor Costa

Gautam using the barColor, or extending the preloaderClass you can do that.

Only extending your component.

here's has a example of that

http://www.igorcosta.org/?p=40

regards.

On 10 Apr 2007 05:41:57 -0700, Gautam [EMAIL PROTECTED] wrote:


  Hi,

I would like to change simple attributes (color, font, layout, size etc)
of an Application Preloader.
Can i do this by changing the System Preloader itself, rather than
creating a Custom Preloader Class?

I have gone through the below url, but is there a simple way of changing
the preloader...
http://www.onflex.org/ted/2006/07/flex-2-preloaders-swf-png-gif-examples.php


Thanks  Regards,
Gautam.
 





--

Igor Costa
www.igorcosta.org
www.igorcosta.com
skype: igorpcosta


[flexcoders] preloader or viewstate while charts initiailize

2007-02-16 Thread Grant Davies
Hi guys,
 
I need to display something while my charts are loading in a dashboard
style interface where different things are initializing at different
times, I wondered how people where showing this busy state, use a
viewstate to switch between the charrt and another state with the
animation, is there something built into the graph ?  In flash I would
have overlayed an invisible button to act as a modal with an animation
in the middle..
 
cheers
Grant
 
 
...
 b l u e t u b e i n t e r a c t i v e.
.: grant davies
.: 404.428.6839 (c)
.: 708-983-1577 (F)
 [EMAIL PROTECTED]
 http://www.bluetube.com/bti http://www.bluetube.com/bti 
 A Tribal Chicken Designs Affiliate http://www.tribalchicken.com/ 

 
attachment: small.jpg


RE: [flexcoders] preloader or viewstate while charts initiailize

2007-02-16 Thread Dimitrios Gianninas
I've created a little StatusWindow component (that is modal) that I use to 
relay any kind of message to a user. So it basically appears while a remote 
operation is occuring, but I guess u can use it whenever u want. So u can do 
similar.

Dimitrios Gianninas
Optimal Payments Inc.



-Original Message-
From: flexcoders@yahoogroups.com on behalf of Grant Davies
Sent: Fri 2/16/2007 5:02 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] preloader or viewstate while charts initiailize
 
Hi guys,
 
I need to display something while my charts are loading in a dashboard
style interface where different things are initializing at different
times, I wondered how people where showing this busy state, use a
viewstate to switch between the charrt and another state with the
animation, is there something built into the graph ?  In flash I would
have overlayed an invisible button to act as a modal with an animation
in the middle..
 
cheers
Grant
 
 
...
 b l u e t u b e i n t e r a c t i v e.
.: grant davies
.: 404.428.6839 (c)
.: 708-983-1577 (F)
 [EMAIL PROTECTED]
 http://www.bluetube.com/bti http://www.bluetube.com/bti 
 A Tribal Chicken Designs Affiliate http://www.tribalchicken.com/ 

 

-- 
WARNING
---
This electronic message and its attachments may contain confidential, 
proprietary or legally privileged information, which is solely for the use of 
the intended recipient.  No privilege or other rights are waived by any 
unintended transmission or unauthorized retransmission of this message.  If you 
are not the intended recipient of this message, or if you have received it in 
error, you should immediately stop reading this message and delete it and all 
attachments from your system.  The reading, distribution, copying or other use 
of this message or its attachments by unintended recipients is unauthorized and 
may be unlawful.  If you have received this e-mail in error, please notify the 
sender.

AVIS IMPORTANT
--
Ce message électronique et ses pièces jointes peuvent contenir des 
renseignements confidentiels, exclusifs ou légalement privilégiés destinés au 
seul usage du destinataire visé.  L'expéditeur original ne renonce à aucun 
privilège ou à aucun autre droit si le présent message a été transmis 
involontairement ou s'il est retransmis sans son autorisation.  Si vous n'êtes 
pas le destinataire visé du présent message ou si vous l'avez reçu par erreur, 
veuillez cesser immédiatement de le lire et le supprimer, ainsi que toutes ses 
pièces jointes, de votre système.  La lecture, la distribution, la copie ou 
tout autre usage du présent message ou de ses pièces jointes par des personnes 
autres que le destinataire visé ne sont pas autorisés et pourraient être 
illégaux.  Si vous avez reçu ce courrier électronique par erreur, veuillez en 
aviser l'expéditeur.

winmail.dat

[flexcoders] Preloader for dataGrid

2007-01-04 Thread {reduxdj}
I want to use a preloader, very similar to the datagrid components that 
are used on Adobe's site.   Is there a default loader for a datagrid 
like the one with the little spinning circle?

Thanks,
Patrick



[flexcoders] preloader bar becomes stuck at times

2006-10-03 Thread Dan Rossi
Ive recreated a thread because mine got hijacked this is crap.

Here is a link to the screenshot of how it looks

http://www.electroteque.org/flex.png

see below:

Hi there, each time i make a change to my flex app, the default progress
bar becomes stuck and doesnt finish loading therefore the applicarton
wont load, it takes up to 12 refreshes to actually load properly.

It also seems that upon each page reload the progress bar will flash
briefly halfway even though the movie is loaded ! that is with pragma
cache enabled or even disabled ! Whats the go here ?

let me know thanks.

Dan


--
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/
 





RE: [flexcoders] preloader bar becomes stuck at times

2006-10-03 Thread Matt Chotin












Can you expose the SWF on your web server
so we can try loading it ourselves?











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dan Rossi
Sent: Tuesday, October 03, 2006
8:00 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] preloader
bar becomes stuck at times











Ive
recreated a thread because mine got hijacked this is crap.

Here is a link to the screenshot of how it looks

http://www.electroteque.org/flex.png

see below:

Hi there, each time i make a change to my flex app, the default progress
bar becomes stuck and doesnt finish loading therefore the applicarton
wont load, it takes up to 12 refreshes to actually load properly.

It also seems that upon each page reload the progress bar will flash
briefly halfway even though the movie is loaded ! that is with pragma
cache enabled or even disabled ! Whats the go here ?

let me know thanks.

Dan






__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






[flexcoders] preloader

2006-08-20 Thread erixuss
Hello flexcoders,

  Does anybody know how to change preloader and background (when preloader is 
running). I would like to change colors (the blue is not my favourite) and 
label (for
  example not initializing but something else).

  Can anyone help me?

-- 
Best regards,
 erixuss  mailto:[EMAIL PROTECTED]



--
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] preloader custmization

2006-06-22 Thread Rajni
How to customize preloader in flex?

-- 
Sent using Laszlo Mail. Try it yourself.
http://www.laszlomail.com



 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/
 





RE: [flexcoders] preloader custmization

2006-06-22 Thread Jason Szeto










For Flex 1.5, download the Flex manual
here: http://download.macromedia.com/pub/documentation/en/flex/15/flex_dev_apps.pdf



For Flex 2.0 download the Flex manual
here: http://www.macromedia.com/go/flex2_devapps_pdf



Look up the DownloadProgressBar in both.
It describes how to customize the behavior. 



Jason











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Rajni
Sent: Thursday, June 22, 2006 2:21
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] preloader
custmization











How to customize preloader in flex?

-- 
Sent using Laszlo Mail. Try it yourself.
http://www.laszlomail.com






__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






[flexcoders] Preloader which show progress during initialization (Flex 1.5)

2005-11-28 Thread Eric Raymond
Is there a way to create a custom preloader which updates progress
incrementally during initializtion as well as download?

The default preloader does exactly this.  Is the source available?





 Yahoo! Groups Sponsor ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/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/
 




Re: [flexcoders] Preloader which show progress during initialization (Flex 1.5)

2005-11-28 Thread JesterXL
It's actually an API  Property of the Application tag.  Look in the 
Developing Flex Applications docs for using a custom progress bar.

- Original Message - 
From: Eric Raymond [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Monday, November 28, 2005 8:45 PM
Subject: [flexcoders] Preloader which show progress during initialization 
(Flex 1.5)


Is there a way to create a custom preloader which updates progress
incrementally during initializtion as well as download?

The default preloader does exactly this.  Is the source available?






--
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 ~-- 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/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/