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] Re: Bruce Eckels on Flex 2

2006-03-06 Thread Abdul Qabiz
: Bruce Eckels on Flex 2At What point those he talk about Flex? (the mp3 is quite long lol) cheers--- In flexcoders@yahoogroups.com, Abdul Qabiz [EMAIL PROTECTED]wrote: Cool! I knew Bruce on this list is the one Bruce Eckel, I even asked... -abdul On 3/6/06, Carlos Balacuit [EMAIL PROTECTED] wrote

Re: [flexcoders] Re: Bruce Eckels on Flex 2

2006-03-06 Thread Abdul Qabiz
It's podcast, so download from this link: http://www.javaposse.com/index.php?post_id=65327 MP3 link is near the end of page. On 3/6/06, Carlos Rovira [EMAIL PROTECTED] wrote: Hi Abdul, Can you provide a direct link? I can't see where is the interview. Thanks On 3/6/06, Abdul Qabiz

Re: [flexcoders] HTTPService: Security error accessing url

2006-03-06 Thread Abdul Qabiz
You can place a crossdomain.xml on remote computer, which allows requests from this domain. If you are using Flex Server (FES) you can use proxy... -abdul On 3/6/06, nahruka [EMAIL PROTECTED] wrote: I have the following code in my Flex 2.0 application. Basically I'mtrying to send a HTTP

Re: [flexcoders]Question about the Loader class

2006-03-06 Thread Abdul Qabiz
Hi, RichardI would like to look at your code, can you post a complete but simple version of your code...I am sure, Flash Player would not load data if it is already cached. There is something going wrong somewhere... -abdulOn 3/6/06, Richard Schutten [EMAIL PROTECTED] wrote: Does someone has a

Re: [flexcoders] Question about error 'Can not resolve a multiname reference...'

2006-03-06 Thread Abdul Qabiz
thought that when using import mx.controls.Loader i could directly callLoader. Is that correct?Right, but there is one Loader class in Flash Player API also, not sure if that is the reason you are getting that error... If that is the case, you have to explictly use it with fully-qualified

Re: [flexcoders] Flex application architecture for data validation

2006-03-06 Thread Abdul Qabiz
I think, validations which has sensitive information, should not be done on client side. For example, any business logic that reveals some sensitive algorithm, don't do it on clientYou can do normal data validations, like numbers, date, email, credit card number validations(to validate if user

Re: [flexcoders] place object on stage from class

2006-03-06 Thread Abdul Qabiz
Hi,DisplayObject's, such as Sprite, MovieClip have properties called stage and root.A flash/flex2 application can only have one stage but can have multiple roots (for each loaded SWF/Image). Check out the DisplayObject API for stage and root

Re: [flexcoders] place object on stage from class

2006-03-06 Thread Abdul Qabiz
); } }}You can also look at mx.managers.SystemManager it manages application window.-abdulOn 3/6/06, Abdul Qabiz [EMAIL PROTECTED] wrote: Hi,DisplayObject's, such as Sprite, MovieClip have properties called stage and root.A flash/flex2 application can only have one stage but can have multiple

Re: [flexcoders] FFMPEG GUI

2006-03-06 Thread Abdul Qabiz
Cool! I am gonna look at it, I am working on something that requires FFMPEG..Hope, it would be handy...Thanks-abdulOn 3/6/06, Sönke Rohde [EMAIL PROTECTED] wrote:Hi, I have build a GUI for FFMPEG using Flex 2. Read more here:http://soenkerohde.com/2006/03/06/ffmpeg-gui-using-flex-2-beta/The

Re: [flexcoders] eval gone in AS3, how to get reference to movieclip via target name?

2006-03-06 Thread Abdul Qabiz
eval was gone long back, I mean it was there but most of people stopped using, at least I did after Flash 5 was released. I could use [] or dot (.) to reference things...Much cleaner approach, though eval was little faster...But code clarity matters. Folks who were not using eval(..) would be

Re: [flexcoders] bind datagrid index to a combo box

2006-03-06 Thread Abdul Qabiz
A quick example:mx:Application xmlns:mx=http://www.macromedia.com/2005/mxml creationComplete=onAppInit() mx:Script import mx.collections.ArrayCollection; var dgDP:ArrayCollection; var cbDP:ArrayCollection function onAppInit() { var songs:Array = [ {song:A, rating:5, artistId:1},

Re: [flexcoders] Questions about Thread

