[flexcoders] Complex shape selection

2009-09-16 Thread vladakg85
Hi, how to create complex selectable shape in flex. For example if I make Europe map. And There is countries like Germany, Italy, Greece etc. They all have their boundaries. And I want to create application so that user can select Greece for example but only selectable in her boundaries. If I

[flexcoders] How to display bullet insted asterisk in textinput controll

2009-09-10 Thread vladakg85
I added displayAsPassword but I want bullets instead of asterisks. How to achieve this? I can't change type of fonts in controll.

[flexcoders] Multiline label or text

2009-08-24 Thread vladakg85
Hi, I need to display large text in a small area and I have to make Label or Text to be multilined (wordWrap). I succeeds with Text control but When I put enabled property to false my letters change color. I work everything from AS nothing from MXML. Is there any way to control

[flexcoders] Problem with native AIR component

2009-08-23 Thread vladakg85
Hello, one more problem :). I created native AIR component in the following way: I create VBox and fill it with buttons and labels components. I created one native component (type Window) and add previous VBox components in it (addChild(...)). Now becouse I have to use native components to load

[flexcoders] Re: How to run another air application from air application

2009-08-13 Thread vladakg85
Hi, you help me a lot, but now I have some strange problem: This application cannot be installed because this installer has been mis-configured. Please contact the application author for assistance. I make one relase 0.0.1. and install on client. I make new relase 0.0.2. I put new relase on

[flexcoders] Re: How to run another air application from air application

2009-08-13 Thread vladakg85
Yes, but I don;t want to use framework. I have to make manual update. I have methods that check if there is new version on server,manually download new version from server, and manually run installer, but I recived this message. This application cannot be installed because this installer has

[flexcoders] Re: How to run another air application from air application

2009-08-13 Thread vladakg85
No, download goes ok, if I run file.air manually update is OK. Old version is replaced with new. This is how I get file: urlStream.addEventListener(Event.COMPLETE, loaded); urlStream.load(urlReq); private function loaded(event:Event):void

[flexcoders] How to run another air application from air application

2009-08-12 Thread vladakg85
I have one air application. Now I want to make custom update (no default, I want my component) and I made it to download new application version to my app folder now I need to install it, but I don't know how to invoke newVersion.air from action script code??? I try with this but doesn't work:

[flexcoders] Need help fast: Mouse and ketboard event

2009-07-28 Thread vladakg85
Hi, I have a list of buttons in my VBox (1,2,3,4,5,6...) and I can click with mouse on each of them. Now I need to make numeric keyboard to register click on some of this buttons. If I press 5 on numpad button on the screen must flash a little (like it is pressed for real with mouse). But I

[flexcoders] PopUp vs other containers

2009-07-17 Thread vladakg85
How to decide do I need PopUp window or Title Window component for example? If I have button in my application and I want to after click new window shows on the screen which I can move, add other components on it bla bla... should I here use PopUpManager or something else. When and why to use

[flexcoders] Re: Flex logging

2009-07-16 Thread vladakg85
://livedocs.adobe.com/flex/3/html/help.html?content=logging_09.html 2009/7/14 valdhor valdhorli...@... Shared Objects? --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, vladakg85 vladakg85@ wrote: Hi, I need to setup my flex application to save log information in some *.txt

[flexcoders] Flex logging

2009-07-14 Thread vladakg85
Hi, I need to setup my flex application to save log information in some *.txt file, but I don't know how to setup this. Help me :(

[flexcoders] Re: Flex in eclipse

2009-07-08 Thread vladakg85
@yahoogroups.com, Tom Chiverton tom.chiver...@... wrote: On Tuesday 07 Jul 2009, vladakg85 wrote: Ok, I downloaded xsd4MXML project and opened it in Eclipse...Build...It works... but what do I get with this? Am I wrong in something? You get a .xsd file, which gives you syntax highlights

[flexcoders] Eclipse and flex setup questions

