[flexcoders] Re: using and detecting menubar selection

2005-08-25 Thread Greg Morphis
Anyone? Is this what you do? Just have a massive if condition or switch case? On 8/24/05, Greg Morphis [EMAIL PROTECTED] wrote: Maybe I'm missing something but how do YOU interact with the menuitem's you've created? I suppose I could add an id and pass that to an function like.. function

Re: [flexcoders] using and detecting menubar selection

2005-08-26 Thread Greg Morphis
Thats what I was looking for! Thanks Manish! On 8/26/05, Manish Jethani [EMAIL PROTECTED] wrote: On 8/24/05, Greg Morphis [EMAIL PROTECTED] wrote: Maybe I'm missing something but how do YOU interact with the menuitem's you've created? I suppose I could add an id and pass

[flexcoders] modifying the datefield object...

2005-09-08 Thread Greg Morphis
Is it possible to capture/modify the value that shows in the textbox of the datefield object? I've tried .value, .text and looked at the livedocs (didnt see .value or .text or anything usable). What I'm trying to do is make it to where if someone clicks on a date (9/20/2005) then the date that

[flexcoders] Re: modifying the datefield object...

2005-09-08 Thread Greg Morphis
I've found that I can use this to get the date change=displayDate(event.target.selectedDate) On 9/8/05, Greg Morphis [EMAIL PROTECTED] wrote: Is it possible to capture/modify the value that shows in the textbox of the datefield object? I've tried .value, .text and looked

[flexcoders] Re: modifying the datefield object...

2005-09-08 Thread Greg Morphis
the datefield value remains Sept 13th 2005. Livedocs says it accepts a date object, is that not one? daDate.selectedDate = new Date(cYear,cMonth,cDay); ?? Thanks! On 9/8/05, Greg Morphis [EMAIL PROTECTED] wrote: I've found that I can use this to get the date change=displayDate

Re: [flexcoders] Re: modifying the datefield object...

2005-09-08 Thread Greg Morphis
with no luck. On 9/8/05, Greg Morphis [EMAIL PROTECTED] wrote: yeah, I took that out in the last version. Thanks On 9/8/05, Philippe Maegerman [EMAIL PROTECTED] wrote: You added 1 to the month for the display, however you need to substrat that value later when creating your new date

[flexcoders] setting value to datefield text..

2005-09-09 Thread Greg Morphis
As per my previous post I've having problems trying to set the value of the textbox of the datefield component. I've tried mouseUp, mouseDown and offFocus. Is there a way of doing this so it's seemingly unnoticable to the user? I have a function that sets the selectedDate value..

[flexcoders] Re: modifying the datefield object...

2005-09-09 Thread Greg Morphis
); } and you can call it like... mx:DateField id=daDate change=getNextSaturday(event.target.selectedDate) / On 9/8/05, Greg Morphis [EMAIL PROTECTED] wrote: Well, I've gotten this far... function displayDate(date) { var cMonth; var cYear

Re: [flexcoders] setting value to datefield text..

2005-09-12 Thread Greg Morphis
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg Morphis Sent: Friday, September 09, 2005 10:49 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] setting value to datefield text.. As per my previous post I've having problems

[flexcoders] valueCommitted results in 3 alerts?

2005-09-12 Thread Greg Morphis
I took Matt's suggestion to using valueCommitted event to try to set the value of the text field of the DateField component. So to test it's functionality I did a simple alert.. mx:DateField id=daDate change=getNextSaturday(event.target.selectedDate); showToday=true valueCommitted=alert('hi'); /

[flexcoders] Re: valueCommitted results in 3 alerts?

2005-09-12 Thread Greg Morphis
=setDate / !-- NO () -- Causes it to run that function. It still doesnt update the text of the dateField but it at least goes to the function now. Is this a bug in valueCommitted? On 9/12/05, Greg Morphis [EMAIL PROTECTED] wrote: I took Matt's suggestion to using valueCommitted event to try to set

Re: [flexcoders] setting value to datefield text..

2005-09-13 Thread Greg Morphis
Neither of those worked, I've created a new post asking about valueCommitted but it wont work here. On 9/12/05, Greg Morphis [EMAIL PROTECTED] wrote: I use change to set the value of the DateField but the text field accompanying it doesnt change. I havent tried the valueCommited event yet

[flexcoders] Flex and Remote Objects

