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: [flexcoders

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

2005-10-16 Thread Abdul Qabiz
t: Re: [flexcoders] Flex 2 Alpha is here??? Its here, nowlabs.macromedia.comenjoy! ;) On 10/17/05, Abdul Qabiz <[EMAIL PROTECTED]> wrote: Don't worry by this tomorrow you gonna have Alpha-bits with you...Exciting...:)-abdul-Original Message-From: flexcoders@yahoogroups.com [m

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

2005-10-16 Thread Abdul Qabiz
query..That would really help everyone..     Thanks   -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris VelevitchSent: Sunday, October 16, 2005 11:14 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Flex 2 Alpha is here??? On 10/17/05, Abdul Qabiz &l

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: flexcoders@yah

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 D

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:-   http://www.macromedia.com/2003/mxml" xmlns="*">          // ActionScript Document [Event("cirPress")]import mx.core.UIComponentclass circle extends UIComponent {  [Embed(source="cir_sym.swf",symbol="cir_sym")]   var c

RE: [flexcoders] Presentation url (how many it costs "flex server")

2005-10-19 Thread Abdul Qabiz
Hi,   Check out MXNA. Many people have posted their thoughts:   http://weblogs.macromedia.com/mxna/index.cfm?page=1&SEARCHSORTBY=date&FEEDNAME=%2D1&CATEGORYID=%2D1&SMARTCATEGORYNAME=MAX&LANGUAGENAME=%2D1&QUERY=bySmartCategory&CATEGORYNAME=%2D1&FEEDID=%2D1&STARTDATE=%2D1&SMARTCATEGORYKEY=A9A06

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 tag anymore - name attrib

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(co

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

2005-10-20 Thread Abdul Qabiz
t the 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

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 is a 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 th

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: [flexc

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: Frid

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 Beha

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 cases

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 wo

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

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

2005-11-24 Thread Abdul Qabiz
, 2005 10: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 communicat

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,

[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=1&id=131 -abdul -

RE: [flexcoders] Mac theme for Flex

2005-11-30 Thread Abdul Qabiz
/weblog.php?a=1&id=132 - Original Message - From: "Abdul Qabiz" <[EMAIL PROTECTED]> To: 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. Bu

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 alpha…We are working many things, so hopefully you would see it updated soon... Solution: var

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: flexco

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##             import mx.controls.Alert;       function sayHelloWorld()     {   

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: flexcod

RE: [flexcoders] Re: Newbie Flex/Media Server problem

2005-12-08 Thread Abdul Qabiz
Hi Mike, There is no MediaDisplay class in Flex 2.0. VideoDisplay is a face-less component which you can wrap into any UI to do things. Can you please tell me the directory structure of flashcomm application? What does "video_app1" corresponds in this url: rtmp://localhost/video_app/video_app1/

RE: [flexcoders] html link in text

2005-12-14 Thread Abdul Qabiz
Please see the code below:   http://www.macromedia.com/2003/mxml" creationComplete="initApp()">         You can also use _javascript_: in tag or you can put a url there...   -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nithya RSent: Wednesday, Decem

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: fle

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 tag...   Store image names in XML or Array.. Use and to do it...         If you are making application using Flex 1.5, which targets Macromedia Flash Player 7, so you can only show non-progressive JPEG images.   In Flex 2 applica

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] 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:   http://www.macromedia.com/2003/mxml" creationComplete="initApp()">         You can also use _javascript_: in tag or you c

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

2006-01-02 Thread Abdul Qabiz
Hi,   You can look at and 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:           function startDragging()   

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

2006-01-02 Thread Abdul Qabiz
Hi Ravi,   Welcome to Macromedia Flex 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, jav

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 shr

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: flexcoders@yahoogroups

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. http://www.macromedia.com/2003/mxml";> var emailDataProvider = [{name:"Foo", email:"[EMAIL PROTECTED]"}, {name:"Zoo", email:"[EMAIL PROTECTED]"} ]; -abdul From: flexcod

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 th

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

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: flexcoders@yahoogroups.c

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 works

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 AS3

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:     text     -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 HTML links

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, I hope it helps you. Start reading from bottom of page because some other stuff got discussed later

RE: [flexcoders] Re: microphone object in AS3

2006-01-24 Thread Abdul Qabiz
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.

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

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 f

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. Clic

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: f

Re: [flexcoders] Re: One last try: Javascript security

2006-06-14 Thread Abdul Qabiz
Hi,Your code works for me. And yeah, I have allowed all files on my desktop in Settings Manager.So, I suggest always test files from a webserver...-abdulOn 6/14/06, drome.dario <[EMAIL PROTECTED]> wrote: Hi guys, I catch it: Visit this link bellow and add you html

Re: [flexcoders] Session Management

2006-06-15 Thread Abdul Qabiz
Hi Sreedhar,When you say maintain session, I take it as maintain session across the pages, right?In RIA world, there is no concept of pages and everything is a view. I can tell you one of the ways,I have tried. 1) With Flash Remoting or OpenAMF gateway:-Added a servlet filter on server, this ser

Re: [flexcoders] Flash Player 9 Projected Adoption rate

2006-06-15 Thread Abdul Qabiz
I am not too old but I too have observed great things, I would probably stop believing (after some years) how web used to be in back 1998-2001 :)-abdulOn 6/15/06, Michael Schmalle <[EMAIL PROTECTED]> wrote: I like this guy ;-) This is what I have seen also, the I

