[flexcoders] Strange issue with drag and drop between Lists

2006-07-20 Thread gotgoose09
In one of my projects, I create a new TitleWindow that has two Lists in which can drag items from one to the other. However, when I try dragging items from one to the other, there is a blank space at the top of each list that I can not drop items into - I have to drop the items in the bottom of

[flexcoders] Re: Strange issue with drag and drop between Lists

2006-07-20 Thread gotgoose09
] On Behalf Of gotgoose09 Sent: Thursday, July 20, 2006 4:43 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Strange issue with drag and drop between Lists I added a View Source option to the swf. --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , gotgoose09

[flexcoders] Re: Strange issue with drag and drop between Lists

2006-07-20 Thread gotgoose09
I'm beginning to think that this is a bug. Is there something I'm missing here? --- In flexcoders@yahoogroups.com, gotgoose09 [EMAIL PROTECTED] wrote: In one of my projects, I create a new TitleWindow that has two Lists in which can drag items from one to the other. However, when I try

[flexcoders] Re: Strange issue with drag and drop between Lists

2006-07-21 Thread gotgoose09
below it. So it seems like there's something screwed up in its detection of where the mouse is that only comes out in popups. I'd say you have a pretty solid test case to submit to http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform On 7/20/06, gotgoose09 thegoosmans@ wrote

[flexcoders] Re: QuickDateFormatter - how can I make it MXML enabled?

2006-07-21 Thread gotgoose09
All you have to do is:In your application mxml file, add this attribute to the Application tag: xmlns:mycode="com.fmr.utils"Then you can add your formatter with this code:mycode:QuickDateFormatter /You use it by adding id="myQuickDateFormatter" to the tag. An alternative is to put this code in

[flexcoders] How can I reuse components I have made?

2006-07-23 Thread gotgoose09
I have made some components that I wish to use in multiple projects. I put my MSML and AS components into a folder called library, in which there is ben.controls.TimePicker, ben.validators.URLValidator, etc. I looked into using SWCs so I created a Flex Library Project. In that project I added

[flexcoders] Re: QuickDateFormatter - how can I make it MXML enabled?

2006-07-23 Thread gotgoose09
All you have to do is add public properties like this: [Bindable] public var str_dateFormat:String; [Bindable] public var str_dateString:String; --- In flexcoders@yahoogroups.com, ben.clinkinbeard [EMAIL PROTECTED] wrote: Yea, what I am looking for is some help on what changes would need to be

[flexcoders] mx:State creationPolicy Oddity

2006-07-23 Thread gotgoose09
I found a strange behavior with NumericSteppers and DateFields that are in AddChilds with creationPolicies of all. If you view the below swf and click the state2 button, you can see that the calendar icon in the DateField and the NumericStepper's stepper buttons are shrunk from their normal size.

[flexcoders] Re: mx:State creationPolicy Oddity

2006-07-24 Thread gotgoose09
container are they in? Maybe try a theControl.validateNow() when their show fires? Or some other event? - Original Message - From: gotgoose09 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Sunday, July 23, 2006 10:25 PM Subject: [flexcoders] mx:State creationPolicy

[flexcoders] Re: QuickDateFormatter - how can I make it MXML enabled?

2006-07-24 Thread gotgoose09
=72 y=91 text=Date/ mx:Label x=222 y=91 text=Format/ mx:Button x=341 y=117 label=Go click=qdf.getFormattedDate();/ /mx:Application Thanks, Ben http://www.returnundefined.com --- In flexcoders@yahoogroups.com, gotgoose09 thegoosmans@ wrote: All you have to do is add public properties

[flexcoders] Re: What Other Eclipse Plugs Do You Use?

2006-07-26 Thread gotgoose09
I use CFEclipse for Coldfusion editing. http://cfeclipse.org/ --- In flexcoders@yahoogroups.com, Kevin Mulvihill [EMAIL PROTECTED] wrote: Since I'm installing plugs into the IDE, as a corollary to the post I just sent, what other Eclipse plugs are you using and recommend? TIA, Kevin

[flexcoders] Am I using States correctly?

2006-07-26 Thread gotgoose09
Coming from a Flash point of view, I am using mx:State as I used Forms in Flash. In my current project I have a Master state that holds a DataGrid with calendar events in it and some buttons to manipulate the data. I have a create and edit button that go to a Detail state that holds a form to

