[flexcoders] Re: Distortion Effects?

2009-08-04 Thread malik_robinson
; > I will not attach it here to avoid problems with zipped files. > > Regards > > On Tue, Aug 4, 2009 at 4:56 PM, malik_robinson wrote: > > > > > > > Hi, > > > > > > > > I am trying to use the following example from "Tour De

[flexcoders] Distortion Effects?

2009-08-04 Thread malik_robinson
Hi, I am trying to use the following example from "Tour De Flex" but it's missing some of the files needed to run the example. Here is a link to the demo that shows the functionality I'm trying to use: http://www.adobe.com/devnet/flex/tourdeflex/web/#sampleId=19260;illustIn\ dex=0;docIndex=0

[flexcoders] TreeItemRenderer giving me problems

2009-01-23 Thread malik_robinson
Hi, I am getting an error trying to create my own TreeItemRenderer. I get an error saying "Error: 1023 Incompatible override". This is a compile time error. It points to my override function at least in FlexBuilder. My renderer is just a skeleton as of now but this error is preventing me from goi

[flexcoders] **View States Problem**

2008-11-26 Thread malik_robinson
Hi, I am using Flex 3 I am trying to use "view states" in my Flex application. My code seems to work fine when I just have two "view states", but when I have 3 states (including the base state), the screen never displays all 3 at the same time. I am displaying these states based on the result of

[flexcoders] Return query from flex after file upload??

2008-04-05 Thread malik_robinson
Hi, I am using Flex 3 and I would be quite grateful if someone can assist me here. I am trying to find out if I can return a query back to flex so I can populate this datagrid, but what makes this situation unique is I am uploading a csv file from flex and in ColdFusion converting it into query o

[flexcoders] Question on Accordion and Controlling Programmitacally

2007-02-24 Thread malik_robinson
Hi, I am using an Accordion in my application. When the screen loads, it shows the first child in the accordion, this is fine. However, I have a form on this screen and I would like to user to submit that form first before going to any of the other children in the accordion. Once they submit th

[flexcoders] Question on Accordion and Controlling Programmitacally

2007-02-24 Thread malik_robinson
Hi, I am using an Accordion in my application. When the screen loads, it shows the first child in the accordion, this is fine. However, I have a form on this screen and I would like to user to submit that form first before going to any of the other children in the accordion. Once they submit th

[flexcoders] Re: How can I make the draggable?

2007-02-10 Thread malik_robinson
Hi, Somehow I have double posted, sorry about that, I am trying to make panel draggable via the title bar only. I meant to add that to my initial post. -westside --- In flexcoders@yahoogroups.com, "malik_robinson" <[EMAIL PROTECTED]> wrote: > > Hi, > > I want t

[flexcoders] Re: How can I make the draggable?

2007-02-10 Thread malik_robinson
Hi, Somehow I have double posted, sorry about that, I am trying to make panel draggable via the title bar only. I meant to add that to my initial post. -westside --- In flexcoders@yahoogroups.com, "malik_robinson" <[EMAIL PROTECTED]> wrote: > > Hi, > > I want t

[flexcoders] How can I make the draggable?

2007-02-10 Thread malik_robinson
Hi, I want to be able to drag this panel around sort of like a floating window. It should be able to be dragged and I guess dropped, not really like dragging a value from datagridA to datagridB but Just like in windows how you can drag a dialog box around I want to do the same in my app. How can

[flexcoders] How can I make the draggable?

2007-02-10 Thread malik_robinson
Hi, I want to be able to drag this panel around sort of like a floating window. It should be able to be dragged and I guess dropped, not really like dragging a value from datagridA to datagridB but Just like in windows how you can drag a dialog box around I want to do the same in my app. How can

[flexcoders] Re: Populate Tree with data from a query?

2007-02-08 Thread malik_robinson
- In flexcoders@yahoogroups.com, "malik_robinson" <[EMAIL PROTECTED]> wrote: > > Hi, > > I will try this tonight and see how it goes. It seems with > RemoteObjects you can't have the resultFormat = e4x like you can with > an HTTPService call. With e4x its much easier

[flexcoders] Re: Populate Tree with data from a query?

