RE: [flexcoders] What is the easiest way to Post data to a XML file ?

2005-08-04 Thread Abdul Qabiz
Hi Ahmed, You will need a server-side program(script) to write data backto XML. So you can probably write a JSP/ASP/PHP or may be a POJO to do that. Please search google to see how to write XML/Text file using JSP/PHP or watever. Once you have that knowledge, you can learn how to use it

RE: [flexcoders] Changing Data in XML

2005-08-10 Thread Abdul Qabiz
Hi Ahmed, Q: Do you have any ideas about how to change a specific data in the XML file? You can write ASP script to read/write/update data ina XML file. You need to use MSXML API in ASP to do so. Q: Do you know any "MXML ASP XML" applications that work on changing data, and not only

RE: [flexcoders] Changing Data in XML

2005-08-10 Thread Abdul Qabiz
Another link: http://www.4guysfromrolla.com/webtech/xml.shtml From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of AhmedSent: Wednesday, August 10, 2005 10:03 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Changing Data in XML Dear everyone. Recently, I

RE: [flexcoders] Combobox : Display tooltip scrolling over the elements

2005-08-10 Thread Abdul Qabiz
Does this work this way? comboBox.dropDown.showDataTips = true? ComboBox contains a List, so you can get the reference of list using 'dropDown' property of ComboBox and then set List properties on it, as shown above. -abdul -Original Message- From: flexcoders@yahoogroups.com

RE: [flexcoders] Submit to url=... .asp parameters in Flex

2005-08-14 Thread Abdul Qabiz
Why you need to do that? Just update your ASP page to use Request.Form(..) collection for defectID also? I will suggest one method instead of mixing POST and GET. BTW! I have not checked if you can do what you are asking. Somebody might confirm if it can be done... -abdul From:

RE: [flexcoders] How to install multiple Flash Player versions?

2005-08-16 Thread Abdul Qabiz
I think, there is a third party software available to switch between different version of Macromedia Flash Players for IE/FireFox/NetScape or Standalone on the fly. FlashPluginSwitcher www.kewbee.de/FlashPluginSwitcher/index.php -abdul -Original Message- From:

RE: [flexcoders] Repeater doesn't work

2005-08-17 Thread Abdul Qabiz
Hi, Your code looks fine except one thing. I think, Binding is not being executed when a particular element of array is changed. Which is good as it saves the performance issues. Following is modified code and it should work, I am reassigning the entire array to itself. See the last line in

RE: [flexcoders] Using ContextMenu

2005-08-23 Thread Abdul Qabiz
Hi, Right, you can not attach context menu on nested object. This is a known issue which has been fixed in Macromedia Flash Player 8. But you can use some workarounds to attach/de-attach context menu. When mouse is over Canvas attach the context menu and when mouse is out of Canvas

RE: [flexcoders] Custom Datagrid Sorting

2005-08-25 Thread Abdul Qabiz
Hi Steve, Similar question has been replied in past, I have replied once myself. Please check the flexcoders archive at http://www.mail-archive.com/flexcoders%40yahoogroups.com if you don't find the answer, please reply in this thread. Thanks -abdul From:

RE: [flexcoders] Special Chars. in AS

2005-08-25 Thread Abdul Qabiz
Title: Special Chars. in AS You can copy paste the degree sign in MXML and it should show correctly. mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" mx:TextArea text="30°" / /mx:Application Save your MXML file with UTF-8 encoding, it should work. -abdul From:

RE: [flexcoders] Special Chars. in AS

2005-08-25 Thread Abdul Qabiz
Title: Special Chars. in AS You can use the "charmap" utility on windows to see such symbols.. -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Abdul QabizSent: Thursday, August 25, 2005 10:51 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders]

RE: [flexcoders] creationComplete on ViewStack children *bug?*

2005-08-25 Thread Abdul Qabiz
Title: RE: [flexcoders] creationComplete on ViewStack children *bug?* Scott- So in saying this, does this mean that ViewStack creates the base containers for all of its children, but all sub-containers there within, aren't created until that child recieves index selection, meaning

RE: [flexcoders] Closing Browser

