How to Capture Field Name with Two Input Variables

2010-10-23 Thread Dakota Burns
Hi - I have a form that contains an outcome field, which has an _#ac_id appended to it so I can properly identify it (their can be many fields passed in). I seem to be at a loss for how to output what appears to be two variables as one ('#outcome_#ac_id##' -- see below query). Is their a way to

Re: How to Capture Field Name with Two Input Variables

2010-10-23 Thread Dave Watts
I have a form that contains an outcome field, which has an _#ac_id appended to it so I can properly identify it (their can be many fields passed in). I seem to be at a loss for how to output what appears to be two variables as one ('#outcome_#ac_id##' -- see below query). Is their a way to

Re: How to Capture Field Name with Two Input Variables

2010-10-23 Thread Arsalan Tariq Keen
try using: #Evaluate('outcome_#ac_id#')# Regards, Arsalan -- From: Dakota Burns dakota.bu...@gmail.com Sent: Saturday, October 23, 2010 9:34 PM To: cf-talk cf-talk@houseoffusion.com Subject: How to Capture Field Name with Two Input Variables

RE: How to Capture Field Name with Two Input Variables

2010-10-23 Thread Russ Michaels
You just output them individually, as you are using them in a query you need do nothing more Set outcome = '#form.outcome##form._ac_id#' Russ -Original Message- From: Dakota Burns [mailto:dakota.bu...@gmail.com] Sent: 23 October 2010 17:34 To: cf-talk Subject: How to Capture Field Name

Re: moveTo on cfwindow no longer working in CF9?

2010-10-23 Thread M P
the version of ExtJS/Sencha (js library behind cfwindow) in cf9 is different than in cf8, so a method name could have easily been changed and is not moveTo() any longer. try using setPagePosition() method instead of moveTo() Thanks for the help, I may try SetPosition() or setPagePosition() in

Re: How to Capture Field Name with Two Input Variables

2010-10-23 Thread enigment
Go with Form[outcome_ i], not Evaluate or '#form.outcome##form._ac_id#'. It's just way cleaner. d ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion

(ot) (kinda) How do I upload an image to a website from an Android phone?

2010-10-23 Thread Rick Faircloth
I'm getting into mobile development and have been searching for days to figure out how to use a web-based form to access images on my Samsung Fascinate and upload them to websites I've built. I cannot find an answer, except from back into 2008, where the poster wrote you can't upload an image

Re: (ot) (kinda) How do I upload an image to a website from an Android phone?

2010-10-23 Thread Jacob Munson
I don't know the answer to your question, but I've also been doing Android development, and have had great luck with the stackoverflow community when I need answers. Give that a try. On Sat, Oct 23, 2010 at 12:22 PM, Rick Faircloth r...@whitestonemedia.com wrote: I'm getting into mobile

Re: How to Capture Field Name with Two Input Variables

2010-10-23 Thread Dakota Burns
Outstanding response to my question here on CF-Talk! Thank you very much Dave, Arsalan, Russ, and Enigment -- the variety of your responses showing differing ways to accomplish this simple task is great. Thanks again! Dakota On Sat, Oct 23, 2010 at 11:34 AM, Dakota Burns

RE: (ot) (kinda) How do I upload an image to a website from an Android phone?

2010-10-23 Thread Rick Faircloth
Thanks for the tip. I actually did read some comments on that site. I'll ask the question there. Are you doing all your develop for native apps or mobile websites or a combination? -Original Message- From: Jacob Munson [mailto:yacoub...@gmail.com] Sent: Saturday, October 23, 2010

Re: RE: (ot) (kinda) How do I upload an image to a website from an Android phone?

2010-10-23 Thread Jacob Munson
Right now I'm just building a native app. Sent with my Droid On Oct 23, 2010 1:04 PM, Rick Faircloth r...@whitestonemedia.com wrote: Thanks for the tip. I actually did read some comments on that site. I'll ask the question there. Are you doing all your develop for native apps or mobile

RE: moveTo on cfwindow no longer working in CF9?

2010-10-23 Thread Andrew Scott
Ok, you need to be very careful with that way of doing it, the method I showed you is for displaying on the browser using the x and y. The align to, is to align the window to that element. So if you have a small div that takes up say 30% of the screen and you use the alignTo it will then only

Re: (ot) (kinda) How do I upload an image to a website from an Android phone?

2010-10-23 Thread Dave Watts
I'm getting into mobile development and have been searching for days to figure out how to use a web-based form to access images on my Samsung Fascinate and upload them to websites I've built. I cannot find an answer, except from back into 2008, where the poster wrote you can't upload an

Javascript and CF flash forms

2010-10-23 Thread Monique Boea
Can javascript be used with CF flash forms? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: Want Help with cffileupload .swf Not Loading w/Non-URL Accessible CFIDE

2010-10-23 Thread Aaron Neff
Hi Matthew, Just wanted to say good work and thanks for filing. I've +1'd this, since issue still exists in CF 9.0.1 CHF1. I also added a note, here: http://kb2.adobe.com/cps/849/cpsid_84902.html ..in cffileupload_swf.js, these variables also reference CFIDE: - defaultAddIcon -

Merge cells using cfspreadsheet

2010-10-23 Thread Jay Birdsell
is it possible to merge cells using cfspreadsheet? As in creating a multi-row header and centering it over the data? I have looked at all the formatting functions and did not see anything. Perhaps I just overlooked it??? TIA jay

Re: Merge cells using cfspreadsheet

2010-10-23 Thread Joel Watson
Did you look at SpreadsheetMergeCells()? http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-6734.html In my own experience, there appear to be some formatting limitations to merged cells, but this method will definitely do the trick of merging cells across

Re: CFSpreadSheet and Custom Colors

2010-10-23 Thread Joel Watson
So my question is, how do I achieve a custom color with RGB values above 127? If memory serves, I _believe_ you can just deduct -256 whenever the value is greater than 127. The result can then be cast as a byte. Of course if my memory is faulty, you could also use: javacast(int,

Re: Merge cells using cfspreadsheet

2010-10-23 Thread Jay Birdsell
Did you look at SpreadsheetMergeCells()? http://help.adobe.com/en_US/ColdFusion/9. 0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-6734.html In my own experience, there appear to be some formatting limitations to merged cells, but this method will definitely do the trick of merging cells

Re: CFSpreadSheet and Custom Colors

2010-10-23 Thread Leigh
You are welcome. I am pretty sure something like this would work too cfset unsignedByte = 240 cfif unsignedByte cfset unsignedByte - 256 /cfif cfset signedByte = javacast(byte, unsignedByte ) .. but I guess byteValue() is simpler ;-) Cheers -Leigh

House of Fusion - VisionTree Request to Post Job

2010-10-23 Thread Martin Pellinat
Hello House of Fusion, We would like to post a job on your site. Please let me know what that would take and next steps. The ad is below and please feel free to reach me with any questions at: mpelli...@visiontree.com or (619) 295-2800 x1000. Thanks for your help - this is a great site.