2005-09-13 Thread Greg Morphis
Anyone have links to a good tutorial on Flex and Remote Objects? I've tried to read the LiveDocs (http://livedocs.macromedia.com/flex/15/flex_docs_en/2244.htm) but this is just too dry and bland. A tutorial or links to not so bland information would be appreciated. Thanks! -- Auxilium meum a

[flexcoders] whitelist error?

2005-09-16 Thread Greg Morphis
I'm trying to run the RemoteObjectDemo from my local machine.. http://127.0.0.1:8301/explorer/data/RemoteObjectDemo.mxml and I'm getting a whitelist error.. You are not allowed to access this service samples.explorer.EmploeeManager. The service is not in the configured whitelist. My whitelist is

[flexcoders] Re: whitelist error?

2005-09-16 Thread Greg Morphis
Actually I have both the http-service-proxy and web-service-proxy bot set to http://* and https://* Thanks On 9/16/05, Greg Morphis [EMAIL PROTECTED] wrote: I'm trying to run the RemoteObjectDemo from my local machine.. http://127.0.0.1:8301/explorer/data/RemoteObjectDemo.mxml and I'm getting

[flexcoders] Re: whitelist error?

2005-09-16 Thread Greg Morphis
nevermind, I found that the remote-objects source whitelist needed to be populated sourcesamples.*/source sourcesamples/source On 9/16/05, Greg Morphis [EMAIL PROTECTED] wrote: Actually I have both the http-service-proxy and web-service-proxy bot set to http://* and https

Re: [flexcoders] Flex and Remote Objects

2005-09-16 Thread Greg Morphis
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg Morphis Sent: Tuesday, September 13, 2005 5:54 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex and Remote Objects Anyone have links to a good tutorial on Flex and Remote Objects? I've tried to read the LiveDocs (http

[flexcoders] centering a form....

2005-10-13 Thread Greg Morphis
I'm trying to center a form within a Canvas which is within a Panel. We're using multiple MXML files. I've got a loginView.mxml file and a main.mxml files. On the main.mxml file we use a panel and a viewstack to display the login and main views. Within the loginView.mxml page we have a Canvas,

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

2005-10-13 Thread Greg Morphis
This works incase anyone else runs into the same problem... mx:Panel id=AOPScheduler title=Login dropShadow=true x={(this.width - AOPScheduler.width) / 2} y={(this.height - AOPScheduler.height) / 2} On 10/13/05, Greg Morphis [EMAIL PROTECTED] wrote: I'm trying to center a form within

[flexcoders] text_mc in flex

2005-10-31 Thread Greg Morphis
I ran across some code: mx:DateField id=daDate selectedDate={_selectedDate} change=setDateFromCal(event) open=this.dispatchEvent(event) close=this.dispatchEvent(event) scroll=this.dispatchEvent(event) / mx:TextInput id=input

[flexcoders] Gaps between list items

2005-11-02 Thread Greg Morphis
Hiya, When using cellrenderer to populate a list ex: mx:List width=100% height=100% borderStyle=none rowHeight=25 marginLeft=30 marginRight=30

Re: [flexcoders] Gaps between list items

2005-11-03 Thread Greg Morphis
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg Morphis Sent: Wednesday, November 02, 2005 12:10 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Gaps between list items Hiya, When using cellrenderer to populate

[flexcoders] Java ArrayList

2005-11-18 Thread Greg Morphis
Hi, I'm working on a Flex project with a Java backend. I'm making a JSP page (or trying to) that will output a schedule in an HTML table. I cant seem to get it to work I import all of my classes, no problem there.. I declare my variables, no problem there.. It seems to be in the while loop..

[flexcoders] Re: Java ArrayList

2005-11-21 Thread Greg Morphis
anyone?? On 11/18/05, Greg Morphis [EMAIL PROTECTED] wrote: Hi, I'm working on a Flex project with a Java backend. I'm making a JSP page (or trying to) that will output a schedule in an HTML table. I cant seem to get it to work I import all of my classes, no problem there.. I declare my

[flexcoders] returning values from a webservice

2006-05-18 Thread Greg Morphis
so I have a function in a CFC that returns to rows, a type_id and a total. I have 2 text boxes that I want to populate with those values. Something like: textA = the total where the type_id = 1; textB = the total where the type_id = 2; But how do I assign these values? I assume it's done in

Re: [flexcoders] returning values from a webservice

2006-05-18 Thread Greg Morphis
them to 0 so the text fields show 0 until the ws operation completes. Darren From: Greg Morphis [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] returning values from a webservice Date: Thu, 18 May 2006 12:15:58 -0500 so I have

[flexcoders] flex 2 with CFC help...