[flexcoders] Re: Library, SWC, and Design View troubles

2006-07-26 Thread gotgoose09
I was having this same problem. I haven't found a solution yet though. --- In flexcoders@yahoogroups.com, alariccole [EMAIL PROTECTED] wrote: Hello all. I am trying to build a library of components accessible to all projects. I have attempted to use a library which compiles an SWC, however

[flexcoders] Re: Am I using States correctly?

2006-07-26 Thread gotgoose09
in a component if you haven't already done so... Kevin _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of gotgoose09 Sent: Wednesday, July 26, 2006 10:42 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Am I using States correctly? Coming from a Flash point

[flexcoders] Re: Problems with ComboBox control

2006-07-27 Thread gotgoose09
Set the dataProvider to dataProvider={xmlFile.urednik}. Then, set the labelField of the ComboBox to label. This should show the label to the user and then you can get the id by typing comboBox.selectedItem.id or the label: comboBox.selectedItem.label. --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Strange issue with drag and drop between Lists

2006-07-27 Thread gotgoose09
=X3oDMTM3bHA0a3YyBF9TAzk3MzU5NzE0BGdycElkAzEyMjg2MTY3BGdycHNwSWQDMTYwMDAwNzIwNwRtc2dJZAM0NTEyNgRzZWMDZnRyBHNsawN2dHBjBHN0aW1lAzExNTQwMTgzMzEEdHBjSWQDNDUxMTc- --- In flexcoders@yahoogroups.com, gotgoose09 [EMAIL PROTECTED] wrote: In one of my projects, I create a new TitleWindow that has two Lists in which can drag items from one to the other. However, when I try

[flexcoders] Re: Drag and Drop with TitleWindow

2006-07-27 Thread gotgoose09
I had this same problem as well. http://groups.yahoo.com/group/flexcoders/post?act=replymessageNum=44103 Jeff your solution works! --- In flexcoders@yahoogroups.com, csewhiff [EMAIL PROTECTED] wrote: I'm having a problem getting the dragEnter event to fire properly on a TitleWindow. I

Re: [flexcoders]

2006-07-28 Thread gotgoose09
I had a similar problem, but I couldn't figure out a solution: http://groups.yahoo.com/group/flexcoders/message/44388;_ylc=X3oDMTM3djVqZG4xBF9TAzk3MzU5NzE0BGdycElkAzEyMjg2MTY3BGdycHNwSWQDMTYwMDAwNzIwNwRtc2dJZAM0NDM4OARzZWMDZnRyBHNsawN2dHBjBHN0aW1lAzExNTM3MTIzMzUEdHBjSWQDNDQzODg- --- In

[flexcoders] Re: Answer to the most frequent problem...

2006-07-28 Thread gotgoose09
It's so much easier with Flex Builder though. :) Until something free with Flex code completion comes out I'd rather use Flex Builder. --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 27 July 2006 16:30, Shannon Hicks wrote: Download the trial versions of

[flexcoders] Re: Simple way to do Please wait... type window

2006-07-31 Thread gotgoose09
You could use showBusyCursor=true on your RemoteObject, that's what I do. --- In flexcoders@yahoogroups.com, Rick Root [EMAIL PROTECTED] wrote: what would you all recommend for a simple Please wait.. type of window? Loading.., Searching... etc.. Would you recommend using an alternative

[flexcoders] Re: Newbie Help - simple login via CFC

2006-08-03 Thread gotgoose09
// assign BrokerID this.BrokerID = event.resut.UserInfo.BrokerID; You spelled result wrong. --- In flexcoders@yahoogroups.com, flycl65 [EMAIL PROTECTED] wrote: Trying to do a simple login via CFC. Query SQL db and return a field value (BrokerID). Returning the following error:

[flexcoders] Flex RemoteObject doens't work with my security like Flash Services did.

2006-08-03 Thread gotgoose09
In my website I have a folder named secure in which I put my CFCs and CFMs that hold SWFs (not located in the secure folder) that interact with the CFCs. In this secure folder I have an application.cfc file that checks if the user is logged in when they visit any page in the folder and if they

[flexcoders] Re: Flex RemoteObject doens't work with my security like Flash Services did.

2006-08-03 Thread gotgoose09
ColdFusion 7's Event Gateways? --- In flexcoders@yahoogroups.com, gotgoose09 [EMAIL PROTECTED] wrote: In my website I have a folder named secure in which I put my CFCs and CFMs that hold SWFs (not located in the secure folder) that interact with the CFCs. In this secure folder I have