Re: [flexcoders] Re: printing/zooming bugs

2006-06-15 Thread Abdul Qabiz
I suggest, you to use Flex PrintJob class instead of Player's PrintJob. Flex 2 PrintJob gives you more control.mx.printing.FlexPrintJob ?If you still see the same problem...let us know... I know the person, who can answer this best :) -abdulOn 6/15/06, Peter Blazejewicz <[EMAIL PROTECTED]> wrote

Re: [flexcoders] check shared object exists

2006-06-15 Thread Abdul Qabiz
I see this as either of two questions:-1) Is SharedObject enabled on client?2) Is the data exists (which I set last time or is it first time) in SharedObject?To check (1), I would do this:try{lso.data.dummy = "dummy_text";lso.flush ();}catch (error:IOError){  trace ("SharedObject not enabled f

Re: [flexcoders] RemoteObject call results into a bindable var not updating...

2006-06-15 Thread Abdul Qabiz
recordID is untyped, could it be the reason? var recordID:uint = 0;Check if it works ?-abdulOn 6/15/06, Doug Arthur < [EMAIL PROTECTED]> wrote: Hi, I'm trying to call a cfc and put the results into a bindable public var and use that on the page. But the problem is t

Re: [flexcoders] running Flex 2 Beta 3 UIs

2006-06-15 Thread Abdul Qabiz
Sometimes, you might need to restart the machine. Installation sometimes doesn't complete because Yahoo! Messenger and several other softwares use ActiveX. Try restarting the machine. If it doesn't work then, then trying installing again but quit Yahoo Messenger, MSN Messenger etc, if you are ru

Re: [flexcoders] where's the best place to report bugs?

2006-06-15 Thread Abdul Qabiz
Hi Daniel,You are not supposed to reveal any information about beta things :), if someone is part of beta he/she knows things :)Never mind, thought to let you know :) -abdulOn 6/15/06, Daniel Tuppeny <[EMAIL PROTECTED]> wrote: When you log in to where you downloade

[flexcoders] "JavaScript" MXML component

2006-06-15 Thread Abdul Qabiz
http://www.abdulqabiz.com/blog/archives/macromedia_flex/a_mxml_componen.phpYou can use this component to write _javascript_ code within MXML document, when application is initialized all _javascript_ code would be exported to container HTML document's context. I just wanted to do, infact had fil

Re: [flexcoders] Re: "JavaScript" MXML component

2006-06-15 Thread Abdul Qabiz
an being is able to achieve: giving a problem, to think in the same solution regarless the distance, culture, believings and so on. --- In flexcoders@yahoogroups.com, "Abdul Qabiz" <[EMAIL PROTECTED]> wrote: > > http://www.abdulqabiz.com/blog/archives/macromedia_flex/

Re: [flexcoders] AS3 realtime sound processing from microphone

2006-06-15 Thread Abdul Qabiz
Check out André Michelle's blog:http://blog.andre-michelle.com/category/actionscript/On 6/16/06, geminy555 <[EMAIL PROTECTED]> wrote: Hi all, Is there any way to process the captured audio from microphone? We can process bitmap data at pixel level...but not audio

Re: [flexcoders] Re: "JavaScript" MXML component

2006-06-16 Thread Abdul Qabiz
these problems and I have found that navigateToURL( "_javascript_:eval('var a;\n\rvar b;')" ) behave different than ExernalInterface.call( "eval", "'var a;\n\rvar b;" ); Weird, isn't. Should the behave identically? --- In flexcoders@yahoogroups.c

Re: [flexcoders] Re: Intro to Flash development using Flex?

2006-06-16 Thread Abdul Qabiz
FlexBuilder 2 is great tool for ActionScript 3 based application development. But if you are going to develop for ActionScript 2, then it wont help.I just keep one frame in my fla that inludes a main.as. I used FlashCommand (by Mike Chembers) and ANT to do all build work. I use VIM for writing

Re: [flexcoders] Please Help With MXMLC Compile Error

2006-06-16 Thread Abdul Qabiz
To be honest, I just use MXMLC for all my Flex 2/AS3 related work. I used FlexBuilder2 for prototyping sometimes, its fast.I never got such error. Can you please post the simplest code that produces this error? I can test on my machine... I am sure, its some config or class path related issue. B

Re: [flexcoders] Re: One last try: Javascript security