2005-08-29 Thread Abdul Qabiz
You can call javascript function from ActionScript using getURL(..) I think following should work. getURL(javascript:window.close()); -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Prasad Dhananjaya Sent: Monday, August 29, 2005

RE: [flexcoders] Embedding a slideshow swf that calls image files

2005-08-30 Thread Abdul Qabiz
Hi, I think in Macromedia Flash Player 8, you can't pass vars to a SWF file so something like this might break. Please test the application in both players before deploying. -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dirk Eismann

RE: [flexcoders] Embedding a slideshow swf that calls image files

2005-08-30 Thread Abdul Qabiz
: [flexcoders] Embedding a slideshow swf that calls image files Abdul, that's interesting. Is there another way to pass FlashVars style parameters to a SWF file? Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Abdul Qabiz Sent: Tuesday, August 30

RE: [flexcoders] Embedding a slideshow swf that calls image files

2005-08-30 Thread Abdul Qabiz
Subject: RE: [flexcoders] Embedding a slideshow swf that calls image files Abdul, that's interesting. Is there another way to pass FlashVars style parameters to a SWF file? Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Abdul Qabiz Sent

RE: [flexcoders] Drawing on canvas

2005-09-02 Thread Abdul Qabiz
Try this: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; mx:Script ![CDATA[ function drawDots(event){ var xx:Number=35; var yy:Number=35; //var ref_mc = Canves1.createEmptyObject(square,

RE: [flexcoders] Re: flashvars question

2005-09-02 Thread Abdul Qabiz
Macromedia Flex application supports browser's back/next button. For example, if you have a tab navigator and you switch between different tabs, you can use browser's navigation button to see previous selected view... Give it a try, you will get the idea.. Like tab-navigator, accordion or

RE: [flexcoders] DataGrid and color display

2005-09-05 Thread Abdul Qabiz
What problem you are seeing, can you please mention that? Thanks -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of vnice CuteSent: Monday, September 05, 2005 2:15 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] DataGrid and color display Please

RE: [flexcoders] Canvas and Panels

2005-09-06 Thread Abdul Qabiz
Hi, 1) Canvas and VBox both are containers but with following difference: - VBox container lays out its children in a single vertical column.Where asa Canvas layout container defines a rectangular region in which you place child containers and controls. It is the only container that lets

RE: [flexcoders] Canvas and Panels

2005-09-06 Thread Abdul Qabiz
On Behalf Of vnice CuteSent: Tuesday, September 06, 2005 4:41 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Canvas and Panels Thanks Abdul Qabiz for your fast replay. but i still have the problem. i have two Panel, one is on the lift side and the other is on the right side. I want the

RE: [flexcoders] Canvas and Panels

2005-09-06 Thread Abdul Qabiz
: Tuesday, September 06, 2005 5:04 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Canvas and Panels Hi Abdul Qabiz; Thanks again, but to now it didn't work and load the Panel page. Imean that i have more than one Panel for every Canvas. For example: in my example i have 8 Canvas and each

RE: [flexcoders] Show external web page in container

2005-09-06 Thread Abdul Qabiz
Hi, I think you can check out this technique by Christophe Coenraets of Macromedia: http://coenraets.com/viewarticle.jsp?articleId=95 -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jose Quiles Sent: Tuesday, September 06, 2005 2:40

RE: [flexcoders] Canvas and Panels

2005-09-06 Thread Abdul Qabiz
:Application * The imorting file 1) ** smetPanel.mxml * mx:Panel xmlns:mx="http://www.macromedia.com/2003/mxml" width="100%" height="100%" textAlign="center" fontSize="14"mx:Formmx:Label text="Abou

RE: [flexcoders] Ending my test

2005-09-06 Thread Abdul Qabiz
Hi, If your application is that large, you should look at some of existing RIA frameworks like: Cairngorm - http://www.iterationtwo.com/open_source_cairngorm.html ARP - http://www.ariaware.com/products/arp/ I think, developers in this list have made large applications. It would be great if they

RE: [flexcoders] Drag and drop among components

2005-09-06 Thread Abdul Qabiz
Hi, I have not used DragManager much, so can't help how to do this with DragManager. But I can show you, how can you achieve the same with your own logic: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; creationComplete=initApp() mx:Script