[flexcoders] Re: UI Design Help

2006-08-04 Thread gotgoose09
Perhaps you could let them drag and drop fields they want into a List or something? --- In flexcoders@yahoogroups.com, Rick Root [EMAIL PROTECTED] wrote: I'm building an app that will replace a current HTML-based app that allows users to search our database and then do a file drop of the

[flexcoders] Re: TypeError: Error #1009: Cannot access a property or method of a null object

2006-08-04 Thread gotgoose09
Can you show us the code that generates the error? --- In flexcoders@yahoogroups.com, joshie679 [EMAIL PROTECTED] wrote: Hi, I started working on a project on Flex 2.0 beta 3 and now that i have Flex 2.0 builder with charting and i imported my project over i am getting this error message...

[flexcoders] Re: UI Design Help

2006-08-04 Thread gotgoose09
This article might help you with the drag and drop: http://www.adobe.com/devnet/flex/quickstart/adding_drag_and_drop/ --- In flexcoders@yahoogroups.com, Rick Root [EMAIL PROTECTED] wrote: I'm building an app that will replace a current HTML-based app that allows users to search our database

[flexcoders] Concurrent Image Loading

2006-08-06 Thread gotgoose09
Do multiple Image components load images at the same time or one after the other? The reason I'm asking is that I created a Pic Viewer app in Flash 7 that would, while one picture was being viewed, load the next picture into a buffer MovieClip. The 2nd MovieClip would then be set to visible

[flexcoders] Anyone get this problem when putting in serial numbers?

2006-08-07 Thread gotgoose09
I installed the Flex Builder 2 trial as a plugin to Eclipse. I then bought Flex Builder and inserted the codes for Flex Builder and Charting. After I put in the codes, I clicked the restart button that was on the dialogue box for inserting the codes and now Eclipse always comes up with a Problem

[flexcoders] Re: How to force validation and what should be used instead of deprecated isVa

2006-08-09 Thread gotgoose09
If you put all your validators in an Array you can do this: var results:Array = Validator.validateAll(arrayOfValidators); if (results.length == 0) { // all are valid! } --- In flexcoders@yahoogroups.com, Sergey Kovalyov [EMAIL PROTECTED] wrote: Hi All! How to perform validation when it is

[flexcoders] Problem with List in TitleWindow

2006-08-11 Thread gotgoose09
I have a TitleWindow that has a List with cfm pages in it as items. The TitleWindow also has a state that adds TextField to create or edit a list item. The first time I popup this TitleWindow and there are more items than the List's height, a strange display issue occurs. You can see it here:

[flexcoders] Re: Problem with List in TitleWindow

2006-08-11 Thread gotgoose09
I guess no one has tried this yet? --- In flexcoders@yahoogroups.com, gotgoose09 [EMAIL PROTECTED] wrote: I have a TitleWindow that has a List with cfm pages in it as items. The TitleWindow also has a state that adds TextField to create or edit a list item. The first time I popup

[flexcoders] Re: Problem with List in TitleWindow

2006-08-11 Thread gotgoose09
PROTECTED] wrote: If you could provide the TitleWindow code, it would be easier to see what is causing the problem. -TH --- In flexcoders@yahoogroups.com, gotgoose09 thegoosmans@ wrote: I guess no one has tried this yet? --- In flexcoders@yahoogroups.com, gotgoose09 thegoosmans@ wrote

[flexcoders] Re: Problem with List in TitleWindow

2006-08-11 Thread gotgoose09
work around this by setting the TitleWindow backgroundAlpha to zero. mx:TitleWindow xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical backgroundAlpha=0 -TH --- In flexcoders@yahoogroups.com, gotgoose09 thegoosmans@ wrote: Yes, you're right, I should've given some

[flexcoders] Re: Problem with List in TitleWindow

2006-08-11 Thread gotgoose09
=0 -TH --- In flexcoders@yahoogroups.com, gotgoose09 thegoosmans@ wrote: Yes, you're right, I should've given some code. http://www.thegoosmans.com/flexlistintitlewindow/TitleWindowListState .sw\ f This is a simplified version of my project. You can right click

[flexcoders] Re: Problem with List in TitleWindow

