rating component in flex air app - actionscript-3

I am developing a Flex app and I need to use a rating component.
After a wile of searching on the internet I did not found any already made component. I found one but it can't be used in flex 4.0.
As rating component I refere to something like this:
Link1
Before to start developing one I want to ask if there is some open source component already developed ?

I used that one http://www.tink.ws/blog/ratingsbar/ and I'm satisfied with it.

Related

Create IOS datepicker like select element in Ionic

Is there a way to create an ios datepicker/timepicker like styled custom select for ionic apps?
For example, I want to create a custom select as the following image
This is kind of late to the party, but maybe this will help: https://github.com/mmnaseri/proton.multi-list-picker
This is an Angular 1.x component with no dependencies on any other frameworks that provides an easy solution for creating iOS-style select views.
For instance, this is the sort of select that you can create with this component:
And this is another example:
If you set the attachment value to bottom it will be exactly like the iOS select component looks like, with a fixed bottom modal attachment.
I'm not sure but for now this not possible with Ionic. There options like this ionic-datepicker, but this isn't native, just a library.
There are various plugins available out there. You can find one here
Also you can use HTML Select/Option list to show up a native alike control that will display a list of single select-able items. Select/Option tag invokes OS specific native selector.
Have a look at it here. That demo might help you.

How to create a "Photo Gallery" in windows phone 8.1

I'm building one app and I want to make a gallery in my app.
What I did was create a GridView binding all my photos.
But what I really want to do is, create a gallery the same way of Windows Phone.
Well Microsoft did create a control for this! It's called the MediaViewer Class, but it's a difficult one to use. It's however the closest representation of the actual control used in the WP camera app! It was first featured in the Basic Lens app sample and provided as a nuget package PhoneMediaViewer
Hope these code examples help

Flex dashboard component

I are looking to use a dashboard component in flex/as3 product.
So far I found this :http://www.flexicious.com/Home/Dashboard
I would like to know if anyone used such a product and can provide input on it.
Our base (flexible) requirements are:
Ability to move , resize , show - hide arrange windows inside the dashboard, something similar to flash builder editor.
Thanks!!
The dashboard application is inspired from the sample Dashboard application developed by the Adobe Flex community.
I suggest you to get the source of Adobe Dashboard Flex project and run it on your Flash builder.
It's more pretty and clean than any other imitation.
1- go to this link to download the project source as FXP (flash pro project) :
http://download.macromedia.com/pub/developer/flex/Dashboard-Part4-End.zip
2- Unzip the "Dashboard-Part4-End.fxp" file.
3- import it on your FB like this: File > Import Flash Builder Project > File and browse to your "Dashboard-Part4-End.fxp" file.
4- That's all, Run the project and look how it's pretty and clean : you can resize, move and reorder widgets with animation (see attached screenshot).

grouped tab navigator as3

hi is it possible to create/ extend from tab navigator or another component to create a tab navigator where tabs are within tabs. I.e grouped. I have been trying to find some info on this but there is very little available. I have attempted to do something as follows but I cannot successfully get it to work. Any expansion or information on this would be great
Thanks
You can try Flex MenuBar with custom skin for it. Or, maybe it will be easier, you can try to write own component based on Spark ButtonBar (or TabBar) with List as suggested in Flex: Skinning menuBar - is it possible?

using PopUpManager in a Flex 4.5 Mobile App

This is more of a best practices question rater than something technical.
I'm working on a mobile app using the Flex 4.5 SDK and I'm trying to figure out the best way to handle notification windows. In most cases these windows will be alerting the user to when something goes wrong. Ex: bad login, no data, cannot resolve server.
I'm using a singleton design pattern, I have a Requests class that handles server calls. Most popups will be originating from this class (IOErrorEvents from my loader being used to access the API). Since this class is a singleton and is used from all Views inside the app it is not aware of applications current view. I'm also not sure having this class keep track of the current view and having it push popups on top of it would be best practice.
I'm hoping that I can use PopUpManager to keep track of where to add popups and what popups are currently on the stage. Though all examples I've seen online about this show static Components being used in a views Declarations tag.
I'm really just looking for any examples or input on how you would solve this problem. Any help would be greatly appreciated!
I had the same problem, and sorted it by making an Alert popup component that you can call from anywhere in the code base, and it will pop up in the currently active window. It also has an always visible scrollbar text area which is handy
http://bbishop.org/blog/?p=502
It works for a view navigator application, but if your using a tabbed navigator application, you can add a call for that, or simply change the code to
mainTabbedNavigator = FlexGlobals.topLevelApplication.tabbedNavigator;
currentTab = mainTabbedNavigator.selectedNavigator as ViewNavigator;