Is there any component like percentage indicator not progress bar in Flex ?
Hi All,
I have to display a percentage value in a graphical way.( for example say 75% , a tube similar to progress bar which has a fill up to 75 % )
Is there any such component in flex or can I use progress bar ? please share your thoughts.
Thanks,
Tc.
You want to use a determinate ProgressBar with mode set to manual:
<mx:ProgressBar id="progressBar" minimum="0" maximum="100" mode="manual"
label="0%" labelPlacement="bottom">
</mx:ProgressBar
Then use setProgress( %, 100 ) to set the percentage:
// set the progress to 10 of 100 (10%)
progressBar.setProgress( 10, 100 );
Let me know if that does the trick.
Ben Edwards
Similar Messages
-
Is there any component like the "Enhanced Gird View" of XMLSPY?
Hi!
I want to cusomize a XML editor.
I am looking for any Java based component like the "Enhanced Gird View" of XMLSPY.
http://www.xmlspy.com/features_views.html
If you know any component like it, please tell me.
Thank you!JTable?
[http://java.sun.com/docs/books/tutorial/uiswing/components/table.html] -
Is there any component like Panel Accordian but vertical
Hi,
Can I create panel accordian vertically or different tabs in single show detail component of panel accordian ?
regards,
devangHi,
accordian is with horizontal headers only. You can have a paneltab component as a child of an accordian.
Frank -
Is There Any Component Similar To JFileChooser To Save Information In File
Hi All,
I have an application in JSP where I need to save the some information from my jsp page into a file.Like JFileChooser opens the required files, is there any component similar to JFileChooser to "save" the information into a file???
Thanks In Advance,
Anupama MThat's easy :) You can write it yourself.
Imagine you've a List<Dto> where each DTO represents one row. Create a StringBuilder (or StringBuffer if you're still not at Java 1.5) and append each row value to it. Eventually add separators (comma, semicolon, etc) to it. After each row, eventually add a newline. On the end, stream the contents of the StringBuilder to the HttpServletResponse#getOutputStream(). Don't forget to set the headers accordingly. -
Is there any component in flex to show/edit digital maps, lattitude, longitude etc?
If I do this then I will have my video player in fullscreen disappear for a moment and then reappear out of fullscreen, and I want it not to disappear, but to just jump to the other state fully resized and repositioned with no glitching in between states.
Than you will need to implement your own solution which meets your specific design goals. That's the nature of the beast my friend.
As far as I know dynimic skin parts have another meaning - creating more than one instance at runtime. Also I've read just now (again) partAdded and partRemoved are called on component initialization and skin change. So basicly if I change the skin, it makes sense to remove the eventListeners from the old skin parts. But still, I've read on many places that if an object has event listeners attached to it it will Not be GC unless they are weak, so it will be stuck in memory forever.
So looking at the VideoPlayer and it's skin parts, I'm not seeing any event listener being removed when I remove the instance I have of the VideoPlayer. Why is that? Why the component does not remove it's skin parts event listeners?
Are you changing skins? If so, I bet the parts would be removed as expected. The partRemoved method is not being called because it's not needed. If you remove the parent component, than any reference encapuslated within that component are removed as well.Fire up the profiler if you don't believe me.
I'm interested in the skin parts and states relation. With includeIn and excludeFrom you define in which states the component is added to or removed from as a child (element). So If I have a skin part which is required=true and I have 2 states from one of which it is excluded... whouldn't that result in a runtime error since the part is not there but it is required?
I'm pretty sure that it only checks if the instance exists, and does not care if it has been created and added to the display list. I do not really know for certain though. This could easily be answered with a simple test. -
Is there any app like S health in samsung s4???? please mention name
is there any app like S health in samsung s4???? please mention name
Add a listener for EXITING event. AIR dispatches EXITING event on iOS when application is about to be exited. Your application can execute for around 5 seconds after receiving this event.
NativeApplication.nativeApplication.addEventListener(Event.EXITING, onExit);
function onExit(e:Event):void
// code to be executed upon exit.
Please note that EXITING event is not dispatch if application is in suspended in background.
-Neha -
Is there any way to watch vidoes not avaible in your country on youtube using an addon??
like I said before,
is there any way to watch vidoes not avaible in your country on youtube using an addon?What do you mean nothing.
If it shows $0.00 then that's nothing, that's zero. If it shows truely nothing then you are not logging in with an account that had store credit. Or not logging in at all.
Click on your name so the triangle appears, then click on Account for more details. -
Is there any way to automatically update not on cellular
Is there any way to automatically update not on cellular but on wifi like on android? I am wanting to leave update automatically on but not cellular for updates but I need cellular for iTunes match. It seams that there is no choice for wifi when available. I went through a ton of data with app updates on cellular.
Hi All updates since ios 7 can be done over Wifi I have not used a pc for updates or anything for over a year Go to settings turn cellular data off that will restrict all data to Wifi Cheers Brian
-
lost all my notes in my iphone 5s and so i went to my ipad and pulled the notes up and seen them for a Sec then they were gone. Please is there any way to get my notes back?
Do you have a back up?
If not you're into using file recovery software like File Salvage - you can download a free trial and it will scan the disk for you and tell you with might be recoverable. Actual recovery will require that you purchase the app. There may be many files with the same or similar names. Always recover the largest file size.
There are other such apps. Search on Macupdate or the App Store -
Today I deleted an email services I no longer need. Now when I go to the notes app I no longer have any notes. Is there any way to get my notes back. I have the first iPad running iOS 5.1.1
Ah, well, then the notes are probably gone. Did you save any of the email from that account on your computer? The notes might be there if you did.
-
Is there any way to recover a note that disappeared on my iPhone and iPad?
Is there any way to recover a note that disappeared from my iPad and phone?
You can restore from your iTune or iCloud backup if you have one.
-
How to generate sitemap for SiteStudio sites. Is there any component avai
How to generate sitemap for SiteStudio sites. Is there any component available?
We want to create xml having list of all site URLS for SEO purpose.
Is there any way to achieve this ?
ThanksSiteStudio comes with SiteMap fragments. Change the page template so it is a document type XML, add the fragment and you're practiacally done.
-
Is there any tool like hibernate/ibatis for abap
hi all,
is there any tool like hibernate/ibatis for abap. I want to exactly know whthr there is any object relational mapping tool for abap development.
is object based services a object relational mapping tool ?
thanks in advance
bye
babuNo. Many people use Jasper Reports (http://jasperreports.sourceforge.net/) for their reporting. It's free and opensource. You define your reports in xml and you can create text, html and pdf reports.
You can also try to use html for reporting. I've used it on a project with pretty good results. The benefit is that you probably don't need to learn a new tool/language.
We generated the html using velocity, layout was done using css. You can remove the default headers, footer and page margins added by internet explorer by setting some registry keys:
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\PageSetup]
"header"=""
"footer"=""
"margin_bottom"="0.1"
"margin_left"="0.10"
"margin_right"="0.10"
"margin_top"="0.1" -
Is there any app like MathCad in apple?
i want to make calculations like integrals. is there any program like mathcad that excists in microsoft?
Good place to look for software:
http://www.macupdate.com/
And for free alternatives to some popular software packages:
http://alternativeto.net/
(If you see an ad there for something called MacKeeper, ignore it and on no account install it - it is malware.) -
Is there any app like Nokia Ovi Suite for Apple5.
Is there any app like Nokia Ovi Suite for Apple5.
I think you're just as capable of doing an internet search as we are. Try it!
http://lmgtfy.com/?q=Is+there+any+app+like+Nokia+Ovi+Suite+for+Apple5
Maybe you are looking for
-
Datasource not created - 10.1.3 dev preview
Hi, I have a database connection in my Connections panel which doesn't get deployed to the test environment when I run/debug my application. When i use the same setup under 10.1.2 I can expand the application server connection I created for the test
-
Production Hours of a workcenter for a particular date
Greetings, Is there any reports for getting the production hours of a workcenter on a particular date?I would like to get the schedule summary.The output must contain date and hours. Helpful answers will be rewarded. Regards,
-
My PowerMac G5 gets through to the loading screen. At this point the loading bar moves extremely slow. Once it reaches the end nothing happens, like it's caught in some loop. My question is, how do I fix my computer to load up to the login screen? Ti
-
Blank Layer in After Effects CS4
I use to remember how to create a blank layer in after effects, then add a blur effect to the layer and make a oval. I am obviously doing something wrong because what I am doing is not working. I am trying to blur a moving object in adobe premier usi
-
"3 of 5 computers authorized" Argh! No, there isn't!
Problem with my iTunes. It says I have 3 of 5 computers authorized which is NOT right. I know why, though. I've had 2 hard drives fail on this computer. Therefore, I had NO warning or chance to deactivate the computer before the hard drive failing. W