2006-08-11 Thread gotgoose09
I post to quick! I'm just going to use a DataGrid. --- In flexcoders@yahoogroups.com, gotgoose09 [EMAIL PROTECTED] wrote: Is there a way to have an opaque background while setting backgroundAlpha to 0? It sounds paradoxical, but programming can be that way sometimes... --- In flexcoders

[flexcoders] Re: how to use get/set to make a custom property? HELP!

2006-08-13 Thread gotgoose09
Rename checkState to _checkState. private var _checkState:String; public function get checkState():String { return _checkState; } public function set checkState(val:String):void { // make sure val is a valid value if (val == true || val == semi || val == false) {

[flexcoders] Re: how to use get/set to make a custom property? HELP!

2006-08-13 Thread gotgoose09
PROTECTED] wrote: tnx, this works great. but i m still confused with this set/get. where can i read about it? questions like: - who and when invoke each one? - which happens first? - the return on the 'get' is returning where? . . . --- In flexcoders@yahoogroups.com, gotgoose09 thegoosmans

[flexcoders] Re: File Upload :Complete path of File needed

2006-08-14 Thread gotgoose09
I have also tried to figure this out and through searching found that you can't get the full path because of sandbox security. --- In flexcoders@yahoogroups.com, Kumar [EMAIL PROTECTED] wrote: Hi All, Below is the code that I am using for uploading files. In this code I am able

[flexcoders] Best way to find item in ComboBox?

2006-08-20 Thread gotgoose09
I have a ComboBox with Strings in it. I want to be able to select an item in the ComboBox that matches a specific String. In the past I have written loops that try to find the item by comparing values, but it seems to me that there should be an easier way. Anyone know how this can be done?

[flexcoders] Re: Best way to find item in ComboBox?

2006-08-20 Thread gotgoose09
This works perfectly! Thanks :) --- In flexcoders@yahoogroups.com, ben.clinkinbeard [EMAIL PROTECTED] wrote: cb.selectedItem = strToSearchFor; Ben --- In flexcoders@yahoogroups.com, gotgoose09 thegoosmans@ wrote: I have a ComboBox with Strings in it. I want to be able to select

[flexcoders] Issue with dates from Flex to MySQL

2006-08-20 Thread gotgoose09
In my MySQL table, I have a field that is typed as a Date. In my web app I send a date from flex to a CFC which populates the Date field. On my local machine I have MySQL 5 with ColdFusion 7.02. On my host's server there is MySQL 4 with ColdFusion 7.00. When I send a date to my MySQL 5, the

[flexcoders] Re: Issue with dates from Flex to MySQL

2006-08-21 Thread gotgoose09
? On 8/21/06, gotgoose09 [EMAIL PROTECTED] wrote: In my MySQL table, I have a field that is typed as a Date. In my web app I send a date from flex to a CFC which populates the Date field. On my local machine I have MySQL 5 with ColdFusion 7.02. On my host's server

[flexcoders] Re: Issue with dates from Flex to MySQL

2006-08-21 Thread gotgoose09
behind. Anyone know the best way to handle this? --- In flexcoders@yahoogroups.com, gotgoose09 [EMAIL PROTECTED] wrote: I checked and it is set to SYSTEM. My timezone is EST while the server's is CST, so I don't think that could set it off by a day. (CST is one hour behind EST) --- In flexcoders

[flexcoders] Re: Issue with dates from Flex to MySQL

2006-08-21 Thread gotgoose09
Oops, I meant to say DateField. --- In flexcoders@yahoogroups.com, gotgoose09 [EMAIL PROTECTED] wrote: I checked and it is set to SYSTEM. My timezone is EST while the server's is CST, so I don't think that could set it off by a day. (CST is one hour behind EST) --- In flexcoders

[flexcoders] Re: Need drag drop example

2006-08-24 Thread gotgoose09
This link might help you. http://www.adobe.com/devnet/flex/quickstart/adding_drag_and_drop/ --- In flexcoders@yahoogroups.com, Martina Smith [EMAIL PROTECTED] wrote: Hi, I need an example for simple drag drop operation using only the displayObject in flex 2.0. Can anyone

[flexcoders] DateField - Select month and year only

2006-11-15 Thread gotgoose09
Is there a way to design something very similar to the DateField but without a day picker? For example, I want the user to be able to select a year and month to display events in my CalendarAdmin program. I don't really need them to pick a day, I just need the month and year. Anyone have a clue

[flexcoders] Odd Problem with DateField and formatString