2007-02-08 Thread malik_robinson
- In flexcoders@yahoogroups.com, "malik_robinson" <[EMAIL PROTECTED]> wrote: > > Hi, > > I will try this tonight and see how it goes. It seems with > RemoteObjects you can't have the resultFormat = e4x like you can with > an HTTPService call. With e4x its much easier

[flexcoders] Re: Populate Tree with data from a query?

2007-02-08 Thread malik_robinson
m/2007/2/6/Returning-a-query-to-flex > -as-xml> > > I'm always looking for more subscribers and comments, so please > subscribe... I usually put up and example on almost every post, unless > i'm just throwing up a link i want to remember. > > --

[flexcoders] Re: Populate Tree with data from a query?

2007-02-06 Thread malik_robinson
odel > class out of the picture and assign the dataProvider directly: > > acTree.dataProvider = xmlResult; > > > > Tracy > > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of malik_ro

[flexcoders] Re: Populate Tree with data from a query?

2007-02-06 Thread malik_robinson
tools.com/index.cfm/2007/2/6/Returning-a-query-to-flex-\ as-xml#more > > once you get it into flex, it will be declared as xml, and then in > your mx:Tree your going to declare a showRoot="false" > > the blog might be a little hard to follow, but I hope it helps. > > -

[flexcoders] Populate Tree with data from a query?

2007-02-06 Thread malik_robinson
Hi, I want to display a list of companies and contacts associated with each company in my app. I think a tree can do this, but I wanted to ask how can I populate a tree from a query? I would like the folders to be the companies and when you expand the folder you see a list of contacts associat

[flexcoders] Re: Can't find bug in this piece of ActionScript

2007-02-02 Thread malik_robinson
employeeStateId == dataProvider[i].stateId ) { > selectedIndex = employeeStateId; >} > } > return selectedIndex; > } > > > > Cheers, > Ralf. > > On 2/2/07, malik_robinson [EMAIL PROTECTED] wrote: > > > &g

[flexcoders] Re: Can't find bug in this piece of ActionScript

2007-02-02 Thread malik_robinson
nce. > What if you use binding instead? > > selectedIndex={ getStateIndex( *employeeStateId:Number, dataProvider:Array*) } > > Cheers, > Ralf. > > > > On 2/2/07, malik_robinson [EMAIL PROTECTED] wrote: > > > > > > Hi, > > > > The code works th

[flexcoders] Re: Can't find bug in this piece of ActionScript

2007-02-02 Thread malik_robinson
Hi, The code works the first time around. First time around meaning click an employee from the datagrid and the screen changes to a detail view of that employee. For some reason every user I bring up after the first user has the same "State (Arizona) for example" selected thereafter. The first

[flexcoders] Re: Can't find bug in this piece of ActionScript

2007-02-02 Thread malik_robinson
com, "Ralf Bokelberg" <[EMAIL PROTECTED]> wrote: > > Doesn't it have to be stateCB.selectedIndex = i; > Cheers, > Ralf. > > On 2/2/07, malik_robinson [EMAIL PROTECTED] wrote: > > > > Hi, > > > > I am trying to set the selectedIndex of m

[flexcoders] Can't find bug in this piece of ActionScript

2007-02-01 Thread malik_robinson
Hi, I am trying to set the selectedIndex of my "U.S. States" custom combo box equal to what the user has stored in their record in our database. Someone posted a link to a similar tutorial, but I could not get it to work and I think it seems to be slightly different than what I am doing. When th

[flexcoders] Re: Passing Value Object to CFC as an argument?

2007-01-31 Thread malik_robinson
;; > variables.isactive = false; > > > > > > > > returntype="any"> > > > > returntype="void"> > > > > > returntype="any"> > > > > returntype="void"> > > > > > retu

[flexcoders] Passing Value Object to CFC as an argument?

2007-01-31 Thread malik_robinson
Hi, I am confused on how pass in arguments to the CFC when I am sending a ValueObject in from Flex. I have this code. public function saveEmployee( employeeVO : EmployeeVO ): void { var call:AsyncToken = service.saveEmployee( employeeVO ); call.addResponder( responder ); } The parameter emp

