Re: [flexcoders] Flex with .Net

2009-10-13 Thread Jehanzeb Musani
The easiest thing would be to expose a web service written in .NET can invoke with Flex UI. Make sure you rely on the primitive types or design your protocol (objects encoded it in xml and pass as string to webservice). It's simple but will not be very efficient. The other approach you can

Re: [flexcoders] can't loop through parameters

2008-08-25 Thread Jehanzeb Musani
use the Application.application.parameters property to iterate through the parameters passed to the SWF application. --- On Tue, 8/26/08, bryancostanich [EMAIL PROTECTED] wrote: From: bryancostanich [EMAIL PROTECTED] Subject: [flexcoders] can't loop through parameters To:

Re: [flexcoders] Close an application window

2008-04-03 Thread Jehanzeb Musani
If you could not find appropriate function in Flex, yo can call javascript's function to close browser using Flex's EnternalInterface API. --- Remya [EMAIL PROTECTED] wrote: I have a login/cancel button in the first page of my application. The login button should of course, lead to

[flexcoders] Miscellaneous Localization Isses

2008-03-27 Thread Jehanzeb Musani
Hello, I am developing an application in Flex that needs to supports two locales; English and Arabic. I am facing the following issues while using Arabic text. 1. In context menus, if the text is in Arabic (Font Family Tahoma), it displays question marks ? instead of arabic alphabets. 2. If the

Re: [flexcoders] Miscellaneous Localization Isses

2008-03-27 Thread Jehanzeb Musani
Please not that Arabic text in issue 2 was not displayed properly in the email because of email default encoding. You can say the text Today's Volume is displayed as Volume Today's is datagrid's header when font family is Tahome and text is in Arabic. --- Jehanzeb Musani [EMAIL PROTECTED] wrote

Re: [flexcoders] Miscellaneous Localization Isses

2008-03-27 Thread Jehanzeb Musani
, Jehanzeb --- Paul Hastings [EMAIL PROTECTED] wrote: Jehanzeb Musani wrote: I am developing an application in Flex that needs to supports two locales; English and Arabic. I am facing the following issues while using Arabic text. the flash client doesn't (yet) support BIDI text, so i

Re: [flexcoders] Miscellaneous Localization Isses

2008-03-27 Thread Jehanzeb Musani
I agree with you that text inputs does not support BIDI. Fortunately, the application I am working on is related to financial domain. That's why user inputs are only numbers not text. Text is displayed only as read only information. --- Paul Hastings [EMAIL PROTECTED] wrote: Jehanzeb Musani

Re: [flexcoders] Re: Query Related to Popup Windows

2008-03-11 Thread Jehanzeb Musani
you, in flex3 and it works fine here, the combobox stil works :) --- In flexcoders@yahoogroups.com, Jehanzeb Musani [EMAIL PROTECTED] wrote: Hello Cato, Thanks for your reply. Initially I tried to use flexmdi framework to show popup windows on top of the main application UI

Re: [flexcoders] Re: Query Related to Popup Windows

2008-03-11 Thread Jehanzeb Musani
if the message can't be delivered by that time. Do you have a another e-mail ? Cato --- In flexcoders@yahoogroups.com, Jehanzeb Musani [EMAIL PROTECTED] wrote: Hello Cato, Can you send me the zip file of the project of flexmdi that you imported it in Flex 3, I will compile

Re: [flexcoders] Re: couple of flexmdi questions

2008-03-06 Thread Jehanzeb Musani
--- Ben Clinkinbeard [EMAIL PROTECTED] wrote: Jehanzeb, That was only when using MDIManager.global, right? Ben On Wed, Mar 5, 2008 at 11:50 AM, Jehanzeb Musani [EMAIL PROTECTED] wrote: Hi Jason, I was using the flexmdi for the same purpose that you are using

Re: [flexcoders] Module Size Issue

2008-03-06 Thread Jehanzeb Musani
PROTECTED] wrote: Just to know this is with or without framework caching (RSL)? VELO On Thu, Mar 6, 2008 at 5:00 AM, Jehanzeb Musani [EMAIL PROTECTED] wrote: Yeah the application is working and the size of the application and modules are almost the same if they would

Re: [flexcoders] Module Size Issue - Resolved