2006-11-16 Thread gotgoose09
View this example below. It consists of a DateField (dfDatePicker) and a Label. dfDatePicker's formatString is set to MM/. http://www.thegoosmans.com/datefieldproblem/TestEventHandlers.swf To observe the problem, try setting the date two times. The second time an error will occur saying

[flexcoders] Re: Odd Problem with DateField and formatString

2006-11-17 Thread gotgoose09
This is really bugging me. :-/ Anyone know? --- In flexcoders@yahoogroups.com, gotgoose09 [EMAIL PROTECTED] wrote: View this example below. It consists of a DateField (dfDatePicker) and a Label. dfDatePicker's formatString is set to MM/. http://www.thegoosmans.com/datefieldproblem

[flexcoders] Re: Odd Problem with DateField and formatString

2006-11-17 Thread gotgoose09
@yahoogroups.com, greenfishinwater [EMAIL PROTECTED] wrote: I don't get any errors when running TestEventHandlers.swf Andrew --- In flexcoders@yahoogroups.com, gotgoose09 thegoosmans@ wrote: This is really bugging me. :-/ Anyone know? --- In flexcoders@yahoogroups.com, gotgoose09

[flexcoders] Styling p tags inside of mx:Text

2006-12-08 Thread gotgoose09
I want to add margin to p tags inside of a mx:Text control. How can I do this?

[flexcoders] Re: Styling p tags inside of mx:Text

2006-12-09 Thread gotgoose09
Any thoughts? --- In flexcoders@yahoogroups.com, gotgoose09 [EMAIL PROTECTED] wrote: I want to add margin to p tags inside of a mx:Text control. How can I do this?

[flexcoders] How can I test a UIComponent to see if it is user editable?

2007-02-05 Thread gotgoose09
My current code now loops through the children of a container and adds an event handler to each one to listen for a change event. However, I want to only add event handlers to UIComponents that have some sort of value that the user can change. Some examples of these components are: TextInput,

[flexcoders] Re: How can I test a UIComponent to see if it is user editable?

2007-02-07 Thread gotgoose09
question is no, there's no good way to do this. Doug --- In flexcoders@yahoogroups.com, Ralf Bokelberg ralf.bokelberg@ wrote: I guess the only way to do it reliable is to ask for the type. You can use if( X instanceof Y) for example Cheers, Ralf. On 2/6/07, gotgoose09

[flexcoders] Best way for editing massive amounts of data?

2007-02-23 Thread gotgoose09
I'm web-enabling by using Flex 2 a project that has many fields for each record in the database. A typical UI screen has upwards of 35 fields in it. This application has to be easy to use. e.g. explained over the telephone to customers who use it. I was thinking that one way to make editing

[flexcoders] Re: Best way for editing massive amounts of data?

2007-02-24 Thread gotgoose09
I guess no one here has had this problem before? --- In flexcoders@yahoogroups.com, gotgoose09 [EMAIL PROTECTED] wrote: I'm web-enabling by using Flex 2 a project that has many fields for each record in the database. A typical UI screen has upwards of 35 fields in it. This application has

[flexcoders] How to change a Basic Flex 2 project into a ColdFusion Flash Remoting project?

2007-03-07 Thread gotgoose09
When I created my Flex 2 project I chose the Basic option, but now I want it to use the ColdFusion Flash Remoting option. Is there a way to change the project to do this without creating a new one?

[flexcoders] Re: How to change a Basic Flex 2 project into a ColdFusion Flash Remoting projec

2007-03-08 Thread gotgoose09
: On Wednesday 07 Mar 2007, gotgoose09 wrote: When I created my Flex 2 project I chose the Basic option, but now I want it to use the ColdFusion Flash Remoting option. Is there a way to change the project to do this without creating a new one? I don't think it really matters. -- Tom

[flexcoders] Re: How to change a Basic Flex 2 project into a ColdFusion Flash Remoting projec

2007-03-08 Thread gotgoose09
- Original Message - From: gotgoose09 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, March 08, 2007 11:08 PM Subject: [flexcoders] Re: How to change a Basic Flex 2 project into a ColdFusion Flash Remoting projec Ok, I did that, but now how do I make Flex Builder launch

[flexcoders] Dynamically retrieving the input data of a UIComponent.