RE: [flexcoders] Chart

2005-09-06 Thread Abdul Qabiz
Hi, Check out these two links, you might get started your own: http://livedocs.macromedia.com/flex/15/asdocs_en/mx/charts/ColumnChart.html http://flexapps.macromedia.com/flex15/chartexplorer/explorer.mxml?versionChecked=true -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Binding question

2005-09-06 Thread Abdul Qabiz
Hi, If you look at this link of Flex Documentation: http://livedocs.macromedia.com/flex/15/flex_docs_en/0695.htm You will find the following in the end: Note: Array elements do not trigger ChangeEvents and, therefore, cannot function as binding sources at runtime. Binding copies initial

RE: [flexcoders] How to properly use dispatchEvent

2005-09-15 Thread Abdul Qabiz
Hi, I think it is good idea that your components dispatch events. It allows decoupling within application and increases reusability of component. -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jcrane Sent: Thursday, September 15, 2005

RE: [flexcoders] How to overload methods in Actionscript?

2005-09-15 Thread Abdul Qabiz
+ arguments[0]); } else if(n==2) { alert(Hello + arguments[0] + + arguments[1]); } } //usage: sayHello(); sayHello(Abdul); sayHello(Abdul, Qabiz); You can access individual argument using arguments array. You can use typeof and instanceof

RE: [flexcoders] Question about accordions

2005-09-15 Thread Abdul Qabiz
can you please post the code that is giving you error message? Are you copying and pasting the creationPolicy="all" from some other place? Chances are that quotes are not in right format, as I can see below in your mail.. Try this: creationPolicy="all" -abdul From:

RE: [flexcoders] Drawing a rectangle in Flex

2005-09-15 Thread Abdul Qabiz
Hi, It is working for me, however it doesn't draw a rectangle instead some other shape. I am using following code along with myClass.as: ?xml version="1.0" encoding="utf-8"?mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" xmlns="*"

RE: [flexcoders] Re: doLater and deletePopUp with Cairngorm

2005-09-15 Thread Abdul Qabiz
Type %HOMEDRIVE% in your Run prompt to see the home drive. -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of fowleryj Sent: Thursday, September 15, 2005 7:52 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: doLater and

RE: [flexcoders] Re: doLater and deletePopUp with Cairngorm

2005-09-15 Thread Abdul Qabiz
Check out your home directory on your machine for flash.log? It is generally, root_drive\Documents and Settings\username\ f.ex. C:\documents and settings\abdul\ If you have ever changed the settings in mm.cfg (which is also found at the same place), then look at the new path. -abdul

RE: [flexcoders] What does this error message mean

2005-09-15 Thread Abdul Qabiz
Hi, Are you copying and pasting the creationPolicy="all" from some other place? Chances are that quotes are not in right format, as I can see below in your mail.. Try this: creationPolicy="all" -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL

RE: [flexcoders] applications forgetting array values

2005-09-22 Thread Abdul Qabiz
I doubt, somewhere in your code array is being reset or reference to array is lost... Can you post the code? -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]Sent: Friday, September 23, 2005 12:30 AMTo: flexcoders@yahoogroups.comSubject:

RE: [flexcoders] How to enable disable tabNavigator

2005-09-22 Thread Abdul Qabiz
tabNavigator.enabled = false Did you try this? -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sandip_patil01 Sent: Friday, September 23, 2005 12:40 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to enable disable

RE: [flexcoders] Really basic ActionScript question.

2005-09-22 Thread Abdul Qabiz
var d:Date = new Date(); d.setDate(today_date.getDate()+10); Did you try this? Date class has loads of methods to do this. -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of delaquae Sent: Friday, September 23, 2005 12:44 AM To:

RE: [flexcoders] alert throwing error

2005-09-22 Thread Abdul Qabiz
Hi, You can use this: mx.controls.Alert.show(..) from anywhere to show alert(..). FYI! alert(..) function is just shortcut of aboveand isstatic method of Applicationclass. Which means it can be used in application without fully-qualified reference. But if you want to use it in custom