2008-03-06 Thread Jehanzeb Musani
-report and load-extern compiler options are working properly with latest code. Regards, Jehanzeb --- VELO [EMAIL PROTECTED] wrote: Take a look: http://livedocs.adobe.com/flex/3/html/help.html?content=rsl_09.html VELO On Thu, Mar 6, 2008 at 7:44 AM, Jehanzeb Musani [EMAIL PROTECTED] wrote

Re: [flexcoders] Module Size Issue - Resolved

2008-03-06 Thread Jehanzeb Musani
I would like to add one thing to it, it's really weird that link-report and load-extern options were not working becuase of turning on Compile CSS to SWF on css files. Apparently it has nothing to do with those compiler options, so they should work as expected. --- Jehanzeb Musani [EMAIL

RE: [flexcoders] Module Size Issue

2008-03-05 Thread Jehanzeb Musani
? If so, you then have to load-extern framework.swc on your modules. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jehanzeb Musani Sent: Wednesday, March 05, 2008 8:17 AM To: flexcoders@yahoogroups.com Subject: [flexcoders

Re: [flexcoders] Localizing Menus

2008-02-23 Thread Jehanzeb Musani
If you are using XML file to create menus, what you can do is specify the localized names of the menus item in XML file too. For example add a node DisplauNames in every menu item xml configurations that contains the localized name for them. DisplayNames Name language=en_US text=Test / Name

Re: [flexcoders] ComboBox question...

2008-02-22 Thread Jehanzeb Musani
Hello, Set the selectedIndex to -1 and prompt property to the text you want display when no item is selected, for example Select Hope this helps. Regards, Jehanzeb --- [p e r c e p t i c o n] [EMAIL PROTECTED] wrote: Hi Experts, I'm trying to do 2 things...one...i'd like theinitial

Re: [flexcoders] My website Project

2008-02-17 Thread Jehanzeb Musani
Hello, You can use the following two options to load rest of the features of your application. 1. Modules 2. RSL (Runtime Shared Libraries) Both of the aforementioned techniques will load the components only when they are used instead of loading them on main application initialization.

Re: [flexcoders] Login Application

2008-02-12 Thread Jehanzeb Musani
validate and id it passes then it should go to the next page... - Original Message From: Jehanzeb Musani [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 12, 2008 12:32:55 PM Subject: Re: [flexcoders] Login Application

Re: [flexcoders] Login Application

2008-02-12 Thread Jehanzeb Musani
Hello, What do you mean by switching to next page, can you elaborate that? If you want to change the login screen and display application main UI after validating user credentials, then you can use ViewStack. The first (default) view of the ViewStack container should be Login screen. Once the

[flexcoders] Flex Applicatin and Theme/CSS

2008-01-29 Thread Jehanzeb Musani
Hello All, I want to incoportate the support of theme/css for my flex application. The requirement is that once the application is deployed, it's theme can be changed by the users. For that I want to specify theme using CSS files and don't want the CSS files to be embedded in the application SWF

Re: [flexcoders] Flex Applicatin and Theme/CSS

2008-01-29 Thread Jehanzeb Musani
file. --- Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 29 Jan 2008, Jehanzeb Musani wrote: flex application. The requirement is that once the application is deployed, it's theme can be changed by the users. For that I want to specify theme using CSS Beaware you can talk

Re: [flexcoders] DataGrid Number of Rows

2008-01-29 Thread Jehanzeb Musani
={yourArrayCollection.length}? hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com Jehanzeb Musani wrote: Hello All, I am binding an arraycollection as DataGrid's data source. The number of items in the arraycolleciton varies at runtime. If the arraycollection

[flexcoders] DataGrid Number of Rows

2008-01-29 Thread Jehanzeb Musani
Hello All, I am binding an arraycollection as DataGrid's data source. The number of items in the arraycolleciton varies at runtime. If the arraycollection contains only 2 items, even then the datagrid displays default 5/6 rows. Is there a way to configure datagrid to display the number of rows

Re: [flexcoders] Position Button Label

2008-01-29 Thread Jehanzeb Musani
Use styles Button { paddingTop: 6; } You can try different styles for almost all Flex components on the following site. http://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplorer.html --- jmfillman [EMAIL PROTECTED] wrote: I know how to left/right/center align text on a

[flexcoders] Datagrid - Adding Running Total Row

2008-01-14 Thread Jehanzeb Musani
Hello, I need to know that whether DataGrid or AdvancedDataGrid in Flex supports running totals? Let say I have the following data. Order Number Quantity Price --- 1..4..25.00 2..3..12.25 3..11.10.00

RE: [flexcoders] More control over datagrid? Adding Running Total Row?

2008-01-13 Thread Jehanzeb Musani
Hello Gordon, I need to know that whether DataGrid or AdvancedDataGrid in Flex supports running totals? Let say I have the following data. Order Number Quantity Price 1 4 25.00 2 3 12.25 3 1110.00

Re: [flexcoders] Browser window size

2008-01-08 Thread Jehanzeb Musani
Hello, You can use the flash.system.Capabilities class to find out the screen resultion of user system. For browser info, you can write a function in JavaScript and call it from flex using ExternalAPI interface. You can find an exmple of that if Flex Help, search for CapabilitiesGrabber in help.

Re: [flexcoders] Re: unable to hide datagrid column...help please

2007-12-10 Thread Jehanzeb Musani
when the xmllist is not populated. When I bind the xmllist the column becomes visible. Is there a work around? -phil --- In flexcoders@yahoogroups.com, Jehanzeb Musani [EMAIL PROTECTED] wrote: There is something wrong with datagrid bindind. I have tried the following two

Re: [flexcoders] flex newbie

2007-12-09 Thread Jehanzeb Musani
If you want to access the Application object from your ActionScript file, you can use Application.application. If you want to access public memebers of your main MXML Application, cast Application.application to your defined Application class and then access those public memebers. Hope this

Re: [flexcoders] unable to hide datagrid column...help please

2007-12-09 Thread Jehanzeb Musani
There is something wrong with datagrid bindind. I have tried the following two examples to hide the datagrid column 1. First Example (Without data binding) mx:DataGrid id=dg editable=true mx:columns mx:DataGridColumn dataField=Artist headerText=Artist editable=false visible=false/

Re: [flexcoders] Re: new to FLEX

2007-12-07 Thread Jehanzeb Musani
Hello Dangel, I was a part of team that was devloping solutions for (Point of Sale) POS devices. Those devices have to integrate with Scanners, Barcode Readers, Printers, Cash Drawers etc. As per my experience, to intercat with such devices, there is standard called OPOS. You can find

Re: [flexcoders] Best Way to learn Flex

2007-12-02 Thread Jehanzeb Musani
Hello Paul, I agree with you to some extent but not 100 percent. To develop controls like the one Sheriff shows, I believe you need to know Flash internal and it's framework. You can have my example. I have almost 5 five years devlopment experiencein Microsoft Technologies like .NET and C++ and

[flexcoders] Guid datatype in Flex

2007-11-29 Thread Jehanzeb Musani
Hello, I am calling a webservice written in .NET. The webservice requires MessageId of type Guid to uniquely identify the messages. Can anyone tell me whether Flex supports Guid datatype or not? If it does not, the how can i generate unique numbers from Flex that can be convertible to Guid in

Re: [flexcoders] Guid datatype in Flex

2007-11-29 Thread Jehanzeb Musani
:45 AM, Jehanzeb Musani wrote: Hello, I am calling a webservice written in .NET. The webservice requires MessageId of type Guid to uniquely identify the messages. Can anyone tell me whether Flex supports Guid datatype or not? It does not. If it does not, the how

RE: [flexcoders] Events and Non-Display Objects

2007-11-28 Thread Jehanzeb Musani
You can adopt the following two options to achieve your requirements. 1. Your MXML Object should Implement the IEventDispatcher interface and internally it creates an instance of EventDispathcer class and delegates calls to that instance. 2. If you dont want to use built-in event dispatcher and

Re: [flexcoders] Re: Events and Non-Display Objects

2007-11-28 Thread Jehanzeb Musani
object at all? Can I direct who can hear them? My impression is that if an instance is not in a display list then it is effectively deaf and mute as far as events are concerned. This seems wrong, but I don't know how else it should work. --- In flexcoders@yahoogroups.com, Jehanzeb Musani

RE: [flexcoders] Events and Non-Display Objects

2007-11-28 Thread Jehanzeb Musani
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jehanzeb Musani Sent: Wednesday, November 28, 2007 1:42 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Events and Non-Display Objects You can adopt the following two options to achieve your requirements. 1. Your MXML

Re: [flexcoders] Re: Shouldn't we use Flex to built website

2007-11-28 Thread Jehanzeb Musani
Hello, Sébastien Deleuze, I am not cent percent sure what your requirement are. But as far as using Flex for website and rendering layout dynamically is concerned, you can defnitely do it with Flex only. You can visit the following URL.

RE: [flexcoders] Events and Non-Display Objects

2007-11-28 Thread Jehanzeb Musani
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jehanzeb Musani Sent: Wednesday, November 28, 2007 2:16 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Events and Non-Display Objects Thanks Gordon for you prompt reply. Gordon, my experience is somewhat different that what

Re: Res: [flexcoders] Generating flex client based on xml content

2007-11-16 Thread Jehanzeb Musani
Hello, I don;t think any such tool exist. You have to write an flex application yourself that will request server for the xml and then render the UI on the basis of that XML. I have done the same for my application. It calls a webserivce when returns the xml that contains the layout of the

Re: [flexcoders] Event dispatching and receiving

2007-11-16 Thread Jehanzeb Musani
Hello, As far as I understood your scenario, you should call CustomClass's addEventListener() instead of Application.application in the Controller class. That is, the Controller class init() should look like that In the Controller Class { public function init() {

[flexcoders] Flex Localization Support

2007-11-13 Thread Jehanzeb Musani
Hello All, I want to support Arabic content in my application. That is the client can choose whether he want to view the content of my applicaiton in Arabic or English at runtime. Can anyone tell me how can I change the content of Flex application at runtime? Also, do I need to create separate

Re: [flexcoders] How would you make a heat map?

2007-11-09 Thread Jehanzeb Musani
Hello, I am not dead sure how one can do it in Flex as I am relative a newbie in Flex application development. However, I am working for a financial solutions provider in Dubai and we have designed heatmap component in .NET. We used custom rendering (GDI+) to draw this control in .NET. I believe

Re: [flexcoders] Re: How would you make a heat map?

2007-11-09 Thread Jehanzeb Musani
looking for. In this one it shows web page, but I would just overlay the same thing over a map. img src=http://www.itmanagement.earthweb.com/img/Liv-050301-Heatmap.jpg/ --- In flexcoders@yahoogroups.com, Jehanzeb Musani [EMAIL PROTECTED] wrote: Hello, I am not dead sure how

Re: [flexcoders] Loading Flex Components at runtime

2007-11-09 Thread Jehanzeb Musani
Hello, Thanks Tom for you suggestions. Can you tell me how to design RSL using Flex Builder 2 or provide me the links regading that? Thanks in advance. Regards, Jehanzeb --- Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 08 Nov 2007, Jeffry Houser wrote: I think this is what modules

[flexcoders] Loading Flex Components at runtime

2007-11-08 Thread Jehanzeb Musani
Hello, I want to design a Flex Web Application that would load features (flex components) hosted in different SWF or SWC files at runtime. The prototype of that application can be viewed on the url below. http://80.227.133.21/FlexTestInternal/ApplicationLayoutManager.html The actual application

[flexcoders] Loading Flex Components Dynamically at Runtime - 2

2007-11-08 Thread Jehanzeb Musani
Hello, The link I mentioned in the previous email was not correct. Please use the following link to view the prototype application. http://80.227.133.21/FlexTestExternal/ApplicationLayoutManager.html Regards, Jehanzeb __ Do You Yahoo!? Tired of

RE: [flexcoders] Re: Streaming bytes through a web service

2007-11-08 Thread Jehanzeb Musani
Hello Jeremy, I am also a fledgling to Flex Application development. I believe the problem you are facing (invalid xml) is because of the redult type you have specified for the flex webservice component. If you didn't specify the result then by default flex assumes it's xml. Search for WebService

Re: [flexcoders] Problem with compiled swf (only working with debug version of flash player)

2007-11-08 Thread Jehanzeb Musani
Hello, I am not sure but I am making a wild guess. Did you Http Service and flex files are deployed at the same domain or not? If that's not the case then you must deploy crossdomain.xml file on Http Service server. Regards, Jehanzeb --- wardloockx [EMAIL PROTECTED] wrote: Hello, I wrote