2006-03-06 Thread Abdul Qabiz
Macromedia Flash Player is single threaded VM. Which means, none of these makes thread hence they are asynchronous.Makes sense?-abdulOn 3/6/06, sn197412 [EMAIL PROTECTED] wrote: Hi.1. RemoteObject doesn't make new threads, right?2. Event makes new threads, right?3. Which is AVM based on multi

Re: [flexcoders] Bruce Eckels on Flex 2

2006-03-05 Thread Abdul Qabiz
Cool! I knew Bruce on this list is the one Bruce Eckel, I even asked...-abdulOn 3/6/06, Carlos Balacuit [EMAIL PROTECTED] wrote:In an interview with Bruce Eckel (author of the books Thinking in C++ and Thinking in Java ), he talks about his positive experiencewith experimenting with Flash and

Re: [flexcoders] Re: Flex and URL variables

2006-03-05 Thread Abdul Qabiz
You mean, if you try to pass variables to a html page that embeds the SWF?http://myserver/myflexapp.html?foo=barI think, then you can use _javascript_ to extract query-string variables and pass it to SWF using ExternalInterface or using flashvars (if your embedding SWF using JS itself).

Re: [flexcoders] Re: Flex and URL variables

2006-03-05 Thread Abdul Qabiz
Oops! there are few errors in code I sent. I forgot to remove exteds Proxy from QueryString class.Please hold on, I would send another mail in a while.-abdul On 3/6/06, Abdul Qabiz [EMAIL PROTECTED] wrote: Hi,I wrote a somple QueryString class in AS3, that would get you parameters passed

Re: [flexcoders] Catching ChangeEvent 1.5

2006-03-03 Thread Abdul Qabiz
Hi,If array's reference changes, you can watch that. But if individual elements are changing you can watch those.What I suggest that instead of uusing raw Arrays, you can wrap these arrays in some class and add/remove elements using the methods of the classs... Check out the flexcoder's FAQ and

Re: [flexcoders] Flex and URL variables

2006-03-03 Thread Abdul Qabiz
Hi Jesse,I think, even in Flex 1.5 it was quite straight forward. You just need to declare public vars in MXML and then you can pass those vars through query string. F.ex.:##querystring.mxmlmx:Application xmlns:mx= http://www.macromedia.com/2003/mxml mx:Scriptimport mx.controls.Alert;public var

Re: [flexcoders] xml files embedded in swf?

2006-03-03 Thread Abdul Qabiz
-Original Message- From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Abdul Qabiz Sent: Tuesday, February 28, 2006 00:20 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] xml files embedded in swf? Hi Jan, This is not a strange behaviour. mx:Model

Re: [flexcoders] Security sandbox violation

2006-03-03 Thread Abdul Qabiz
Hi,How are you making AMFPHP connection? Are you using carlaabreu.com/../gateway.php or www.carlaabreu.com/../gateway.php ?I think, if you are trying to access data from a sub domain to main domain, it might be problem...Not sure, check the security whitepaper for the Maths behind it...-abdul

Re: [flexcoders] Re: About Flex 2 Beta risk to use and best way to communicate with php

2006-02-28 Thread Abdul Qabiz
2. You can also use HTTPService to communicate with PHP using HTTP GET/POST methods. -abdulOn 2/28/06, Mike Potter [EMAIL PROTECTED] wrote:1.I don't think so, but that's really up to you.What are you going to be developing?2.I've written up a small tutorial on how to communicate with

Re: [flexcoders] JSON library now available

2006-02-28 Thread Abdul Qabiz
Cool! I was about to finish AS3 version of this, but was stuck with few things. I would probably stop now :)-abdulOn 2/28/06, Darron J. Schall [EMAIL PROTECTED] wrote:For those interested, the JSON library is now available through the ActionScript 3 library page on the labs

Re: [flexcoders] Reading or Embedding SWFs?

2006-02-28 Thread Abdul Qabiz
://flashplatform/dev/projects/maelstrom/specs/localfilesecurity/LocalFileSecurity.cfm http://www.macromedia.com/devnet/flashplayer/articles/flash_player_8_security.pdfHope this helps,Thanks HarishFlex-QAAdobe India.--- Abdul Qabiz [EMAIL PROTECTED] wrote: Hi Bruce, Loading local SWF might not be working

Re: [flexcoders] URL Loader with CGI

2006-02-27 Thread Abdul Qabiz
Hi,Things have changed in Macromedia Flash Player 8.5 and AS3. Like LoadVars, _level0 etc are not there in Macromedia Flash Player 8.5.You can look at the AS2 to AS3 migration document and do the changes accordingly. BTW! You can you use HTTPService in Flex 1.5/Flex 2.0 to achieve similar