RE: [flexcoders] KeyDown event in mx:Application tag

2005-09-26 Thread Abdul Qabiz
You can not trap all function keys if your flex application is running in browser. There are various _javascript_ hacks, which cantrap keyboard shortcuts reserved by various browsers. But it is not pretty straight forward. -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] sending arguments to addEventListener

2005-10-02 Thread Abdul Qabiz
There are some problems in your code: 1) addEventListener(..) expects second argument as function reference but in your case you are calling a function(goToScreen(..)) while subscribing to event and function return value is Void, so events are not subscribed properly. 2) You are trying to

RE: [flexcoders] events issue

2005-10-02 Thread Abdul Qabiz
Hi, Can you post the sample-but-complete code, so that we can see what is going wrong? -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Husain KitabiSent: Saturday, October 01, 2005 8:48 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] events issue

RE: [flexcoders] Putting a picture on a page

2005-10-03 Thread Abdul Qabiz
Hi, Make sure filename is correct, take care of case-sensitivity. -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]Sent: Monday, October 03, 2005 9:06 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Putting a picture on a page I

RE: [flexcoders] Cannot use relative URLs on Service. event.result is empty !

2005-10-03 Thread Abdul Qabiz
Hi, I think, this might not be flex issue. Did you restart Tomcat server after changing file? I think, Tomcat requires restart if you change any of the files. When it is working on localhost it should work on remote server...There might be something wrong with deployment... I am afraid that

RE: [flexcoders] Submitting a form

2005-10-03 Thread Abdul Qabiz
If I get it correctly, you want to send request as XML? Then you can set the contentType property of HTTPService to contentType=application/xml -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sjors Pals Sent: Monday, October 03, 2005

RE: [flexcoders] Submitting a form

2005-10-03 Thread Abdul Qabiz
: [flexcoders] Submitting a form not really, the string is something like this: 'formname=aandelenxxx_test=12132xxx_test2=sdasdxxx_super=asdfasdfyy_ blah=1yy_test3=234234'; Greets, Sjors Abdul Qabiz wrote: If I get it correctly, you want to send request as XML? Then you can set the contentType

RE: [flexcoders] hidding a stack in the accordion

2005-10-03 Thread Abdul Qabiz
Hi, To completely hide it, you have to remove it from Accordion. And add it Accordion when you want to show itBut in that case you have to save the current state of it(date, visual state etc)..and reinitialize it in same state when you add it. -abdul -Original Message- From:

RE: [flexcoders] Form in Repeater

2005-10-04 Thread Abdul Qabiz
I think, it should work. Can you check the length of array you are assigning as dataProvider to Repeater. If you can post the sample-but-complete code here, we can see what is going wrong here.. -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Doodi, Hari

RE: [flexcoders] Weird error

2005-10-04 Thread Abdul Qabiz
Hi, Probably the xml returned by Servlet is not well-formed XML. http://www.abdulqabiz.com/blog/archives/macromedia_flex/000126.php -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dimitrios GianninasSent: Tuesday, October 04, 2005 11:13 PMTo:

RE: [flexcoders] Re: Number(011) = 9 ????

2005-10-05 Thread Abdul Qabiz
-Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Abdul Qabiz Sent: Tuesday, October 04, 2005 10:29 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Number(011) = 9 Hi, What do you want to do? Convert 011 to decimal 11

RE: [flexcoders] what does this error mean?

2005-10-06 Thread Abdul Qabiz
Nithya- You are not specifying namespace-prefix in Panel tag. It should be mx, assuming you are not using your custom Panel component. It should look like below: mx:Canvas mx:Panel / /mx:Canvas -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nithya

RE: [flexcoders] Accessing the main Application Class

2005-10-10 Thread Abdul Qabiz
mx.core.Application.application is reference to application. How are you trying to access it? -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Marc TeichtahlSent: Monday, October 10, 2005 9:31 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders]

RE: [flexcoders] Calling down?

2005-10-10 Thread Abdul Qabiz
Hi, It should work. Can you post code custom component? -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg Johnson Sent: Monday, October 10, 2005 9:01 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Calling down? I have an