2006-08-15 Thread Greg Morphis
In my flex 2 application, I'm trying to call to a CFC and return a query.. I'm getting an error stating.. faultCode:Client.Input faultString:'unexpected parameter 'nxx' found in input arguments.' faultDetail:null This is what my webservice call looks like.. mx:WebService id=myWS

[flexcoders] unable to load wsdl?? flex, you're pissing me off...

2006-08-15 Thread Greg Morphis
When I run my app I get the error Unable to load WSDL... I can view my cfc in the component explorer and I can create a .cfm page to reference the cfc file. So I know my cfc is okay. Something I did notice was in CF I am getting these strange error messages that I havent seen before. 08/15

Re: [flexcoders] unable to load wsdl?? flex, you're pissing me off...

2006-08-15 Thread Greg Morphis
cool, thanksOn 8/15/06, Clint Modien [EMAIL PROTECTED] wrote: http://www.martijndevisser.com/blog/article/why-crossdomainxml-is-a-good-thing On 8/15/06, Greg Morphis [EMAIL PROTECTED] wrote: When I run my app I get the error Unable to load WSDL... I can

[flexcoders] Flex doesnt like CFCs...

2006-08-15 Thread Greg Morphis
I'm passing a 10 digit number to my cfc and within the cfc I want to divide the 10 digit number into 3 parts using the ColdFusion mid() function. I cannot seem to get it to work. here's what I'm trying.. and failing at.. cfargument name=damin type=string required=true / cfset var npa = ''

Re: [flexcoders] Flex doesnt like CFCs...

2006-08-15 Thread Greg Morphis
5/06, Simeon Bateman [EMAIL PROTECTED] wrote: How are you calling this from flex? Because it appears the error is in flex trying to reach the destination you have provided. You are correct in that your cf should be fine, so lets look at how you are trying to talk to it from flex. simeonOn 8/15/06,

Re: [flexcoders] Flex doesnt like CFCs...

2006-08-15 Thread Greg Morphis
Doh! you were right.. I was missing the {} data binding in the webservice call.. whew.. the goat has been spared.. Thanks Simeon for directing me to that.. geeze, can't believe I overlooked it.. On 8/15/06, Greg Morphis [EMAIL PROTECTED] wrote: well, see I know it's not that.. because if I

Re: [flexcoders] OFFTOPIC: Flexmascard

2006-12-20 Thread Greg Morphis
great idea, thanks for sharing! On 12/20/06, wesubotnix [EMAIL PROTECTED] wrote: Here is our Christmas card made in Flex: Merry Christmas everybody! http://www.delc.dk/julekort2006/ Would be nice to see other flexmascards Thanks! Fredrik -- Flexcoders Mailing List FAQ:

[flexcoders] Unknown Item is declared as the root....

2007-01-03 Thread Greg Morphis
Has anyone seen this error? An unknown item is declared as the root of your MXML document. Switch to source mode to correct it I've got Flex 2 installed on Tomcat 5.5 server. We have our code in CVS. If I delete the local project and then create a new one by checking it out in CVS and choose Flex

[flexcoders] IFlexModule

2007-01-10 Thread Greg Morphis
I downloaded Eclipse 3.2 (the all in one wtp package), Flex 2.0.1. I did a clean install in new folders. Now when I open Eclipse and open a project I'm getting some IFlexModule error.. I did a google search and that didnt help much. Has anyone seen this error and know how to fix it? It's getting

Re: [flexcoders] Re: IFlexModule

2007-01-10 Thread Greg Morphis
). Something's wrong inside the black box. Hope someone can help here. --- In flexcoders@yahoogroups.com, Greg Morphis [EMAIL PROTECTED] wrote: I downloaded Eclipse 3.2 (the all in one wtp package), Flex 2.0.1. I did a clean install in new folders. Now when I open Eclipse and open

Re: [flexcoders] Re: IFlexModule

2007-01-10 Thread Greg Morphis
. aopschedulerline 16 1168453155423 2226 1172: Definition mx.core:IFlexModule could not be found. aopschedulerline 6 1168453153063 2225 1180: Call to a possibly undefined method IFlexModule.aopschedulerline 24 1168453153063 2223 On 1/10/07, Greg Morphis [EMAIL

Re: [flexcoders] Re: IFlexModule

2007-01-10 Thread Greg Morphis
and the release version that are causing you grief. The fact that your project is failing on IFlexModule leads me to this. Again excuse if off the mark. Jason -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] la part de Greg Morphis Envoyé : mercredi 10