Re: [flexcoders] Reading or Embedding SWFs?

2006-02-27 Thread Abdul Qabiz
Hi Bruce,Loading local SWF might not be working because of Security Sandbox. Try giving the permission to your main to load SWFs from context-menu of Flash Player.Context-menu Settings first tab Advanced It would show advanced settings manager from macromedia.com, from there you can the

Re: [flexcoders] Flash Detection Option

2006-02-27 Thread Abdul Qabiz
I believe, you are talking about express-install. Not sure, if that works for Macromedia Flash Player 8.5 considering it is still under-development and would not be good idea to update user-machines with a binary which is not of release quality. May be after some-months, it would start

Re: [flexcoders] Focus within the Browser

2006-02-27 Thread Abdul Qabiz
Not sure of cross browser solution, but in IE you can trap an event when activeX gets focus. You can then call some function in ActionScript using ExternalInterface API.-abdul On 2/27/06, Claudia Barnal [EMAIL PROTECTED] wrote: How can I know if the Application has the focus within the

Re: [flexcoders] Focus within the Browser

2006-02-27 Thread Abdul Qabiz
Jonthan, does this help: http://www.splintered.co.uk/experiments/archives/flash_satay_firefox_bug/I think, similar issues has been discussed on flashcoders mailing list, you might want to search there. http://chattyfig.figleaf.com/mailman/listinfo/flashcoders-abdulOn 2/27/06, Jonathan Miranda

Re: [flexcoders] Flash Detection Option

2006-02-27 Thread Abdul Qabiz
liability for any errors or omissions in the contents of this message which arise as a result of e-mail transmission. If verification is required please request a hard-copy version. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Abdul Qabiz Sent: Monday

Re: [flexcoders] xml files embedded in swf?

2006-02-27 Thread Abdul Qabiz
Hi Jan,This is not a strange behaviour. mx:Model /, mx:XML / etc are compiler tags, which means content inside them (or linked) would be compiled in the SWF. It is well documented and it has been the same in Flex 1.5 as well.You use @Embed (..), mx:XML /, mx:Model / when you want to compile

Re: [flexcoders] xml files embedded in swf?

2006-02-27 Thread Abdul Qabiz
Also what is the limitation on the size of the xml embeded inthe swf? I think, you can embed quite good amount of data in SWF in Flex 2.0. Where as Flex 1.5 had some limit. Check out the Flexcoders FAQ, link is in the footer of this email. You can also search the flexoders archive, I remember

Re: [flexcoders] Flex2 :: Button :: Custom Skin Classes

2006-02-27 Thread Abdul Qabiz
Look at following links on skinning in Flex 2.0:-http://mannu.livejournal.com/305284.html http://weblogs.macromedia.com/khoyt/archives/2006/02/programmatic_sk.cfm-abdulOn 2/28/06, Teoti Graphix [EMAIL PROTECTED] wrote: Hello, I know in previous incarnations of the Button, you would subclass

Re: [flexcoders] Flex 2 Enterprise Services and SSL

2006-02-27 Thread Abdul Qabiz
I guess, it should support. If not, then it won't be hard doing the same by setting up few things in place. I guess, FES uses RTMP/AMF as communication protocol and you can make both of these work over SSL.See this link:

Re: [flexcoders] DG display with xml and webservice

2006-02-27 Thread Abdul Qabiz
Try this:mx.utils.ArrayUtil.toArray(ResultEvent(event).result)mx:WebService id=srvuseProxy=falsewsdl=http://flex.homesmartagent.com /cfc/adminHS2F.cfc?wsdlresult=agents = new ArrayCollection(mx.utils.ArrayUtil.toArray (ResultEvent(event).result))showBusyCursor=true /Does that work?-abdulOn

Re: [flexcoders] Flex builder 1.5 or 2.0

2006-02-27 Thread Abdul Qabiz
FlexBuilder 2 is much better than FlexBuilder 1.5. It is based on Eclipse and has better development work flow, debugging capabilities, project management and much more. http://labs.macromedia.com/wiki/index.php/Flex_Builder:overviewAdobe Flex 2.0 is far superior than Flex 1.5. It has more

Re: [flexcoders] Automatic layout positioning