RE: [flexcoders] DW 8 MXML (code hints)

2005-10-11 Thread Abdul Qabiz
Hi, Dreamweaver 8 doesn't have any special support for MXML. It would probably treat MXML as XML. You can use FlexBuilder 1.5 for MXML code hinting and more(debugging, network monitor etc). I hope but don't promise that next version of Dreamweaver should support MXML code hinting. If

RE: [flexcoders] Authorization and Personalization

2005-10-11 Thread Abdul Qabiz
Hi, By different UI,do you mean layout of UI changes oronly color-scheme/text etc changes? You can easily implement both of above in Flex. Macromedia Flex provides lots of layout componentsand easier custom component development approach. You can change color/theme of components on

RE: [flexcoders] Hiding a datgrid column

2005-10-11 Thread Abdul Qabiz
Performance wise, removing the DataGrid column, as Deepa showed, might be relatively more efficient. Where as having column with zero-width might still take memory.. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Tuesday,

RE: [flexcoders] how to forbid pasting text into a t extArea£¿

2005-10-12 Thread Abdul Qabiz
Hi, I think in password field you can paste but can not copy. That's how it works. But why would you want to do that? -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manish Jethani Sent: Wednesday, October 12, 2005 9:39 AM To:

RE: [flexcoders] Cyclical reference error

2005-10-12 Thread Abdul Qabiz
Hi, This might also happen if two MXML files reference each other indirectly. Can you please post samples-but-complete-code for the same. -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jim PhelanSent: Wednesday, October 12, 2005 9:24 AMTo:

RE: [flexcoders] binary data to render...

2005-10-12 Thread Abdul Qabiz
Hi, Instead of returning base64 to client, you can create(from within webservice method on server)an image on server and save it atsomewhere on server. You can return the path of generated Image to client(flex app). Once you get the path of image, you can pass it to Image component.

RE: [flexcoders] Storing several passwords with shared objects

2005-10-12 Thread Abdul Qabiz
Hi, You can save many passwords. If there is not storage to save, user would be prompted to increase SharedObject size. But I think, by default the limit is around 10K or 100K (dnt remember exactly). You can create an object(key-value pairs) and save it to SharedObject. f.ex. var

RE: [flexcoders] Changing color of font

2005-10-12 Thread Abdul Qabiz
Hi, You can change the color, font style, font size, font weight etc using Styles in Macromedia Flex. So look at the Flex 1.5 docs for all details, but you can see following link for your requirement: http://livedocs.macromedia.com/flex/15/flex_docs_en/0532.htm -abdul From:

RE: [flexcoders] Me go to MAX alone. you be my friend?

2005-10-12 Thread Abdul Qabiz
and it will be easy to recognize me, I look like 18 and have braces. Cool..so the one with braces and look like 18 is Joe :) See you at MAX. -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of João Fernandes Sent: Wednesday, October 12,

RE: [flexcoders] Re: Hiding a datgrid column

2005-10-12 Thread Abdul Qabiz
, 2005 11:13 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Hiding a datgrid column Thanks guys. All your points were very helpful One more thing. If I use Deepa's solution how do I change the attributes of the column e.g headertext, width --- In flexcoders@yahoogroups.com, Abdul

RE: [flexcoders] binary data to render...

2005-10-13 Thread Abdul Qabiz
users may be logged on and requesting different photos.any way to go base64-binary-image in memory in AS2?-aly On 10/12/05, Abdul Qabiz [EMAIL PROTECTED] wrote: Hi, Instead of returning base64 to client, you can create(from within webservice method on server)an image on server

RE: [flexcoders] Object properties

