Re: Substitute/conversion for Flash Interactive Menus for iPad?

2010-05-11 Thread Jochem van Dieten
On Thu, May 6, 2010 at 1:54 AM, Judah McAuley wrote: I wouldn't be quite so quick on the pronouncement that most of tablet platforms will support Flash, at least in the short term. Besides the iPad, there isn't a shipping tablet that has any serious market penetration. Archos has one out

Re: Substitute/conversion for Flash Interactive Menus for iPad?

2010-05-11 Thread James Holmes
I suspect Asus are better known outside the US too. Certainly in the Asia-Pacific region they are everywhere. I'm likewise still waiting for the opportunity to ignore the iPad in Australia. mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ On 11 May 2010 15:11,

Re: Mail Server Software

2010-05-11 Thread Jochem van Dieten
On 5/10/10, Carey Duryea wrote: If you just want an MTA try Postfix. If you want an MDA too add Dovecot to it. i know MTA means mail transfer agent, whats MDA mean? Like Judah said Mail Delivery Agent. It is the part of the mail system that takes care of routing email into the local mail

Re: Style Classic Debugging File in CFIDE

2010-05-11 Thread Rob Barthle
Follow the instruction for installation as they lay it out, and you'll be fine. You have to add the coldfire.cfm template to the debug directory, and they replace your trace.cfm file in the cftags folder, but they recommend (as do I) that you rename the original file first so you have it as a

Re: CF9 Developer Edition and Verity?

2010-05-11 Thread Rob Barthle
It might be worth noting that Verity support is going to get dropped at some point in the future, you might want to investigate using Solr instead of Verity. Adam Well I would like to, but having read the thorough testing Ray Camden did on Solr, and the findings that the Solr

Which code reuse method?

2010-05-11 Thread Shannon Rhodes
I'm probably overthinking this, but I have a really simple snippet of code that I want to make easily available to other developers in-house. It takes no input variables; all it does is figure out the correct link to reporting services based on the server environment (dev/QA/prod). Given the

Re: Substitute/conversion for Flash Interactive Menus for iPad?

2010-05-11 Thread Dawn Sekel
Cool - thanks for the tip Rick. I didn't think about jquery. I found a really cool website after reading your post: http://webdesignledger.com/tutorials/13-excellent-jquery-animation-techniques I tested this site on my iPhone and it worked:

Re: Which code reuse method?

2010-05-11 Thread Gerald Guido
However, my secondary concern is that we do not have a process for sharing code in-house so I could see whatever method I choose turning into a sort of default method of code reuse (even when not appropriate). If that is the case, I would recommend making it a custom tag and sticking it in the

Re: Which code reuse method?

