-1

I am getting this loader beofre my flash application shows up , how to remove this ? I already have a preloader for my application , but still couldnt find why this one shows up , I want to remove this.

enter image description here

Jeffin
  • 1,099
  • 12
  • 23
  • Possible duplicate of [Custom Preloader in Flex 4?](http://stackoverflow.com/questions/1146314/custom-preloader-in-flex-4) – Kiran Shakya Nov 12 '16 at 06:55

1 Answers1

2

you have to extend SparkDownloadProgressBar from mx.preloaders.SparkDownloadProgressBar

then use the preloader property of the main application tag; for example:

<s:Application preloader=”com.riagora.loader.Preloader”>

take a look at Building a custom Flex preloader

payam_sbr
  • 1,428
  • 1
  • 15
  • 24