Re: [flexcoders] Re: IFlexModule

2007-01-10 Thread Greg Morphis
I've got eclipse 3.2 an the plug-in, sorry for not clarifying earlier. On 1/10/07, Greg Morphis [EMAIL PROTECTED] wrote: I've got them installed in my Flex Data Services folder C:\fds2 and my Flex plugin folder (C:\Program Files\Adobe\Flex Builder 2 Plug-in\Flex SDK 2\frameworks\source\mx\core

Re: [flexcoders] Re: IFlexModule

2007-01-10 Thread Greg Morphis
d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] la part de Greg Morphis Envoyé : mercredi 10 janvier 2007 20:55 À : flexcoders@yahoogroups.com Objet : Re: [flexcoders] Re: IFlexModule Thanks Jason for the help. I'm on a PC.. I was able to create a new project, add an HBox

Re: [flexcoders] Re: IFlexModule

2007-01-10 Thread Greg Morphis
version, from the eclipse plug-in location? Did the 2.0 version work with eclipse 3.2 ? Again grasping at straws here. Just throwing stuff out into the wind to see if it fly's. Jason -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] la part de Greg Morphis

Re: [flexcoders] Re: IFlexModule

2007-01-11 Thread Greg Morphis
override. Test201 line 11 1168442502088 13265 --- In flexcoders@yahoogroups.com, Greg Morphis gmorphis@ wrote: Severity and Description Path Resource Location Creation Time Id 1023: Incompatible override. aopscheduler line 11 1168453153048 2221 1120: Access of undefined

[flexcoders] getting XML out of Oracle

2007-01-23 Thread Greg Morphis
This is a little off topic but was hoping some of you have tried this. Have any of you been able to run a query in Oracle that returns data which can be easily loaded into the Tree component? If so can you pass along the info on how you accomplished this? Thanks

[flexcoders] Help with Tree component : getting XML out of Oracle

2007-01-23 Thread Greg Morphis
This is a little off topic but was hoping some of you have tried this. Have any of you been able to run a query in Oracle that returns data which can be easily loaded into the Tree component? If so can you pass along the info on how you accomplished this? Thanks

Re: [flexcoders] Help with Tree component : getting XML out of Oracle

2007-01-23 Thread Greg Morphis
a cfdirectory into a tree and then passing them back to flex. Is that what you are trying to do? Brian. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg Morphis Sent: Tuesday, January 23, 2007 2:16 PM To: flexcoders@yahoogroups.com

[flexcoders] rollOver Tree Node

2007-02-02 Thread Greg Morphis
I'm trying to set up a toolTip for the Tree Node and get some data in it from XML.. Does anyone have experience in doing this? I do something like rollOver(getName(event)) in the Tree however that forces a MouseEvent, which doesn't have the selectedTarget method... I can get the data on click,

[flexcoders] Re: rollOver Tree Node

2007-02-02 Thread Greg Morphis
() when trying.. private function getRSM(event : MouseEvent ):void { locationsTree.toolTip = [EMAIL PROTECTED]; } Thanks again On 2/2/07, Greg Morphis [EMAIL PROTECTED] wrote: I'm trying to set up a toolTip for the Tree Node and get some data in it from XML.. Does anyone have

[flexcoders] Re: rollOver Tree Node

2007-02-02 Thread Greg Morphis
defaultLeafIcon=@Embed('/assets/images/icon_a.png') itemClick=loadLocation( event ) /mx:Tree I've got a field in my XML called mgrname and would like to make it the toolTip text of the Tree when mousing over the leaves. Thanks On 2/2/07, Greg Morphis [EMAIL

[flexcoders] Re: rollOver Tree Node

2007-02-02 Thread Greg Morphis
can anyone assist me in this? I've tried using itemRollOver, no luck, I can only get it on click. Does anyone know if it's possible to get the tree item that the mouse is over? Thanks On 2/2/07, Greg Morphis [EMAIL PROTECTED] wrote: anyone? Is there anyway to capture the leaf that the mouse

Re: [flexcoders] Re: rollOver Tree Node

2007-02-02 Thread Greg Morphis
/ node label=Personal/ /node node label=Spam/ node label=Sent/ /node /mx:XMLList --- In flexcoders@yahoogroups.com, Greg Morphis [EMAIL PROTECTED] wrote: can anyone assist me in this? I've tried using itemRollOver, no luck, I can only get

Re: [flexcoders] Re: rollOver Tree Node