2006-02-13 Thread Abdul Qabiz
Hi Alberto,If you are using Flex 2.0, you can use:includeInLayout and visible property together to acheive this.Check out Manish Jethani's post, where he has talked about it. http://mannu.livejournal.com/319589.html (scroll down in the page to see).-abdulOn 2/13/06, Alberto Albericio Salvador

Re: [flexcoders] Datagrid to HTTPService - Pls help

2006-02-13 Thread Abdul Qabiz
Hi,Datagrid's dataProvider property contains the entire data. You can create a XML or property-value pairs by iterating over it. I don't remember if there is a direct way of doing.Had you been using RemoteObject etc, you could have passed the entire dataProvider array as it is. -abdulOn

Re: [flexcoders] pageTitle bu g?

2006-02-07 Thread Abdul Qabiz
: Hmm ... I am not seeing anything. :-) Isnt it supposed to display the stringon the title bar of the browser? It doesnt :( Yes, I am using FlexBuilder 2.0 Sree - Original Message - From: Abdul Qabiz To: flexcoders@yahoogroups.com Sent: Tuesday, February 07, 2006 10

Re: [flexcoders]does flex1.5 support arabic text?

2006-02-06 Thread Abdul Qabiz
Hi,RTL is not supported in Macromedia Flash Player. But you can still do lots of RTL stuff in Flash Player, just search in Google for RTL and Flash...You would surely get some links.-abdul On 2/7/06, Nithya R [EMAIL PROTECTED] wrote: hi, i want to know if flex1.5 supports arabic text? i

Re: [flexcoders] pageTitle bu g?

2006-02-06 Thread Abdul Qabiz
What is the unexpected thing, you are seeing?Are you using FlexBuilder 2?-abdulOn 2/6/06, Sreejith Unnikrishnan [EMAIL PROTECTED] wrote: Hmm ... looks like specifying the pageTitle on the Application tag does not have the expected result! -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Re: How to use action script in flex builder 2 beta1 ?

2006-02-03 Thread Abdul Qabiz
Hi, You can put the actionscript file in a sub-directory, just use the refer the right path in mx:Script ../ f.ex. mx:Script source=scripts/app_script.as/ where app_script.as is inside scripts directory... -abdul On 2/3/06, Haroldo [EMAIL PROTECTED] wrote: ThanksJoão !It´s working now,

Re: [flexcoders] Cairngorm 2.0 available

2006-02-01 Thread Abdul Qabiz
This is great news... Thanks Cairngorm team for putting it up...I know, there were several challenges while porting it or coding it.. -abdul On 2/1/06, Steven Webster [EMAIL PROTECTED] wrote: Hi folks, http://www.richinternetapps.com/archives/000143.html Enjoy. The day after beta build,

RE: [flexcoders] Re: unsubscribe

2006-01-28 Thread Abdul Qabiz
Or send an email to: [EMAIL PROTECTED] -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of deepu_vermaSent: Friday, January 27, 2006 7:02 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Re: unsubscribe 1. Login to yahoo group2. Edit membership3. Click

RE: [flexcoders] customized combo

2006-01-28 Thread Abdul Qabiz
Hi Rajni, You can look at the styles of List component. Because the list you see in combobox is an instance of List. If you are not able to figure out, let use know again. -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of RajniSent: Friday, January 27,

RE: [flexcoders] getUrl() - Can I pass the object/variable

2006-01-28 Thread Abdul Qabiz
Hi, Did you look at Flash-_javascript_ Integration kit? http://weblogs.macromedia.com/flashjavascript/ I think, you can do that using it. -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shahnavaz AlwareSent: Saturday, January 28, 2006 5:25 AMTo:

RE: [flexcoders] How to fix this error?

2006-01-25 Thread Abdul Qabiz
Hi, Can you show the code? I think, you are trying to show a component or instantiate a component while its all dependencies are not yet initialized. Please share the code which is throwing this error. -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Value objects

2006-01-24 Thread Abdul Qabiz
Hi, There are two things:- * I think, variables in actionscript should be in captial-case because the Coldfusion remoting adapter sends all variables in capital case. * Second, though I am not sure, variables in actionscript should be public. Use the following code and let us know if it

RE: [flexcoders] microphone object in AS3

2006-01-24 Thread Abdul Qabiz
What problem, are you facing? -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of deepu_vermaSent: Tuesday, January 24, 2006 1:05 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] microphone object in AS3 Any body tried to work with the microphone on

RE: [flexcoders] HTTPService onLoad

2006-01-24 Thread Abdul Qabiz
You mean, when HTTPService has finished loading the results from request sent to a server? Check out "result" event of HTTPService. Note: You need to call HTTPServiceInstance.send() to initiate server call. -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] html text to navigate tab navigator