2009-07-07 Thread vladakg85
I connected flex 3 sdk and eclipse classic eclipse-jee-galileo-win32, now: 1) What is better to use for build code with ANT or without ANT? 2) Is there any way to add code hint (Ctrl + Space) while coding AS3 class or MXML file inside eclipse? 3) For code colors, is there some better way than

[flexcoders] Re: Flex in eclipse

2009-07-07 Thread vladakg85
Ok, I downloaded xsd4MXML project and opened it in Eclipse...Build...It works... but what do I get with this? Am I wrong in something? Thanks for understanding --- In flexcoders@yahoogroups.com, Tom Chiverton tom.chiver...@... wrote: On Friday 03 Jul 2009, vladakg85 wrote: O yeah, I want

[flexcoders] Flex in eclipse

2009-07-03 Thread vladakg85
Is there on the internet some good explanation step by step, how to configure eclipse to develop flex applications. Thanks

[flexcoders] Re: Flex in eclipse

2009-07-03 Thread vladakg85
O yeah, I want to connect eclipse to flex SDK, looking for free solution :) --- In flexcoders@yahoogroups.com, vladakg85 vladak...@... wrote: Is there on the internet some good explanation step by step, how to configure eclipse to develop flex applications. Thanks

[flexcoders] PureMVC, register popup mediator problem

2009-07-02 Thread vladakg85
Below is my code for popup, in my project, I have a problem to register mediator, I try like this :: facade.registerMediator(new InfoWindowFriendDetailsMediator(InfoWindowFriendDetails)); :: Problem happened when I register events on my popup component controls, I get null here and

[flexcoders] From where to start building chat client

2009-06-30 Thread vladakg85
Hello, I want to start one small project for my self, it's about chat client where user can login and chat with other users etc. I am very interested to know what should I use to transfer messages from user to user is there any server, anything to start, yo analyze how to build chat

[flexcoders] Re: I can't understand pureMVC

2009-06-25 Thread vladakg85
, at 13:23, vladakg85 wrote: I am trying whole morning, I try to cast it in everything :( From remote service I return object User, same VO object like in flex application. But is this image below ok, becuse I don't see User object anywhere, this is my evt.result. http

[flexcoders] Re: I can't understand pureMVC

2009-06-24 Thread vladakg85
--- In flexcoders@yahoogroups.com, Simon Bailey si...@... wrote: Something is wrong with your assigning the remote result to the data in your Proxy. The 'data' object has not been cast to User() and is instead typed as ObjectProxy? On 23 Jun 2009, at 16:15, vladakg85 wrote: http://img37

[flexcoders] I can't understand pureMVC

2009-06-23 Thread vladakg85
I try to learn this framework for a month, and I always stack somewhere, and now I need help. What I know: to make view, to make mediators, to make commands.. But, I don't understand proxy at all. First what should be there. I think that this is the place where I store service call methods and

[flexcoders] Re: I can't understand pureMVC

2009-06-23 Thread vladakg85
on what data, if we go by what you suggested i.e. username password and general user details then I personally would have a UserProxy which handles the user details as a whole. HTH, Simon [ Blog ] nutrixinteractive.com/blog/ On 23 Jun 2009, at 11:34, vladakg85 wrote: I try

[flexcoders] Re: I can't understand pureMVC

2009-06-23 Thread vladakg85
pull out the loginUserData object using note.getBody(). I would go for option (b)! On 23 Jun 2009, at 14:59, vladakg85 wrote: Hi, thank you so much, I did something that I was trying for whole month :( ddd :) But now I have one more problem, this one is small :) 1) I make

[flexcoders] Re: I can't understand pureMVC

2009-06-23 Thread vladakg85
on a notification. What is showing in the debugger in your mediator? On 23 Jun 2009, at 15:50, vladakg85 wrote: I tried this data = evt.result as User; and its not work. I also tried to send User data with notification, same again. LoginCommand [code] override public function