[flexcoders] Re: Flash player fullscreen and text inputs

2008-01-15 Thread Anzer
Thanks for the reply Deepa.. I want my app should work without installation so my only choice is Flex. We are creating full screen publications and in that we need inputs in some pages (very rarely). So I just want to know if there is any work around to make it possible. I tried showing a

[flexcoders] Flash player fullscreen and text inputs

2008-01-14 Thread Anzer
Hi, Is there any work around to support inputs in Flash player full screen mode? Regards, http://www.digitalmesh.com http://www.digitalmesh.com/

[flexcoders] FLV dimensions from Flex or CF

2008-01-10 Thread Anzer
Hi, I have a Flex app that will allow users to upload FLV videos. I want to find out the width and height of the uploaded file and do some logic accordingly. I have done a lot of research to find out the FLV dimensions from ColdFusion but I couldn't find a solution. Please let me know if there

[flexcoders] Re:Offline Work Support in Flex 2

2008-01-02 Thread Anzer
Hi, Since flex is a client tool and the application will download to the client browser (Flash player) when the user requests the application I think you can structure your app to work offline. When the user has connection to server get all the needed data from server and store them in memory

[flexcoders] Problem with ModuleLoader and List in Flex 3 - Possible BUG

2007-12-30 Thread Anzer
Hi, I have two modules and each having lists to list different items. I am getting the below error when clicking on a list after loading second module. TypeError: Error #1009: Cannot access a property or method of a null object reference. at mx.managers::DragManager$/get

[flexcoders] How to check if a file exist in the server?

2007-12-26 Thread Anzer
How to check if a file exist or not in the server? Currently am doing it with HTTPService, but I need to know if there is any better mechanism since I want to check files with big sizes and I think HTTPService will load the actual file into memory (not sure if that's correct, let me know if

[flexcoders] How to give a default video in VideoDisplay

2007-12-18 Thread Anzer
The VideoDisplay stop functioning if the source is not exists even if we give a correct source after trying to load a missing source. Is there any method we can load a default video if the source is not valid. Anz http://www.FlickrMailer.com http://www.flickrmailer.com/

[flexcoders] How to allow space when using Restrict property

2007-12-14 Thread Anzer
How to allow space in a textinput when using Restrict property Thanks Anz

[flexcoders] Ho to check an item has focus or how to find the currently focused item

2007-12-12 Thread Anzer
How can I check whether an item has focus from ActionScript? Or how to find which is the currently focused item? Thanks Anz http://www.FlickrMailer.com http://www.flickrmailer.com/

[flexcoders] Which architecture to follow

2007-12-04 Thread Anzer
Cairngorm or PureMVC? I have read some where PureMVC is the best choice. Please give your inputs. Thanks Anz

[flexcoders] CursorManager problem in textinput

2007-11-28 Thread Anzer
Hi, I set the cursor of a textinput using CursorManager [Bindable] [Embed(source=assets/images/img_hand.png)] private var HandIcon:Class; private var cursorID:int; mx:TextInput rollOver=cursorID = CursorManager.setCursor(HandIcon);

[flexcoders] How can I avoid jumping / flickering when changing the dataprovider in a list box?

2007-11-26 Thread Anzer
Hi, I am programmatically changing the values in an array collection which is the data provider of a list box. When I change the values the list box is flickering, how can I avoid it? My intention is to show an interface like windows explorer. I want to do in place re naming and deleting in

[flexcoders] Re:Which component for photos?

2007-11-22 Thread Anzer
Check out this http://dougmccune.com/blog/2007/11/19/flex-coverflow-performance-improvement -flex-carousel-component-and-vertical-coverflow/

[flexcoders] icon path in ActionScript

2007-11-21 Thread Anzer
Hi, How can I set the icon of a VBox in ActionScript. myVbox.icon = 'assets/img_details.png'; will give an error Implicit coercion of a value of type String to an unrelated type Class. Please help Anz

[flexcoders] Re: icon path in ActionScript

2007-11-21 Thread Anzer
Thanks for the reply. But it will not work for me since the icon path is coming from database and I can't give a static path. I have tried the following code, but that too will give a compile error var iconPath:String = assets/ + item.IconFile.toString();

[flexcoders] AND condition in mxml tag??

2007-11-01 Thread Anzer
How can I give condition in mxml tag. For example mx:Button label=Browse id=btnBrowse enabled={ i==1 j==2} / I am getting compilation error for the above code. Error is give below The entity name must immediately follow the '' in the entity reference. Please help

[flexcoders] Re: AND condition in mxml tag??

2007-11-01 Thread Anzer
Thanks a lot for the solutions. Regards, Muhammad Ansar M Technical Lead Digital Mesh Softech India (P) Limited Unit 1: 43-A, E Block, 2nd Floor, Cochin Special Economic Zone, Kakkanad, Kochi - 682 037, Kerala, India . Tel: +91-484-4060200, Fax: +91-484-4060201 Reg. Office: 210-G,

[flexcoders] Carousel component

2007-10-29 Thread Anzer
Where can I get a good implementation of Carousel component in Flex 2 ?

[flexcoders] Croping area

2007-10-24 Thread Anzer
Hi, I am working in an image manipulation application and I have almost finished with that. Now I have a problem with image cropping UI. I want to make the image shaded (alpha = .5) except what seen through the crop area. The crop area is draggable. Please give suggestions to do this

[flexcoders] Scale image

2007-10-22 Thread Anzer
I want to make the bottom right corner of a picture dragable to scale the image. I am trying with http://www.rogue-development.com/objectHandles.xml and http://www.sephiroth.it/file_detail.php?id=154 but I would like to know if there are any other implementations. Thanks Anz

[flexcoders] My chart application is working only in Flash debug player!!

2007-10-19 Thread Anzer
I don't know what's wrong but my flex chart application is working only in computers with flash debug player installed. I am using Cold fusion remoting and cairngorm. Please help