2006-01-24 Thread Abdul Qabiz
Hi, Use this: a href=""text /a -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rgwilson26Sent: Wednesday, January 25, 2006 12:16 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] html text to navigate tab navigator I have a Tab navigator with

RE: [flexcoders] Box class and fillColors style Flex 1.5

2006-01-24 Thread Abdul Qabiz
fillColors is an inherited style and in many case it doesn't apply to containers/components. Box is one of them. Hopefully, asdocs would be much improved in Flex 2.0 -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Douglas KnudsenSent: Wednesday, January

RE: [flexcoders] How to use precompiled mxml with Remote Object?

2006-01-24 Thread Abdul Qabiz
Hi, While pre-compiling a MXML, specify the proxyuRL or contextroot compiler arguments. It should work. I digged into archives to find any existing discussion. I found the following link, Ihope it helps you. Start readingfrom bottom of page because some other stuff got discussed later in

RE: [flexcoders] Re: microphone object in AS3

2006-01-24 Thread Abdul Qabiz
of attaching a microphone to an objectit would help a lot.Thanks,Deepak--- In flexcoders@yahoogroups.com, "Abdul Qabiz" [EMAIL PROTECTED] wrote: What problem, are you facing? -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]

RE: [flexcoders] Multiple values in a data model

2006-01-24 Thread Abdul Qabiz
I would use an array of objects to hold different entries. Send the array to backend for processing in one shot... public class BasicInformation { public var eventDate:String; //similarly other fields. public function BasicInformation(eventDate:String //, similarly other

RE: [flexcoders] Re: Value objects

2006-01-24 Thread Abdul Qabiz
--- In flexcoders@yahoogroups.com, "Abdul Qabiz" [EMAIL PROTECTED] wrote: Hi, There are two things:- * I think, variables in actionscript should be in captial-case because the Coldfusion remoting adapter sends all variables in capital case. * Second, though I am not sure, variables in actionscr

RE: [flexcoders] line break in the formitem label

2006-01-23 Thread Abdul Qabiz
Hi, You can achieve the same by subclassing the FormItem class and using multiline textinput instead of single-line textinput. -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of deepu_vermaSent: Monday, January 23, 2006 5:55 PMTo:

RE: [flexcoders] setPropertiesAt and Cairngorm are not playing together nicely

2006-01-20 Thread Abdul Qabiz
 Place the code in creationComplete event-handler of DataGrid. I think, it would work. -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Aldo BucchiSent: Friday, January 20, 2006 4:08 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders]

RE: [flexcoders] Control devices from Flex

2006-01-10 Thread Abdul Qabiz
Hi, I am not sure about licensing in Flex 1.5, where you can not embed Flex apps in windows-application. However, I tell how I have done something in past in my previous company in some similar projects using Flash: * Embed Flash application in windows-application (VB/C++/C#) and do

RE: [flexcoders] Control devices from Flex

2006-01-10 Thread Abdul Qabiz
Another possiblity, I forgot to mention: XMLSocket in Macromedia Flash Player 7, if you are making Flex 1.5 application. Flex App (in browser) XMLSocket Socket Server (in OS App) - Other apps -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders]Displaying a value in datagrid column

2006-01-04 Thread Abdul Qabiz
Hi, You need to provide columnName. Check out the code below. mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; mx:Script var emailDataProvider = [{name:Foo, email:[EMAIL PROTECTED]}, {name:Zoo, email:[EMAIL PROTECTED]} ]; /mx:Script mx:DataGrid id=dgrdEmail

RE: [flexcoders] Like in Flash what is the rigth aprotch in Flex

2006-01-02 Thread Abdul Qabiz
Hi, You can look at mx:Image / and mx:Canvas / tag for the same. You can search the flexcoders archives(link is given in mail footer), there has been some discussions on the same. To get you started, here is code a sample code without drag and drop thingy: mx:Application

RE: [flexcoders] how to write on an XML file

2006-01-02 Thread Abdul Qabiz
Hi Ravi, Welcome to MacromediaFlex world. Macromedia Flex applications run in Macromedia Flash Player on client side. Due to security restrictions you can not write XML file directly from Flex/ActionScript code. But you can achieve it by using any server-side script like php, asp, java,

RE: [flexcoders] Pagination in Flex ?