2007-02-02 Thread Greg Morphis
. You may have to check out Tracy's suggestion of using an itemRenderer and setting the toolTip on the node itself. --- In flexcoders@yahoogroups.com, Greg Morphis [EMAIL PROTECTED] wrote: Hey Doug, thanks for the reply That works great, and I think I found the snag.. itemRollOver doesnt

Re: [flexcoders] Re: rollOver Tree Node

2007-02-04 Thread Greg Morphis
Do you guys have any examples or know wher I can look for some using the itemRenderer to add the toolTip to the node itself? Thanks On 2/2/07, Greg Morphis [EMAIL PROTECTED] wrote: Thanks guys, I'll look into doing that. Tracy can you provide an example? Thanks On 2/2/07, Doug Lowder

Re: [flexcoders] Re: rollOver Tree Node

2007-02-05 Thread Greg Morphis
So I tried private function handleDataTip(item:Object):String{ return [EMAIL PROTECTED]; } and this works on the parent node but not the child node.. Am I missing something? Thanks On 2/4/07, Greg Morphis [EMAIL

Re: [flexcoders] Re: rollOver Tree Node

2007-02-05 Thread Greg Morphis
. --- In flexcoders@yahoogroups.com, Greg Morphis [EMAIL PROTECTED] wrote: So I tried private function handleDataTip (item:Object):String{ return [EMAIL PROTECTED]; } and this works on the parent node but not the child

[flexcoders] setting toolTip of Tree Node

2007-02-05 Thread Greg Morphis
[related to the tree node rollOver message I started the other day..] I'm trying to set the toolTip of a tree node and running into problems. I'm not sure if it's a bug or what. I can set the toolTip of the Tree, however you have to move the mouse all the way off of the Tree and back onto one of

Re: [flexcoders] Re: rollOver Tree Node

2007-02-05 Thread Greg Morphis
/mx:Panel /mx:Application --- In flexcoders@yahoogroups.com, Greg Morphis [EMAIL PROTECTED] wrote: Tried that too, that bombs I was doing some searching on dataTipFunction and saw the item:Object and thought I'd give it a try.. it doesnt bomb, just fires on the parent node not the child

Re: [flexcoders] Re: rollOver Tree Node

2007-02-05 Thread Greg Morphis
that exactly was it.. thanks so much Doug! On 2/5/07, Doug Lowder [EMAIL PROTECTED] wrote: Aha - the key is to provide a dataTipFunction, otherwise the tooltips are only displayed when the label is too long to fit within the allotted space.

[flexcoders] List control with custom colors??

2007-03-08 Thread Greg Morphis
I've seen the examples for changing colors on DataGrid cells, rows and columns but has anyone played with changing colors of List items? I have a few locations as List items and based on some data I want some to display them in Red, Green or Orange color. Is this possible with a List control? If

[flexcoders] xml document not well-formed?

2007-03-16 Thread Greg Morphis
I'm trying to load XML data into a list.. I can see the data in the Eclipse Console and it looks well-formed to me.. locations default locationid4131/locationid cityFootown/city stateidAL/stateid location123 Hwy, Footown,

[flexcoders] Re: xml document not well-formed? [SOLVED]

2007-03-16 Thread Greg Morphis
got it On 3/16/07, Greg Morphis [EMAIL PROTECTED] wrote: I'm trying to load XML data into a list.. I can see the data in the Eclipse Console and it looks well-formed to me.. locations default locationid4131/locationid cityFootown/city

[flexcoders] changing backgroundColor of mx:List based on data...

2007-03-16 Thread Greg Morphis
I've got a List being populated by XML data. One of the returned items is c_schedulestatusid which is either -1, 0, or 1 I need to set the backgroundColor based on the different values c_schedulestatusid I know about the mx:HBox width=100% height=20 backgroundColor={data.c_schedulestatusid == 1 ?

[flexcoders] using itemRenderer with List, how can I set the icon?

2007-03-16 Thread Greg Morphis
Normally List has a iconFunction, I'm using an itemRenderer to give the list items a custom background color.. When I do this the icon doesn't show.. is there anyway around this? Thanks

[flexcoders] Re: changing backgroundColor of mx:List based on data...[SOLVED]

2007-03-16 Thread Greg Morphis
nevermind.. I used the database to do the calculation and included that in the XML.. easier that way I figure On 3/16/07, Greg Morphis [EMAIL PROTECTED] wrote: I've got a List being populated by XML data. One of the returned items is c_schedulestatusid which is either -1, 0, or 1 I need to set

[flexcoders] Re: using itemRenderer with List, how can I set the icon?

2007-03-19 Thread Greg Morphis
Can anyone offer any help with this please? On 3/16/07, Greg Morphis [EMAIL PROTECTED] wrote: Normally List has a iconFunction, I'm using an itemRenderer to give the list items a custom background color.. When I do this the icon doesn't show.. is there anyway around this? Thanks

[flexcoders] Re: using itemRenderer with List, how can I set the icon?

2007-03-19 Thread Greg Morphis
Anyone know where I can go and actually maybe get a response from someone? good grief.. On 3/19/07, Greg Morphis [EMAIL PROTECTED] wrote: Can anyone offer any help with this please? On 3/16/07, Greg Morphis [EMAIL PROTECTED] wrote: Normally List has a iconFunction, I'm using an itemRenderer

Re: [flexcoders] Re: using itemRenderer with List, how can I set the icon?

2007-03-19 Thread Greg Morphis
:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Greg Morphis *Sent:* Monday, March 19, 2007 4:37 PM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] Re: using itemRenderer with List, how can I set the icon? Anyone know where I can go and actually maybe get a response from