[flexcoders] How to set selectedIndex on comboBox equal result from rpc call??

2007-01-29 Thread malik_robinson
Hi, How do I set the selectedIndex of a equal to that of what comes back in the result from a remote object call when the component is loaded?? In my array I have the user's "state_code" and if they have a value for that I want to set the selectedIndex to that value. Seems as if it should be s

[flexcoders] Re: Cairngorm - Question on using ResultHandler

2007-01-29 Thread malik_robinson
then do event.result[0]. If its a map, then do event.result["keyname"] > > Dimitrios Gianninas > RIA Developer > Optimal Payments Inc. > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of m

[flexcoders] Re: Cairngorm - Question on using ResultHandler

2007-01-28 Thread malik_robinson
atement. > > Dimitrios Gianninas > RIA Developer > Optimal Payments Inc. > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of malik_robinson > Sent: Sunday, January 28, 2007 1:49 AM > To: flexcoders@ya

[flexcoders] Cairngorm - Question on using ResultHandler

2007-01-27 Thread malik_robinson
Hi, I have a question using Cairngorm and Commands. I am new to it but its making more sense to me each day at least it seems that way. I have the following in my LoginCommand.as public function result( data:Object ):void { var event:ResultEvent = data as ResultEvent; if (event.re

[flexcoders] Re: Binding result from CFC to a Detail Form

2007-01-19 Thread malik_robinson
be > in a scope accessible by your form. > > When you pull over your result from CF, you populate it with your data. > > user.FirstName = event.result.FirstName, etc. > > Your form elements would be already bound to the members of the user > object. > > , etc. > > HTH, &g

[flexcoders] Binding result from CFC to a Detail Form

2007-01-18 Thread malik_robinson
Hi, I am using a CFC here that has a method that accepts a userId, it then runs an sql query and retrieves all the data associated with the user like: FirstName LastName Email, etc I am trying to find out how I can set the form fields "text" property equal to that of the Array that is returned f

[flexcoders] Re: Access data in an Array Collection??

2007-01-15 Thread malik_robinson
th of the arraycollection. The only trick is that > event.result is typed as object, so you may need to explain to the compiler > that you know its actually an arraycollection. > > var ac:ArrayCollection = event.result as ArrayCollection; > trace(ac.length) > > > Good Luck. > &

[flexcoders] Access data in an Array Collection??

2007-01-15 Thread malik_robinson
Hi, I have a cfc that returns this query object to flex. It seems to convert it to an ArrayCollection? Is that correct? Questions 1. How can I get at the "email" field in this array? 2. How can I check if the array has a len greater than 0? I tried: trace(event.result.email), but that does

[flexcoders] Re: Getting Error: Event Type 'flash.event:event' is unavailable ?????

2007-01-13 Thread malik_robinson
Hi, I guess a better question is when do I use : [Event(name="eventName")] as opposed to: [Event(name="eventName",type="flash.event.event")] (this gives me that error in my original post ) Thanks --- In flexcoders@yahoogroups.com, "malik_robinson&q

[flexcoders] Getting Error: Event Type 'flash.event:event' is unavailable ?????

2007-01-13 Thread malik_robinson
Hi, I am getting this error: Event Type 'flash.event:event' is unavailable I have this function in my "Services.mxml" file: private function loginUser_result( event:ResultEvent ) : void { dispatchEvent( new Event("userAuthenticated") ); } Then in my main MXML file I have: Any idea on

[flexcoders] Re: Dispatch and Listen for events?

2007-01-13 Thread malik_robinson
Thanks --- In flexcoders@yahoogroups.com, "Ralf Bokelberg" <[EMAIL PROTECTED]> wrote: > > Every event has a type property. You need to set it using super( "myType" ); > Cheers, > Ralf. > > On 1/13/07, malik_robinson <[EMAIL PROTECTED]> wrote:

[flexcoders] Dispatch and Listen for events?

2007-01-12 Thread malik_robinson
Hi, I am not using Cairngorm or anything yet, but trying to learn to build some of this on my own through tutorials, books, etc. I am trying to build a basic login and I created a custom component called LoginPanel.mxml, and created a LoginEvent.as. I call LoginPanel.mxml in my "Main" applicati

[flexcoders] Re: Getting duplicate value in my combo box control

2007-01-09 Thread malik_robinson
Thanks, Malik --- In flexcoders@yahoogroups.com, Shannon Hicks <[EMAIL PROTECTED]> wrote: > > You could have tracked down your problem more easily with some sort of > HTTP sniffer. I use ServiceCapture. There are others out there that > support Flash's AMF. > >

[flexcoders] Re: Getting duplicate value in my combo box control

2007-01-08 Thread malik_robinson
--- In flexcoders@yahoogroups.com, "malik_robinson" <[EMAIL PROTECTED]> wrote: > > Hi, > > I did a trace using trace(ObjectUtil.toString(event.result)); > > I was able to see what my result handler had and it clearly shows > duplicate data. I see an array a

[flexcoders] Re: Getting duplicate value in my combo box control

2007-01-08 Thread malik_robinson
thought it might be the sql, but the sql is correct, I wrote the results of the query to a file using cffile and all is good, somewhere between the function call and the result handler somethin is going wrong. Any help highly appreciated. -Malik --- In flexcoders@yahoogroups.com, "malik_rob

[flexcoders] Getting duplicate value in my combo box control

2007-01-08 Thread malik_robinson
Hi, I seem to be getting duplicate values being displayed in my combo box component. I am using Flex and CF. The query returns two records and ultimately the combo box gets populated, but it has two values So I am getting Project Name: XO Project XO Project There are two records that part is

[flexcoders] Flex Console says: unable to bind to property 'instance' on class 'com.adobe.

2007-01-08 Thread malik_robinson
Hi, I am getting this error in the flex console when I debug my app, well not an error, but a warning. unable to bind to property 'instance' on class 'com.adobe.actors::ApplicationState' (class is not an IEventDispatcher) How can I fix this? Any help appreciated, I am a bit new to Flex 2.0 -M

[flexcoders] CSS and background image?

2007-01-07 Thread malik_robinson
Hi, I have an image I want to use for a header in this application, I have that working fine however, I am unsure how I can apply the following style. The image is 600px wide or so, and then I want this background image to repeat and fill the rest of my container. .masthead { padding: 0px;

[flexcoders] Re: Question on TabNavigator

2006-12-22 Thread malik_robinson
try like "10" for example....play around with it. > > ill look into your other questions > > > > --- In flexcoders@yahoogroups.com, "malik_robinson" > > Malik_Robinson@ wrote: > > > > > > Hi > > > > > > Few q

[flexcoders] Question on TabNavigator

2006-12-22 Thread malik_robinson
Hi Few questions that I think should be easy to answer? 1. How can I space the tabs up in a tab navigator? I'd like to have space between each tab. They look too scrunched to me at least by default. 2. I am trying to build an application that has tabbed interface and I am wondering is this the

[flexcoders] Remote object not working when called from delegate

2006-11-19 Thread malik_robinson
Hi, I am trying to find out why this remote object does not return successfully using Cairngorm. I can use the same remote object in an application just by itself. The remote object invokes a CFC method and populates a datagrid just fine, but when I am trying to use a delegate to call this serv

[flexcoders] Re: Cairngorm and working with Delegate question

2006-11-19 Thread malik_robinson
ure, I just know its not calling the "result" function, its calling the "fault" function. Any help appreciated --- In flexcoders@yahoogroups.com, "malik_robinson" <[EMAIL PROTECTED]> wrote: > > > Hi, > > I am trying to learn to use Cairngorm and I

[flexcoders] Cairngorm and working with Delegate question

2006-11-19 Thread malik_robinson
Hi, I am trying to learn to use Cairngorm and I am trying to find out where I am going wrong. I have a CFC which I am trying to call and get a string back for testing to make sure its all working. The delegate should call the result or the fault function in my LoginUserCommand if I am correct.

[flexcoders] CreationComplete?

2006-08-15 Thread malik_robinson
Hi, I am trying to populate this data grid upon page load. If the page I am working has the tag, then I can use creationComplete(), but what can I do if I am working on a page which does not contain the I can load the data grid if I write a function, but I want it to execute automatically.

[flexcoders] Re: Getting RPC Error, Channel.Connect.Failed error NetConnection.Call.Failed:HTTP

2006-08-15 Thread malik_robinson
Hi, Well, good news, problem solved. I reinstalled Updater 7.02 for CF and boom, my code works again. I then looked in the CF Admin and that beta text is gone next to the CF version so apparently that was the issue. -Malik --- In flexcoders@yahoogroups.com, "malik_robinson" <[EM

[flexcoders] Re: Getting RPC Error, Channel.Connect.Failed error NetConnection.Call.Failed:HTTP

2006-08-15 Thread malik_robinson
Builder was released. > > I would guess your "beta" message is in response to that, not flex builder. > > simeon > > On 8/15/06, malik_robinson [EMAIL PROTECTED] wrote: > > > > Hi, > > > > I checked in the ColdFusion Server Admin Area and

[flexcoders] Re: Getting RPC Error, Channel.Connect.Failed error NetConnection.Call.Failed:HTTP

2006-08-15 Thread malik_robinson
reason mine is showing Beta and I am unsure how to remove the beta connector. -Malik --- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Monday 14 August 2006 06:50, malik_robinson wrote: > > error NetConnection.Call.Failed: HTTP: Status 500"] &

[flexcoders] Re: Getting RPC Error, Channel.Connect.Failed error NetConnection.Call.Failed:HTTP

2006-08-15 Thread malik_robinson
wrote: > > On Monday 14 August 2006 06:50, malik_robinson wrote: > > error NetConnection.Call.Failed: HTTP: Status 500"] > > That's the internal error HTTP status code. > What's in the server logs ? > > -- > Tom Chiverton > > **

[flexcoders] Getting RPC Error, Channel.Connect.Failed error NetConnection.Call.Failed:HTTP

2006-08-13 Thread malik_robinson
Hi, I seem to be getting this error all of a sudden on some test code that used to work.  Using Flex 2.  Here is a snippet: Error: [RPC Fault faultString="Send failed" faultCode="Client.Error.MessageSend" faultDetail="Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Status 500"]  xm

[flexcoders] Dump?

2006-08-06 Thread malik_robinson
Hi, How can I dump the following variable "loginVO" and see its output? public function loginUser() : void { var loginVO : LoginVO = new LoginVO(); loginVO.username = username.text; loginVO.password = password.text; var event

[flexcoders] Re: Can someone explain this code, its related to Cairngorm?

2006-07-27 Thread malik_robinson
Hi, Thanks for the quick responses. Helps a bunch. Malik --- In flexcoders@yahoogroups.com, "Paul Andrews" <[EMAIL PROTECTED]> wrote: > > > - Original Message - > From: "malik_robinson" [EMAIL PROTECTED] > To: flexcoders@yahoogroups.com > Se

[flexcoders] Can someone explain this code, its related to Cairngorm?

2006-07-27 Thread malik_robinson
Hi, I am trying to understand the ModelLocator and how Cairngorm works. I have been reading, but I think I need some additional information on the code below if possible. 1. What is the difference between Public function and Public Static function. I assume Public functions can be called fr

[flexcoders] Re: Problem with States and switching to a given state.

2006-07-19 Thread malik_robinson
, > > Here is an example how to control view state with Cairngorm2. > > http://www.cflex.net/showfiledetails.cfm?ChannelID=1&Object=File&objectI\ > D=422 > <http://www.cflex.net/showfiledetails.cfm?ChannelID=1&Object=File&object\ > ID=422> >

Re: [Junk E-Mail - MED] [flexcoders] Problem with States and switching to a give

2006-07-19 Thread malik_robinson
gedin",type="flash.events.event")]> > > Then change this:> > > In Main.mxml, add:> > > > > And change this:> > > Now, this code obviously isn't tested, but it should send you down the right> path :)> > Shan> >_ &g

Re: [Junk E-Mail - MED] [flexcoders] Problem with States and switching to a give

2006-07-19 Thread malik_robinson
e this: > > > In Main.mxml, add: > > > > > And change this: > > > Now, this code obviously isn't tested, but it should send you down the right > path :) > > Shan > >_ > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTEC

[flexcoders] Trying out Cairngorm Login Example

2006-07-17 Thread malik_robinson
Hi, I am trying to use the Cairngorm framework and following this tutorial, but I get 1 error and 1 warning that prevent things from working http://weblogs.macromedia.com/auhlmann/  - Link to tutorial for those who may be looking.  This is just a warning in Flexbuilder so it might not be a big

[flexcoders] Question on States

2006-06-20 Thread malik_robinson
Hi, I am trying to utilize states to ultimately have a login page when my app loads, upon successful login, I want my main.mxml file to load which is basically the "home page" of my application. As of now in the "states" panel, I have a base state, but my base state is my home page and I do no

[flexcoders] Re: Flex beta 3/CF and Datagrid not being populated

2006-06-19 Thread malik_robinson
ener functions> with RPC calls. But, let's take this one step at a time. See the> example below.> > > > layout="absolute" creationComplete="initApp()">> > > > > > > source="myapp.cf.com.artists" showBusyCursor="true" />>

[flexcoders] Re: Flex beta 3/CF and Datagrid not being populated

2006-06-19 Thread malik_robinson
dataProvider, without artists at the end. > > -TH > > --- In flexcoders@yahoogroups.com, "malik_robinson" > wrote: > > > > > > Hi, > > > > I ended up getting an error, I think it was due to the text > > "lastResult". Below is the e

[flexcoders] Re: Flex beta 3/CF and Datagrid not being populated

2006-06-19 Thread malik_robinson
> Sorry, use:> > artSvc.getArtists.lastResult> > for the dataProvider, without artists at the end.> > -TH> > --- In flexcoders@yahoogroups.com, "malik_robinson" > Malik_Robinson@ wrote:> >> > > > Hi,> > > > I ended up gettin

[flexcoders] Re: Flex beta 3/CF and Datagrid not being populated

2006-06-18 Thread malik_robinson
uot; <[EMAIL PROTECTED]> wrote:>> > Hi Malik,> > I can't test this, but this is how the examples that I've seen work.> > -TH> > > > layout="absolute" creationComplete="initApp()">> > > > > > > sou

[flexcoders] Flex beta 3/CF and Datagrid not being populated

2006-06-18 Thread malik_robinson
Hi, I have the following code that I *thought* would work, but it does not. Can anyone see why this might not work? Basically the datagrid does not get loaded, the browser says "transferring data from localhost", but it never populates the grid, no error, I see the show busy cursor and my em

[flexcoders] Flex/CF Tutorial PDF Posted on Adobe Site, having problem, getting errors.

2006-06-07 Thread malik_robinson
Hi, I am trying to use this example to get Flex 2.0 Beta 3, Mystic, and CF 7.02  to work together but having some problems.  If someone has a few moments to help that would be great, there is not much code to struggle through and this example is posted on the Macromedia/Adobe Site. I am using CF

[flexcoders] Re: New to Flex, and mxml and getting an error trying to use RSS

2006-01-08 Thread malik_robinson
ears to be a compile time error. Try to be more > specific next time. > > > > Cheers, > > Franck > > > > _ > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of malik_robinson > Sent: vrijdag 6 januari 2006 8:52 > To: f

[flexcoders] Re: New to Flex, and mxml and getting an error trying to use RSS

2006-01-06 Thread malik_robinson
id="feedRequest" > url="http://weblogs.macromedia.com/mchotin/index.xml"; > useProxy="false"/> > > > > > > > > > >

[flexcoders] Re: New to Flex, and mxml and getting an error trying to use RSS

2006-01-04 Thread malik_robinson
esent granting> you access to the resource.> > > > Cheers,> > Franck> > > > _ > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On> Behalf Of malik_robinson> Sent: dinsdag 3 januari 2006 8:14> To: flexcoders@yahoogroups.com> Subject: [flexcoders] N

[flexcoders] New to Flex, and mxml and getting an error trying to use RSS

2006-01-03 Thread malik_robinson
Hi, I am very new to Flex and trying to try some basic tutorials in the help documentation that comes with Flex Builder 2 alpha. I searched the mailing list/archives trying to find out why I get the following error message but to no avail. The error is below: "The processing instruction targe