2006-01-02 Thread Abdul Qabiz
Hi, In Flex 1.5, I think this is doable with some APIs in DataGrid/DataProvider, I don't remember at this moment. But you can create anothe data-provider object and bind it to DataGrid. So when you click the button, keep adding data from main data-provider to this other data-provider.

RE: [flexcoders] Editable grid

2006-01-02 Thread Abdul Qabiz
Hi, When you change the data in editable datagrid, data-provider associated with data-grid is automatically updated. So you just need to send all data in data-provider to server for saving it database. -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Pagination in Flex ?

2006-01-02 Thread Abdul Qabiz
OOPS! I forgot about it, nothing better than this... http://weblogs.macromedia.com/mchotin/archives/2004/03/large_data_sets.cfm -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt ChotinSent: Monday, January 02, 2006 8:53 PMTo:

RE: [flexcoders] html link in text

2005-12-17 Thread Abdul Qabiz
se help me in this issue... thanks in advance nithya Abdul Qabiz [EMAIL PROTECTED] wrote: Please see the code below: mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" creationComplete="initApp()"mx:Script![CDATA[import mx.controls.Alert;function openLink

RE: [flexcoders] Strange behavior on mx:TextArea

2005-12-16 Thread Abdul Qabiz
Hi, I think, that error is because of something else instead of this code. This error is because of improper casting... Can you post the complete code? -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of keishichi2001Sent: Friday, December 16, 2005 2:16

RE: [flexcoders] Selection.setSelection Issue

2005-12-15 Thread Abdul Qabiz
Hi, Can you please post the sample code, how are you doing? I think, it should work. Which version of Flash Player you are testing it in? -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian McPheetersSent: Thursday, December 15, 2005 1:27 PMTo:

RE: [flexcoders] Can you do a slideshow with flex

2005-12-15 Thread Abdul Qabiz
Hi, Yeah it is possible... You can load images using mx:Image / tag... Store image names in XML or Array.. Use mx:Image / and mx:Button / to do it... mx:Image source="image1.jpg" width="640" height="480"/ If you are making application using Flex 1.5, which targets Macromedia Flash

RE: [flexcoders] html link in text

2005-12-14 Thread Abdul Qabiz
Please see the code below: mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" creationComplete="initApp()"mx:Script![CDATA[import mx.controls.Alert;function openLink(){Alert.show("Link Clicked");}function initApp(){ txt.htmlText = "Click a href=''font

RE: [flexcoders] Best online resources to learn Flex

2005-12-08 Thread Abdul Qabiz
Hi, L at Macromedia Flex Dev Center Also Check out http://www.cflex.net, it contains the links for different resources... =abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Thursday, December 08, 2005 11:08 AM To:

RE: [flexcoders] how to handle an event dispatched by a tabnavigator component in main mxml

2005-12-05 Thread Abdul Qabiz
Hi Padma, You can see the event-handling section of Flex docs to learn how to handle events in Flex... I am giving a simple example below so that you can get started: #EventHandling.mxml## mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" mx:Script import

RE: [flexcoders] DataGrid Scrolling Issue

2005-12-04 Thread Abdul Qabiz
Title: Message Hi, That might be a bug, can you please share the code...Try to post a simple-but-complete-code to reproduce this.. Thanks -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alexander HearnzSent: Sunday, December 04, 2005 7:24 PMTo:

RE: [flexcoders] Parsing XML with namespaces in E4X (Flex2)

2005-12-03 Thread Abdul Qabiz
Title: RE: [flexcoders] Parsing XML with namespaces in E4X (Flex2) Hi, Use default xml namespace directive to solve this problem. Sorry, it is not documented in current livedocs for Flex 2 alphaWe are working many things, so hopefully you would see it updated soon... Solution: var

[flexcoders] Mac theme for Flex

2005-11-30 Thread Abdul Qabiz
Hi, Little OT: I generally don't post stuff which can be seen in MXNA or on blogs. But this one is really cool. Beam Jive guys have just posted a sample of Flex with Mac theme. I think, they would post the fla soon... Check out: http://www.beamjive.com/weblog.php?a=1id=131 -abdul

RE: [flexcoders] Mac theme for Flex

2005-11-30 Thread Abdul Qabiz
/weblog.php?a=1id=132 - Original Message - From: Abdul Qabiz [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, November 30, 2005 4:31 PM Subject: [flexcoders] Mac theme for Flex Hi, Little OT: I generally don't post stuff which can be seen in MXNA or on blogs

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] 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] 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] 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] 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] 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] 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] 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] 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] 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

<    1   2   3   4   5   6   7   8   >