2010-05-11 Thread Cutter (ColdFusion)
We set a variable in our onApplicationStart() method that looks at the server and defines an Application level variable for the server environment (which we'll move to the Server scope once we transition to CF9). Steve Cutter Blades Adobe Community Professional - ColdFusion Adobe Certified

Re: Substitute/conversion for Flash Interactive Menus for iPad?

2010-05-11 Thread Judah McAuley
Thanks Jochem, I didn't think the Archos ran Flash for some reason. I'll have to take a look at them again as one of my concerns is that there may be some resistance to bringing an Apple device into an otherwise all MS ecosystem since my products are for medical offices and they are all quite MS

Re: Substitute/conversion for Flash Interactive Menus for iPad?

2010-05-11 Thread Judah McAuley
That is certainly possible. I'm familiar with them mostly as component vendors, particularly motherboards. My market is US-based medical offices which is a large market but is also very particular, so it is certainly possible that I'm missing nuance that would make these options a lot more

Re: Substitute/conversion for Flash Interactive Menus for iPad?

2010-05-11 Thread Judah McAuley
Out of curiosity, Jochem, which Archos are you guys using for demos? The Win7-based Archos 9? Or the Android based Archos 7 8? On Tue, May 11, 2010 at 12:11 AM, Jochem van Dieten joch...@gmail.com wrote: On Thu, May 6, 2010 at 1:54 AM, Judah McAuley wrote: I wouldn't be quite so quick on the

Re: Which code reuse method?

2010-05-11 Thread Jason Fisher
+1 to making it a custom tag in the server's default custom tag directory. Definitely a custom tag or a cfc seem like overkill. Custom tag is just that: a bit of code that can be called in a single tag, that's all. Nothing 'overkill' about it to implement for a simple computation.

RE: Which code reuse method?

2010-05-11 Thread DURETTE, STEVEN J (ATTASIAIT)
If your custom tag doesn't surround anything, make sure you add this line: cfif thistag.ExecutionMode is endcfexit method=exitTag/cfif That way if you have programmers that self close tags (cf_customtag /), it won't run twice. Steve -Original Message- From: Jason Fisher

Re: Substitute/conversion for Flash Interactive Menus for iPad?

2010-05-11 Thread Jochem van Dieten
On 5/11/10, Judah McAuley wrote: Out of curiosity, Jochem, which Archos are you guys using for demos? The Win7-based Archos 9? Or the Android based Archos 7 8? Something Windows based, I don't know the exact model. Jochem -- Jochem van Dieten http://jochem.vandieten.net/

Re: Which code reuse method?

2010-05-11 Thread Shannon Rhodes
Great tips, thanks all! ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive:

RE: Which code reuse method?

2010-05-11 Thread LRS Scout
The two I would look at and use as it makes sense would be either to create it as a custom tag someplace everyone can get to it (cfmodule calls work too here) or make it as an application scoped udf that gets included onapplicationstart. We have a ton of udfs that are included once and used al

Select List: in edit mode, multiple selections - Stumped!

2010-05-11 Thread Dan Sullivan
I'm in edit mode in my form, passing and URL.id value which is a product id. I'm trying to get the atribId values: 17, 19, 22, 61, 74 to populate my multiple select box as selected, but it's only working for the first value 17. CFQUERY name=sizes datasource=#datasource# select name, id from

Re: Select List: in edit mode, multiple selections - Stumped!

2010-05-11 Thread morgan l
This is like outputting url_sizes.attributeId outside a cfoutput tag, it only gets the first item. You need to set the attributeId column into a list: cfset myAttribList = ValueList(url_sizes.attributeId) On Tue, May 11, 2010 at 12:04 PM, Dan Sullivan coldfusiondevelope...@gmail.com wrote:

Re: Select List: in edit mode, multiple selections - Stumped!

2010-05-11 Thread Dan Sullivan
It worked! Thank you. This is like outputting url_sizes.attributeId outside a cfoutput tag, it only gets the first item. You need to set the attributeId column into a list: cfset myAttribList = ValueList(url_sizes.attributeId) On Tue, May 11, 2010 at 12:04 PM, Dan Sullivan

New CF security bulletin

2010-05-11 Thread Dave Watts
http://www.adobe.com/support/security/bulletins/apsb10-11.html Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at

Re: New CF security bulletin

2010-05-11 Thread David McGuigan
Man it would've been nice if the ER to make this all automatic had gone through right now. On Tue, May 11, 2010 at 1:47 PM, Dave Watts dwa...@figleaf.com wrote: http://www.adobe.com/support/security/bulletins/apsb10-11.html Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/

Time Warner Cable looking for Cold Fusion/SQL Developer in NY

2010-05-11 Thread Tasheemah Wilkerson
My name is Tasheemah Wilkerson and I am a Recruiter for Time Warner Cable in Queens New York. I currently have a need for a Full Time Cold Fusion/Sql Server Developer. I am looking for great candidates with the right skill set. Please have a look at a snapshot of the Job Description:

Re: Style Classic Debugging File in CFIDE

2010-05-11 Thread Matthew Lowrey
Thank you everyone for your feedback and ideas. Sorry I didn't respond earlier, we've had to make some changes to our websites for security purposes and its taken all my time away from responding to you all. I've enjoyed all the comments and have learned a little bit from you all. Hopefully

Re: Looking for Suggestion: e-Commerce/CMS Integration

2010-05-11 Thread Eric J. Hoffman
We second the recommendation at Quill Design. Regards, Eric J. Hoffman Managing Partner, EJH Associates, LLC Phone: 651.717.4105 Cell: 612.819.3017 Blackberry: 612.321.1760 Virtual Fax: 651.344-4329 Meeting Room: http://meet.ejhassociates.com/eric Adobe Solutions Silver Partner Sun