Re: returning variable

2007-03-07 Thread Jon Clausen
Paul, You have uploadImage() set to return a string, not to place the "newImageName" variable in the variables scope. A couple of suggestion, depending on which way you want to go: 1) If you want to return the string back to the function that calls the uploadImage() simply do and your "new

Re: returning variable

2007-03-07 Thread Tom Chiverton
On Wednesday 07 Mar 2007, Paul Giesenhagen wrote: > I have a situation I am completely baffled with . below is code from the > "action" page and the method pulled out of a CFC. You are not assigning the result of the method call to a variable in the calling page. -- Tom Chiverton Helping to ef

RE: returning variable

2007-03-07 Thread Paul Giesenhagen
That was it .. thanks for the help, overlooked it completely. Paul Giesenhagen QuillDesign http://www.quilldesign.com 417-885-1375 -Original Message- From: Jon Clausen [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 07, 2007 10:24 AM To: CF-Talk Subject: Re: returning variable Paul