2005-10-13 Thread Abdul Qabiz
You can also use instanceof operator to compare the type of objects.. var a:Array= new Array(); if(a instanceof Array) { //true } -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt ChotinSent: Thursday, October 13, 2005 6:05 AMTo:

RE: [flexcoders] How to save uploaded file in database

2005-10-13 Thread Abdul Qabiz
Hi, You would be required to write server-side logic for the same. You can write code in your server-side file, which is being used for file upload, to save to Oracle DB as BLOB. Search google to find out how to save a file as BLOB in a DB. -abdul -Original Message- From:

RE: [flexcoders] centering a form....

2005-10-13 Thread Abdul Qabiz
Hi, You can get the width/height of root element using width/height variable in the same file(scope). Assuming Canvas is root element of LoginView.mxml: mx:Canvas width=600 height=600 xmlns:mx=http://www.macromedia.com/2003/mxml; mx:Panel id=AOPScheduler title=Login dropShadow=true

RE: [flexcoders] ASP Shopping Cart Example

2005-10-15 Thread Abdul Qabiz
Hi Robert, You can use HTTPService in Flex/MXML to communicate with server-side scripts(ASP.Net f.ex.) using standard HTTP GET/POST way. Following example is a simple login form which send userid and password to a server-side script: ##HTTPServiceExample.mxml## mx:Application

RE: [flexcoders] Question about linking two mxml pages together

2005-10-16 Thread Abdul Qabiz
You can also load another flex page inside existing, using Loader: mx:Loader source=page2.mxml.swf/ -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manish Jethani Sent: Sunday, October 16, 2005 4:22 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] Flex 2 Alpha is here???

2005-10-16 Thread Abdul Qabiz
Don't worry by this tomorrow you gonna have Alpha-bits with you... Exciting... :) -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris Velevitch Sent: Sunday, October 16, 2005 5:58 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] hi, i am new to flex, can any one help me how so go with it ?

2005-10-17 Thread Abdul Qabiz
Hi Ramu, Nice to know you are working on Flex. FYI, not everyone in this list from Bangalore. Actually, this list is used by folks all over world. You can post your flex-releated queries here, but before posting you should check the flexcoders-archive. -abdul From:

RE: [flexcoders] Is it the right way of using dispatchEvent?

2005-10-18 Thread Abdul Qabiz
Hi, When you extend UIComponent, it comes with event dispatching capabilities. So you don't need to use EventDispatcher.initialize(this) kind of mixin. You need to add [Event("eventName")] metadata in your class/component and just use dispatchEvent(..) method directly. No need to use

RE: [flexcoders] Is it the right way of using dispatchEvent?

2005-10-18 Thread Abdul Qabiz
Look at the following code to figure out what you need to do:- ?xml version="1.0" encoding="utf-8"?mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" xmlns="*" mx:Script ![CDATA[ function fun(){ mx.controls.Alert.show("Event dispatched!") } ]]/mx:Scriptcircle

RE: [flexcoders] custom effect in Flex Builder 2

2005-10-20 Thread Abdul Qabiz
Hi, - You need import the class your subclassing. - Effects API has changed a little, there are some changes in method signatures. - You need override keyword while overriding a method in subclass. - _rotation is changed to rotation - You need to surrounding mx:Effects tag anymore -

RE: [flexcoders] Timers