2007-04-09 Thread gotgoose09
In one of my components I save a DateField, TextInput, NumericStepper, etc. as a UIComponent which is displayed on the screen. I need a way of retrieving the data that the user inputs into this UIComponent, but my component doesn't know whether it should retrieve the text property (TextInput,

[flexcoders] Re: Dynamically retrieving the input data of a UIComponent.

2007-04-10 Thread gotgoose09
even do that as an interface so other components can be added later. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of gotgoose09 Sent: Monday, April 09, 2007 5:40 PM To: flexcoders@yahoogroups.com

[flexcoders] Question about the 'includes' compiler option and SWC files.

2007-04-28 Thread gotgoose09
Is there a way to indicate 'includes' to include a folder of classes instead of listing each one separately? What I want: -includes 'source.classes.*' This gives me an error, which leads me to believe that the compiler doesn't allow the * operator as a wildcard. This forces me to do this:

[flexcoders] Re: Question about the 'includes' compiler option and SWC files.

2007-05-05 Thread gotgoose09
I'm giving this thread one more chance at the top. --- In flexcoders@yahoogroups.com, gotgoose09 [EMAIL PROTECTED] wrote: Is there a way to indicate 'includes' to include a folder of classes instead of listing each one separately? What I want: -includes 'source.classes.*' This gives me

[flexcoders] Re: Question about the 'includes' compiler option and SWC files.

2007-05-05 Thread gotgoose09
: When you compile a swf against a swc it only uses those parts of the .swc it needs, so you can have a very large .swc file and it will not include all things from the .swc. Christian. On May 5, 2007, at 11:39 AM, gotgoose09 wrote: I'm giving this thread one more chance at the top

[flexcoders] Re: Question about the 'includes' compiler option and SWC files.

2007-05-05 Thread gotgoose09
names, but in that case it would be the shell resolving the wildcard, not the compiler. Christian. On May 5, 2007, at 3:14 PM, gotgoose09 wrote: Thanks for that info! Is there somewhere I can read more about SWCs or is there only the Flex 2 Documentation? I'm still wondering

[flexcoders] Set default font size on RichTextEditor

2009-09-17 Thread gotgoose09
I want to set the default text size on an RTE to something other than 10. How can I do this? Thanks, Ben Goosman

[flexcoders] Re: Set default font size on RichTextEditor

2009-09-18 Thread gotgoose09
valdhorli...@... wrote: These links should help... http://flexonblog.wordpress.com/2008/01/19/usable-properties-of-richtexteditor-control-in-flex/ http://www.axelscript.com/2008/02/13/mxrichtexteditor-issues-font-too-large/ --- In flexcoders@yahoogroups.com, gotgoose09 thegoosmans@ wrote

[flexcoders] AMFPHP problem

2009-11-10 Thread gotgoose09
I have been running my Flex applications just fine on my local computer and a remote server. I have been tasked with transferring them to a new server. Now whenever I execute a RemoteObject call I get [RPC Fault faultString=Send failed faultCode=Client.Error.MessageSend

[flexcoders] Re: AMFPHP problem

2009-11-11 Thread gotgoose09
php scripts on the server. Check your php.ini HTH Pete gotgoose09 wrote: I have been running my Flex applications just fine on my local computer and a remote server. I have been tasked with transferring them to a new server. Now whenever I execute a RemoteObject call I get

[flexcoders] Re: AMFPHP problem

2009-11-11 Thread gotgoose09
I was trying to enable that, but was unsuccessful. Do you know how I can enable it and get something useful out of it? Thanks, Ben --- In flexcoders@yahoogroups.com, Tom Chiverton tom.chiver...@... wrote: On Wednesday 11 Nov 2009, gotgoose09 wrote: So you would suggest increasing

[flexcoders] Re: AMFPHP problem

2009-11-11 Thread gotgoose09
Hmm, good point. The server is running 5.1.6 and I am running 5.2. Thanks for the links I will check them out. --- In flexcoders@yahoogroups.com, droponrcll amyblankens...@... wrote: --- In flexcoders@yahoogroups.com, Pete pete1@ wrote: As you probably know,

[flexcoders] Re: AMFPHP problem

2009-11-11 Thread gotgoose09
. Could the issue be PHP 5.1.6? (I'm pretty sure it's .6, I'd have to check) --- In flexcoders@yahoogroups.com, gotgoose09 thegoosm...@... wrote: Hmm, good point. The server is running 5.1.6 and I am running 5.2. Thanks for the links I will check them out. --- In flexcoders