Re: [flexcoders] Re: using itemRenderer with List, how can I set the icon?

2007-03-19 Thread Greg Morphis
-- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Greg Morphis *Sent:* Monday, March 19, 2007 1:42 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Re: using itemRenderer with List, how can I set the icon? Screw you dude.. I've

Re: [flexcoders] Re: using itemRenderer with List, how can I set the icon?

2007-03-19 Thread Greg Morphis
This is solved. Thanks! On 3/19/07, Greg Morphis [EMAIL PROTECTED] wrote: I apologize, I'm not seeing the replies. To answer your question, no. I am just using itemRenderer eg mx:itemRenderer mx:Component mx:HBox width=95% height=20

Re: [flexcoders] Re: using itemRenderer with List, how can I set the icon?

2007-03-20 Thread Greg Morphis
Of *Greg Morphis *Sent:* Monday, March 19, 2007 4:42 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Re: using itemRenderer with List, how can I set the icon? Screw you dude.. I've waited fairly patiently for a reply... On 3/19/07, Merrill, Jason [EMAIL PROTECTED] wrote: Anyone

[flexcoders] Data binding will not be able to detect changes... ?

2007-03-27 Thread Greg Morphis
I've got an XML List with information something like: locations default location address1=123 Street locationid=1234 ... / /default I have it declared in my Model as an XMLLIst: public var DALocationsXML:XMLList; and in one of my views, I'm trying to load the data into a

Re: [flexcoders] Data binding will not be able to detect changes... ?