2005-10-20 Thread Abdul Qabiz
Title: RE: [flexcoders] Timers Hi, Using Timer class is simple: import flash.util.Timer; var timer:Timer = new Timer(500); timer.addEventListener(TimerEventType.TIMER, handleTimerEvent); private function handleTimerEvent(event:TimerEventType) { //your code if(condition) {

RE: [flexcoders] Is it the right way of using dispatchEvent?

2005-10-20 Thread Abdul Qabiz
same time, creating a pure UIComponent in Flasg is a bit different from that in FLex??Dont we use addEventListener in flex? Thanks a lot to one and all. Regards,Ram On 10/19/05, Abdul Qabiz [EMAIL PROTECTED] wrote: Look at the following code to figure out what you need to do:- ?xml ve

RE: [flexcoders] Right click and popup window

2005-10-21 Thread Abdul Qabiz
Title: Message There is no createDelegate method, it is Delegate.create(...) -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Parekh, Shweta - BLS CTRSent: Friday, October 21, 2005 11:01 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Right click

RE: [flexcoders] Right click and popup window

2005-10-21 Thread Abdul Qabiz
Title: Message That isa mistake, I think. -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Parekh, Shweta - BLS CTRSent: Friday, October 21, 2005 12:19 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Right click and popup window I tried this

RE: [flexcoders] Flex 2

2005-10-21 Thread Abdul Qabiz
If you are using FlexBuilder 2 to create flex apps. FlexBuilder creates SWF, you can copy the SWF on server. -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Howard, DaveSent: Friday, October 21, 2005 12:33 PMTo: flexcoders@yahoogroups.comSubject:

RE: [flexcoders] Re: Open source AMF solutions that work with flex

2005-10-21 Thread Abdul Qabiz
Hi, AMF has lots good things, I know some of these: * Binary transport * 50% percent faster then SOAP or Webservice * Automatic object serialization/deserialization -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dave Wolf Sent:

RE: [flexcoders] WebService question - path ?

2005-10-21 Thread Abdul Qabiz
Hi, @ContextRoot() returns the context root of your flex application. For example, Flex 1.5 comes with samples, so http://localhost:8700/samples/ would be returned from @ContextRoot(), if any of the applications under this context root requests that. This is compiler function to provide

RE: [flexcoders] Re: Open source AMF solutions that work with flex

2005-10-21 Thread Abdul Qabiz
Hi, We actually used to tunnel the IIOP through HTTP a lot to avoid this. AMF packets also go as HTP POST. Packets are in binary format. http://livedocs.macromedia.com/flashremoting/mx/Using_Flash_Remoting_MX/ intro2.htm#1174485 * 50% percent faster then SOAP or Webservice Not true with

RE: [flexcoders] AJAX vs Flex whitepaper?? anyone??

2005-10-26 Thread Abdul Qabiz
Found this link in Google search: http://www.lukew.com/ff/entry.asp?170 More links on: http://www.inkriti.com/ria.htm Someone from flexcoders sent me above link to review. Might help you... -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] calling methods in a c/C++ dll from Flex application

2005-11-23 Thread Abdul Qabiz
Hi, You can do that using FSCommand(..) if you are writing flex application using Flex 1.5. You can use flash.external.ExternalInterface API of Macromedia Flash Player 8.5 for communicating with host application. I believe, you are embedding SWF in a C++ shell, above method applies for such

RE: [flexcoders] calling methods in a c/C++ dll from Flex application

2005-11-23 Thread Abdul Qabiz
In past I have posted a solution for following problem: A flex application running in web browser wants to communicate with a windows application running on same machine. This can be achieved using LocalConnection. A small flash application can be embedded in windows application, that

RE: [flexcoders] calling methods in a c/C++ dll from Flex application

2005-11-23 Thread Abdul Qabiz
Sent: Wednesday, November 23, 2005 9:29 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] calling methods in a c/C++ dll from Flex application in FP 8.5 you can use sockets ;) On 11/23/05, Abdul Qabiz [EMAIL PROTECTED] wrote: Hi, You can do that using FSCommand(..) if you are writing

RE: [flexcoders] calling methods in a c/C++ dll from Flex application

2005-11-24 Thread Abdul Qabiz
:37 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] calling methods in a c/C++ dll from Flex application whats about c++ felx-2 instead of using flex-1.5 On 11/23/05, Abdul Qabiz [EMAIL PROTECTED] wrote: Right...In Flex 1.5, you can use xmlsocket to communicate with any local

RE: [flexcoders] Re: How to view attachment file

2005-11-25 Thread Abdul Qabiz
You can also look for cellPress event. -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sreeni_r Sent: Friday, November 25, 2005 11:21 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How to view attachment file Hi Jagadeesh,

Re: [flexcoders] using httpservice

2006-03-11 Thread Abdul Qabiz
Yeah, you can use HTTPService to communicate to any server-side script using standard HTTP GET/POST methods.Can you post your simplified-but-complete code + xml being returned?-abdul On 3/11/06, breakneck79 [EMAIL PROTECTED] wrote: Hi,Can i use some httpservice to get data from some php

Re: [flexcoders] Is combobox has showDataTips attributes?

2006-03-11 Thread Abdul Qabiz
Yes, combobox contains a list, so you can set the showDataTips property on the drop-down list.f.ex:comboboxInstance.dropdown.showDataTips = true;-abdul On 3/11/06, flexhtoo [EMAIL PROTECTED] wrote: I want to know how to show tooltip in combo when its popup is openedjust like list's showDataTips

