Team, “Flex Pirates”, yes its the name of our Web development team at Relyon, here we explore Adobe Flex as our RIA/UI technology to develop Web based Tax products and guess what, we are just doing fine.A logo was also designed by our Boss with our suggestions which came out good, it is given below.
Enjoy my Blog.



hi kumar this is awsome and congrats and best of luck
hi kumar this is good, nice logo and nice work with blog, very usefull blog of flex .
Hey KumarGANDHI,tis looks good with a motive of sharin ur knowledge ,keep it up!
hi friends,
thanks to u all , and keep in touch to make this blog a success..
regards
kumar gandhi
Kumar,
Thanks for the blog.
hi Geet,
your welcome.
regards,
kumar.
Hi Kumar i really wonder by seeing ur blog keep it up.. i am getting one doubt regarding flex.. and also i am new to flex. i want to put progress bar while opening each forms in my applications.. so plz tell me how to do?.. thank u in advance
Hi,
the progress bar is used to show the progress of uploading or downloading [in terms of size or time], but here in opening a form [a view in the same App i suppose] showing the progress bar is the requirement and this can be done but there are two categories
1. showing the progress while loading the View [TitleWindow or others] component
as a compiled [.swf], as seperate view in to the App.,this can be achived by reading the file [.swf] properties and mentioning them in properties of the ProgressBar.Good Examples are present at the Flex Help.
2.Loading the view from the same App [No external file uploading] and this can be achived like showing the progress for few seconds before pop up the view [PopUpManagers].
Hope this will solve your Query !.[Comment for new Queries]
Hi kumar,
I just saw ur blogs.Its very helpful.I am getting one error in my FLex project.
I am using logout button in my flex project.At the time of login i am creating one token.When i click logout i am deleting the token.If i relogin with the same username and password old values are not coming .I have written code for token generation in .net service.When i relogin old values are not coming
Hi
thanks at first sight , about your Error , I didn’t get what is Token , if iam not wrong i think you want to store some data [like instances of the user like cookies] on the client system then for this we can go for shared objects in Flex,They are similar to Browser Cookies.
I have made a post on SharedObjects in my blog ,just search it.Comment me if ur not clear.
regards,
kumar.
Carry on , Good work.
Thank you sir.
Kumar, could you email me please at above website…thanks.
Hi kumar..
Good effort…
can you tell me how to use flex with web services devloped and deployed using apache axis2/java.
Hi,
Thanks, I will soon make a post on that topic.
regards,
kumar.
Hi Kumar,
It’s nice to see you guys posting solutions for flex developers. Let me tell you it is really very helpful.
Me too working in flex for last 8 months and its really awesome working in it.
thanks once again
create a facility for a user to select a college name from a list of colleges( using combo box& we have to take at the max 3 colleges). as as soon as he select a college name the departments of that college must be displayed (CSE,ECE,MECHANICAL) .When User selects any branch and year he is presented with two options either he can see faculty information and student information .After viewing student information if he wants see marks of students create a facility for user to view the marks as well as performance in graph .
so , kindly send me this source code as soon as possible in a day . I need it very urgently.
thankin you
yours sincerely
uday
it is nice
it is nice
iam new to flex
My flex application is with ruby on rails. I want to block F5 key in flex application can u pliz help me?
Hi,
to capture the keyboard keys trigger we can use the KeyboardEvent Event Class.Check the Below example.
this.addEventListener(KeyboardEvent.KEY_UP,fnEnterKeyHandler);
//function handler
private function fnEnterKeyHandler(event:KeyboardEvent):void
{
if(event.keyCode==Keyboard.F5)
{
//F5 key press ,can add your code..
}
}
hope this helps you.
regards,
kumar.
Hi,
Presently I am creating a treeview control where based on user input it will search the input text in tree view,expand that node & you can select that text.
Example:
Animal
mamal
cat
dog
man
Insect
ant,
spider
Now user type at, then output result will be like below either
Animal
mamal
cat (display at as bold)
Insect(single node)
or
Animal
mamal
cat(display at as bold)
dog
man
Insect(Collapse node)
–
Could any of you please tell us how can I do it?
Please help.Any solution is welcome.
Regards,
Toton
Hi,
I am new in flex.i ma facing problem to access current uploaded photo in photo list.plz help me.I ma giving the coad..
After photo i go to photo list,but not see teh current uploaded photo.but if rebuild the file i will get the photo from the list.But uploaded photo can see from images folder and data are uploaded in mysql table.
Plz help me in this matter.
Hi,
Once you uploaded,you need to refresh the Service to receive new data from the DB which has the new uploaded photo information.
regards,
kumar.
Hi Kumar,
Thanks for the reply..
But This project content oen menu where i call the upload page(.swf)..After getting success message i will go for list page(anotehr .swf).Where i am not see the uploaded image.but if rebuild the project then i able to see the uploaded photo from the list.if u would like today recall httpservice that i am doing every tiem when photo list page is loading..means (creationComplete event).Can i have ur Gmail or Skype ID..I am new to flex.plz help me.thanks…Judhisthira
Everything you said is true, but there are many upsides. Like, you can’t be fired.
Hi,
How i can change the progressbar while the project open?
Because when the project open, this show a progressbar is the same for all projects. This progressbar can change for other? you can tell me how to do?
Hi,
How i can change the progressbar while the project open?
Because when the project open, this show a progressbar is the same for all projects. This progressbar can change for other? you can tell me how to do?
Please
Hi,
What do you mean by project, if it is Flex Applcation, then you can read about DownloadProgressBar here you can customize your progressbar, search this blog there are some good posts.
regards,
kumar.
saw the ppt regarding securing FLEX applications.
was crisp n short.
also while doing code review of Flex application is there additional information which anyone can share.
kind of a checlist.
thanks
Amit agarwal
Hi anna I am Jeyabalan Please tell me if possible send mail in Flex with Java, if it is true please send me the reference
i got the solution na thanks
Nice Blog…All the best guys..
Hi i have one query
In text input i have to enter only numbers and the first value should not be a ’0′ value.
correct format :-123,1209
In correct format:-0123,012
Hi da this is the solution for your problem,
/********************************************/
0){
no_txt.restrict=”[0-9],”;
}
}
]]>
</mx:Application
private var i:int;
private function init():void
{
this.addEventListener(KeyboardEvent.KEY_UP, keyUpHandle);
}
private function keyUpHandle(event:KeyboardEvent):void
{
if(no_txt.selectionBeginIndex == 0){
no_txt.restrict=”[1-9],”;
}
}
private function changeEvent(event:Event):void
{
no_txt.restrict=”[1-9],”;
var txtFirstChar:String= no_txt.text.charAt(0);
if(no_txt.text.length > 0){
no_txt.restrict=”[0-9],”;
}
}
Hi da this is the solution for your problem,
/********************************************/
0){
no_txt.restrict=”[0-9],”;
}
}
]]>