2006-06-16 Thread Abdul Qabiz
Let your installer create trust files. Which IMO should be very carefully done :)-abdulOn 6/15/06, FineLine < [EMAIL PROTECTED]> wrote: Hi Matt, drome.dario and Abdul   Thanks, you have pointed me in the right direction.   In case anyone else needs to k

Re: [flexcoders] Re: Intro to Flash development using Flex?

2006-06-17 Thread Abdul Qabiz
wrote: Could use the ActionScript 2.0 plugin for eclipse as wellOn 6/16/06, Abdul Qabiz < [EMAIL PROTECTED] > wrote: FlexBuilder 2 is great tool for ActionScript 3 based application development. But if you are going to develop for ActionScrip

Re: [flexcoders] Connection Debugging

2006-06-19 Thread Abdul Qabiz
it works.-abdulOn 6/19/06, Bjorn Schultheiss <[EMAIL PROTECTED]> wrote: In Flash Development I was using ServiceCapture for my NetConnection Debugging.   What's the preferred NetConnection debugger for Flex2? In particular I'm using a Coldfusion backend.

Re: [flexcoders] LoadVars problem

2006-06-20 Thread Abdul Qabiz
Hi,If you are using Flex (1.5 or 2.0), I suggest using HTTPService.Coming back to your problem, make sure you have crossdomain.xml in place. Read Flash/Flex docs about cross domain stuff.-abdul On 6/21/06, Mehdi, Agha <[EMAIL PROTECTED]> wrote: Hi all, I have

Re: [flexcoders] Re: FlexPrintJob and large DataGrids?

2006-06-21 Thread Abdul Qabiz
The docs recommend that, for print jobs, you create a seperate custom component that contans the DataGrid in it's full size (no scroll bars). The print DataGrid is bound to the same dataProvider as the view DataGrid.Right. Use mx.printing.PrintDataGrid in that separate component and you woul

Re: [flexcoders] FLV can't load in to videoDisplay component from remote machine

2006-06-21 Thread Abdul Qabiz
Have you set hardcoded value for the bitrate? -abdulOn 6/21/06, Bhavin Padhiyar <[EMAIL PROTECTED] > wrote: hi Tom It is givinging me error of no bitrate matchError: 1000: No bitrate match     at mx.controls.videoClasses::VideoPlayer/play()     at mx.contro

Re: [flexcoders] [Ann] The world's largest Flex application

2006-06-21 Thread Abdul Qabiz
Just curious, what was criteria to decide that it's largest Flex app...No offenses..-abdulOn 6/21/06, Chris Velevitch < [EMAIL PROTECTED]> wrote: Robin Hilliard of Rocketboots (www.rocketboots.com.au) will talk about the lessons learnt from the world's largest Flex

Re: [flexcoders] Flash/ASO and ZoneAlarm Security Suite (v6.5.714.000).

2006-06-21 Thread Abdul Qabiz
Cool! Thanks for sharing the info...-abdulOn 6/21/06, John Grden <[EMAIL PROTECTED]> wrote: If you use zone alarm and you did the latest update (like I did), you might notice that you're going through a slight nightmare right now with file modified dates not being

Re: [flexcoders] Applet invocation using Flex

2006-06-21 Thread Abdul Qabiz
Hi,I am assuming you are doing this on client side? If yes, can you invoke applet using _javascript_? If yes, then you can do it with Flex...You can use ExternalInterface or navigateToURL (..) to do invoke any _javascript_ function which in turn launches Java Applet... -abdulOn 6/21/06, tinywhis

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 b

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   f.ex.     where app_script.as is inside scripts directory...     -abdul  On 2/3/06, Haroldo <[EMAIL PROTECTED]> wrote: Thanks  João !It´s working now, but i needed to put the ActionScript File in

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: http://g

Re: [flexcoders] pageTitle bu g?

2006-02-07 Thread Abdul Qabiz
wrote: Hmm ... I am not seeing anything. :-) Isnt it supposed to display the string on 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, 2

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 2/12/06,

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 result

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 > Advanced It would show advanced settings manager from macromedia.com, from there you can the directory.Tho

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 working..

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 Browser

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
ruses. The sender therefore does not accept 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

Re: [flexcoders] xml files embedded in swf?

2006-02-27 Thread Abdul Qabiz
Hi Jan,This is not a strange behaviour. , 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 (..), , when you want to compile the assets with-in the final SWFs.As Ha

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 i

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 subclas

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: http://www.macromedia.com/devnet/flashcom/articles/firewalls_proxy04.htmlA

Re: [flexcoders] DG display with xml and webservice

2006-02-27 Thread Abdul Qabiz
Try this:mx.utils.ArrayUtil.toArray(ResultEvent(event).result)useProxy="false"wsdl="http://flex.homesmartagent.com /cfc/adminHS2F.cfc?wsdl"result="agents = new ArrayCollection(mx.utils.ArrayUtil.toArray (ResultEvent(event).result))"showBusyCursor="true" />Does that work?-abdulOn 2/28/06, Jeremy

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 compo

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 PH

<    1   2   3   4   5   6   7   8   9   >