Re: [flexcoders] RemoteObject - ColdFustion

2006-03-11 Thread Abdul Qabiz
You can send data as shown below, some of the ways...mx:RemoteObject id=ro destination=roDest result=handleResult(event.result);mx:method name=setData mx:argumentsarg1{text1.text}/arg1arg2{text2.text}/arg2 /mx:arguments/mx:method/mx:RemoteObject//calling from ASro.setData();That's one way, I

Re: [flexcoders] WebService - Returning a complex object

2006-03-11 Thread Abdul Qabiz
http://livedocs.macromedia.com/flex/20beta1/docs/1672.htmlOn 3/11/06, phatboychatter [EMAIL PROTECTED] wrote: Where is the documentation on handling a complex object returned froma web service?--Flexcoders Mailing ListFAQ:

Re: [flexcoders] HTTP (or socket) Client and Server in Flex UI

2006-03-16 Thread Abdul Qabiz
Hi,I am not sure, if Flash Player can listen on particular socket. But what you can do is to start a session from Flash Player, then you can push data to player from server...You can do p2p apps in Flash Player...two flash player cant communicate over socket, I think that would be a cool

Re: [flexcoders] bind xml string from webservice

2006-03-16 Thread Abdul Qabiz
I think, you need to define the datagrid columns using mx:DataGridColumn / tag...And may be convert wsrv.HelloWorld.result.records.record to expected datastructing using mx.utils.ArrayUtils.toArray(..)?xml version= 1.0?mx:Application xmlns:mx=http://www.macromedia.com/2005

Re: [flexcoders] Is there anywhere to post Flex 2 bugs and enhancement requests?

2006-03-16 Thread Abdul Qabiz
http://www.macromedia.com/bin/webfeedback.cgiOn 3/16/06, mmthm [EMAIL PROTECTED] wrote:Is there any official Adobe/Macromedia site to post formal bug reports and enhancement requests?Thanks.--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

Re: [flexcoders] Plz give solution to below error find Urgent?????

2006-03-16 Thread Abdul Qabiz
Anil,Can't see the image you attached. Can you please post it somewhere and send the link instead. Or you can write the steps to reproduce the issuealong with the error you get..-abdul On 3/14/06, anil thakur [EMAIL PROTECTED] wrote: Hi Sir When I starting my flex

Re: [flexcoders] Google Finance in AJAX: Can we do this in Flex?

2006-03-21 Thread Abdul Qabiz
By writing custom componentsI am sure you can do the same in Flex may be more easily..-abdulOn 3/21/06, t_msreddy [EMAIL PROTECTED] wrote:I just learnt about Google Finance. I think they implemented in AJAX URL:http://finance.google.com/finance?q=MSFTbtnG=SearchI was particularly pleased

Re: [flexcoders] Opportunities for Flex Wizards in India office of US-based networking startup

2006-04-03 Thread Abdul Qabiz
Cool! Guys, if you are looking for serious Flex stuff. This is the place. I know the head of this company and know what they are doing.So I am endorsing this post...-abdul On 4/3/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Guavus is a development-stage, well-capitalized startup in network

Re: [flexcoders] Flex2B3 Problem with beta3 and FileReferenceList

2006-05-09 Thread Abdul Qabiz
I agree, I think it's not working, I just made a quick test to see it.-abdulOn 5/9/06, rs [EMAIL PROTECTED] wrote:Hi there,My existing code for uploading files worked fine with Flex beta 2, but it in beta 3 the SELECT event is not raised!As in the examples I've added an event listener like

Re: [flexcoders] Capture a DisplayObject or UIComponent as a jpg? flex2b3

2006-05-17 Thread Abdul Qabiz
Should work on VideoDisplay, but havent tried it.Yeah it would work. -abdulOn 5/17/06, Rishikesh Shetty [EMAIL PROTECTED] wrote: On 5/16/06, rigidcode [EMAIL PROTECTED] wrote: Can I (programmatically) get a jpg or bitmap of a DisplayObject or aUIComponent as it looks in the browser?Like as

  1   2   3   4   5   6   7   8   >