2007-03-27 Thread Greg Morphis
the whole model is bindable.. [Bindable] public class MyModel implements ModelLocator { ... ... public var DALocationsXML:XMLList; ... On 3/27/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 27 Mar 2007, Greg Morphis wrote: How can I knock

Re: [flexcoders] SQL query with OR clause

2007-04-13 Thread Greg Morphis
the correct format for a where 'or' clause is where id = '6' or id = '8' or id = '10' you can't do where id = '6' or '8' or '10' not sure what DB you're using but you might want to try where id in ('6','8','10') something like that On 4/13/07, alehrens [EMAIL PROTECTED] wrote: I'm using

[flexcoders] Project wont build

2007-09-25 Thread Greg Morphis
I havent touched Flex in months but the need has risen and I'm trying to build a project that I worked with 2 others on. I wasnt the main developer. Anyways, I tried to build the project and got a bunch of errors. Cairngorm errors, just errors all over the place, and something about the Java

[flexcoders] Re: Project wont build

2007-09-25 Thread Greg Morphis
was done after I stopped working with the code. Anywhere else where this might be reflected? Thanks On 9/25/07, Greg Morphis [EMAIL PROTECTED] wrote: I havent touched Flex in months but the need has risen and I'm trying to build a project that I worked with 2 others on. I wasnt the main

Re: [flexcoders] Project wont build

2007-09-25 Thread Greg Morphis
/projects_035_14.html#159004 Hope this helps, Paul -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Greg Morphis *Sent:* Tuesday, September 25, 2007 2:23 PM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] Project wont build I

Re: [flexcoders] Project wont build

2007-09-25 Thread Greg Morphis
Found the setting in the Window - Preference - Server - Installed Runtimes clicked Apache Tomcat 5.5 and hit edit. Changed JRE from Workbech Default to jre1.5.0_11 the server starts now On 9/25/07, Greg Morphis [EMAIL PROTECTED] wrote: Thanks Paul, that worked.. I bet I had an old

Re: [flexcoders] Project wont build

2007-09-25 Thread Greg Morphis
Whelp I spoke too soon.. It built once but now... the project will not build.. No errors, just that one warning. I have my Flex Build Path - Output folder set to WebContent a sub directory under the project. The .swfs and .htmls are not being placed there.. Jeez! On 9/25/07, Greg Morphis [EMAIL

Re: [flexcoders] Project wont build

2007-09-25 Thread Greg Morphis
it went from Application file flex-src\flex-src\index.mxml does not exist. Down another level of flex-src heh.. So it builds now.. Yippie! On 9/25/07, Greg Morphis [EMAIL PROTECTED] wrote: Whelp I spoke too soon.. It built once but now... the project will not build.. No errors, just that one

[flexcoders] trying to track down an error..

2007-10-15 Thread Greg Morphis
So I've inherited a flex app. It's been months since I've looked at Flex and Cairngorm. The time change coming up is starting to rear it's ugly head and I'm trying to get this going and fixed before Nov 4th. I've got the app all set up, checked it out through CVS and there's an error, right on

Re: [flexcoders] trying to track down an error..

2007-10-15 Thread Greg Morphis
. Where can I check the configuration? Thanks On 10/15/07, Anatole Tartakovsky [EMAIL PROTECTED] wrote: 'Unknown destination 'EmployeeServiceRO' - please check you remoting configurations On 10/15/07, Greg Morphis [EMAIL PROTECTED] wrote: So I've inherited a flex app. It's been months

Re: [flexcoders] trying to track down an error..

2007-10-15 Thread Greg Morphis
org.apache.catalina.realm.RealmBase - No role found: AOPScheduler-BASICINQ The no role found look wierd.. I'm thinking Tomcat is the problem On 10/15/07, Greg Morphis [EMAIL PROTECTED] wrote: mx:RemoteObject id=employeeService destination=EmployeeServiceRO result

Re: [flexcoders] trying to track down an error..

2007-10-15 Thread Greg Morphis
/security-role I'm not sure where else I should be checking.. Anyone have any ideas? Thanks On 10/15/07, Greg Morphis [EMAIL PROTECTED] wrote: I think it has to do with Tomcat... I installed the log4j logger and watching the stuff in the Eclipse IDE.. In the flex-remoting file I have

Re: [flexcoders] trying to track down an error..

2007-10-15 Thread Greg Morphis
Am I looking in the right area? Am I completely off target? Is there anything I can check? Thanks On 10/15/07, Greg Morphis [EMAIL PROTECTED] wrote: I checked the WEB-INF/web.xml and have the roles defined there auth-constraint role-nameAOPScheduler-BASICAM/role-name

Re: [flexcoders] trying to track down an error..

2007-10-15 Thread Greg Morphis
Still nada. I compared the files I thought were suspect to the files we have on our dev server (which is working fine). Does this look like a tomcat issue or somewhere else. On 10/15/07, Greg Morphis [EMAIL PROTECTED] wrote: Am I looking in the right area? Am I completely off target

[flexcoders] Unknown destination 'EmployeeServiceRO

2007-10-15 Thread Greg Morphis
I'm condensing my previous posts.. getting this error on a flex app.. [FaultEvent fault=[RPC Fault faultString=[MessagingError message='Unknown destination 'EmployeeServiceRO'.'] faultCode=InvokeFailed faultDetail=Couldn't establish a

[flexcoders] Re: Unknown destination 'EmployeeServiceRO

2007-10-16 Thread Greg Morphis
Anyone? Has no one seen this error before? Does everything look correct? This is with Flex 2 / LCDS on Tomcat with Java middleware. Thanks On 10/15/07, Greg Morphis [EMAIL PROTECTED] wrote: I'm condensing my previous posts.. getting

Re: [flexcoders] Re: Unknown destination 'EmployeeServiceRO

2007-10-16 Thread Greg Morphis
. As for not being able to connect, hmmm..is there any more errors before this one? *Dimitrios Gianninas* *Development Team Lead* *Optimal Payments Inc.* -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Greg Morphis *Sent:* Tuesday

Re: [flexcoders] Re: Unknown destination 'EmployeeServiceRO

2007-10-16 Thread Greg Morphis
Inc.* -- *From:* flexcoders@yahoogroups.com [mailto: [EMAIL PROTECTED] *On Behalf Of *Greg Morphis *Sent:* Tuesday, October 16, 2007 9:53 AM *To:* [EMAIL PROTECTED] ups.com *Subject:* [flexcoders] Re: Unknown destination 'EmployeeServiceRO Anyone

Re: [flexcoders] Re: Unknown destination 'EmployeeServiceRO

2007-10-16 Thread Greg Morphis
I copied the tomcat folder from our dev server down to my local machine, since both of the installations are in the same place C:\Tomcat5.5 The server started fine, I cleaned and rebuilt the app.. same error. I don't think it's a tomcat config issue.. On 10/16/07, Greg Morphis [EMAIL PROTECTED

Re: [flexcoders] Re: Unknown destination 'EmployeeServiceRO

2007-10-16 Thread Greg Morphis
So I copied the folder down from dev to my local machine. I was able to run the app from there.. But I cannot build my copy in Eclipse and run it. WTF?!?!?! This is pissing me off On 10/16/07, Greg Morphis [EMAIL PROTECTED] wrote: I copied the tomcat folder from our dev server down to my

Re: [flexcoders] Re: Unknown destination 'EmployeeServiceRO

2007-10-17 Thread Greg Morphis
off the /security/ (to the root folder) I get the same error.. Anything else anyone can throw out there to check? Please? I'm getting frustrated with this On 10/16/07, Greg Morphis [EMAIL PROTECTED] wrote: So I copied the folder down from dev to my local machine. I was able to run the app

Re: [flexcoders] Re: Unknown destination 'EmployeeServiceRO

2007-10-18 Thread Greg Morphis
-- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Greg Morphis *Sent:* Wednesday, October 17, 2007 9:43 AM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Re: Unknown destination 'EmployeeServiceRO Still havent found anything

[flexcoders] Address in use error?

2007-10-18 Thread Greg Morphis
I deleted the project I was getting a Fault error on (see other post for more information). I uninstalled and reinstalled FDS2.0.1, I checked the project back out from CVS. When I load the program I get [Flex] 10/18/2007 12:26:51.938 RTMP-Server failed to start up: java.net.BindException: Address

[flexcoders] Re: Address in use error?

2007-10-18 Thread Greg Morphis
in the web application's jndi context. websphere-workmanager-jndi-namejava:comp/env/wm/MessagingWorkManager/websphere-workmanager-jndi-name -- /properties /channel-definition On 10/18/07, Greg Morphis [EMAIL PROTECTED] wrote: I deleted the project I was getting

[flexcoders] Re: Address in use error? [SOLVED]

2007-10-18 Thread Greg Morphis
This is solved On 10/18/07, Greg Morphis [EMAIL PROTECTED] wrote: I changed the port from 2038 to 2039 in the services-config.xml and rebooted my computer, getting same error.. channel-definition id=my-rtmp class=mx.messaging.channels.RTMPChannel endpoint uri=rtmp

Re: [flexcoders] Re: Unknown destination 'EmployeeServiceRO [SOLVED]

2007-10-18 Thread Greg Morphis
Thanks guys for the help.. I believe I have everything working now.. I think the problem was connected to my other post Address in use On 10/18/07, Greg Morphis [EMAIL PROTECTED] wrote: I've checked the services-config.xml file and I have the level=Debug and Endpoint

[flexcoders] does something like this exist?

2007-10-22 Thread Greg Morphis
I'm looking for an actionscript tester.. for example, I dont want to have to build, and run my app every time just to check what 6 % 2 is (for example). So does something exist that allows you to throw simple AS code at it and return a value? Thanks..

[flexcoders] Error 1009 in Flex 2

2006-09-08 Thread Greg Morphis
I'm playing around with a remote object and in the handleResult function Flex is giving me this 1009 error when I try to refer to the variable I assigned to the event.result. If I do Alert.show(event.result[0].QUESTION.toString()); then I get the right result. However if I assign event.result to a

Re: [flexcoders] Re: Error 1009 in Flex 2

2006-09-08 Thread Greg Morphis
to determine the actual datatype of event.result. I would guess it is an ArrayCollection, not an Array. But it could be some other kind of list or object too. (XMLList, etc). Hard to tell without knowing where the data is coming from. Thunder --- In flexcoders@yahoogroups.com, Greg Morphis [EMAIL

[flexcoders] move an image in front of another?

2006-09-29 Thread Greg Morphis
When you add an image to an application with an existing image, the new one is above the old one. Is there a way to change that? Kinda like the z-index in css? I've got a couple images and when I roll over one, I enlarge the image and sometimes the old one enlarges and goes under the new one. I

  1   2   >