RE: 404's

2008-05-08 Thread Andy Matthews
If you had CF8, you could take advantage of the onMissingTemplate method. You could try using a URL rewrite tech such as ISAPE_REWRITE. It's really easy and relatively inexpensive. There's also an open source alternative to it, but I can't recall the name of it. -Original Message- From:

Rant on ColdFusion 8 Report Builder... anyone used it?

2008-05-08 Thread Andy Chen
It is nice to see Adobe taking development time to build up a FREE Report Building application for ColdFusion. I never used the CF 7 MX version of it but just tried the latest build to see if I can adapt it for some reporting I need to do. I also evaluated Crystal Reports 2008 just to measure up

RE: Television: Mythbusters and CBS

2008-05-02 Thread Andy Matthews
I'ts unlikely that they'd bring the MB show to CBS as I'm sure that copyright is owned by Discovery (isn't that where MB plays?). That'd be cool though. -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Friday, May 02, 2008 11:20 AM To: CF-Talk Subject: Television: My

RE: OT - Size of a chromed out window

2008-04-30 Thread Andy Matthews
http://www.thecounter.com/stats/2008/March/res.php 640x480 plus 800x600 adds up to somewhere around 7%. Everything else is larger than that, as long as you don't count mobile devices. -Original Message- From: Matthew Friedman [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 30, 2008 3

RE: Japanese Characters in Form Fields

2008-04-30 Thread Andy Matthews
Just at the top of the CFM page. -Original Message- From: Chad McCue [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 30, 2008 9:56 AM To: CF-Talk Subject: RE: Japanese Characters in Form Fields Nope, where would that function be called? -Original Message- From: Ian Skinner [m

RE: Japanese Characters in Form Fields

2008-04-30 Thread Andy Matthews
What do you have your charset set to? -Original Message- From: Chad McCue [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 30, 2008 9:33 AM To: CF-Talk Subject: Japanese Characters in Form Fields I have a site that displays Japanese text fine, but when someone types in Japanese characte

Re: CF 8.0.1 Update and CFMENU

2008-04-29 Thread Andy Chen
Oh... a new issue: One of the fixes to remove the upper border line of the VERITCAL CFMENU will also remove the ability. Those dividing lines are now gone if you remove the top border width from the CSS below. This part has been modified in the YUI.CSS ..yuimenu ul { list-style-type:none

RE: Form to TIFF?

2008-04-29 Thread Andy Matthews
By the way... If you're not adverse to using the underlying Java language, there's libraries out there to save TIFF files: http://asprise.com/product/javatiff/ andy -Original Message- From: Melissa Cope [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 29, 2008 3:18 PM T

RE: Form to TIFF?

2008-04-29 Thread Andy Matthews
Melissa... Don't want to be cliche, but is there a specific reason they want a TIFF file? I'm sure it can be done, but I'd be more interested in their reasoning. Is it so that it interfaces with some other piece of software more easily? -Original Message- From: Melissa Cope [mailto:[EMAIL

Re: CF 8.0.1 Update and CFMENU

2008-04-24 Thread Andy Chen
This sucks. I would expect that they would have tested these new YUI updates before releasing it as an official CF update. There was a decent amount of changes done to the YUI.CSS (it is actually SMALLER then in the original release) and I think someone at Adobe didn't fully test it. For the m

RE: LCDS + Flex 3 (AIR)

2008-04-24 Thread Andy Matthews
CF-Talk list member Joao's site: http://www.onflexwithcf.org/ It (and he) have been extremely helpful. -Original Message- From: Steve Good [mailto:[EMAIL PROTECTED] Sent: Thursday, April 24, 2008 3:59 PM To: CF-Talk Subject: LCDS + Flex 3 (AIR) Anyone have or know of any great tutorial

RE: This is what I need at home.

2008-04-24 Thread Andy Matthews
That's nice. We usually have to beg for upgrades here. Then justify the purchase, then submit a request up the chain to the group VP, who then makes us submit ANOTHER justification, etc. -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Thursday, April 24, 2008 3:27 PM

Re: CF 8.0.1 Update and CFMENU

2008-04-24 Thread Andy Chen
Wow... I must have clicked on post instead of reply. Here's the thread I am talking about: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:55996 Examining the yui.css file it looks like there are lots of new features added and the CSS is actually trimmed down from the original y

Re: CF 8.0.1 Update and CFMENU

2008-04-24 Thread Andy Chen
I am experiencing similar problems with the CF 8.0.1 update. When doing the update, it messed up a few of my CFMENUs (the thick upper menu bar, the active underline text, and messed up submenus). I think the YUI.CSS modification should fix some issues but... How did you solve the problem of the

RE: Fancy learning about the COOP framework?

2008-04-24 Thread Andy Matthews
COOP is pretty nice. I watched a presentation a few months back and was very impressed. -Original Message- From: Nick Tong [mailto:[EMAIL PROTECTED] Sent: Thursday, April 24, 2008 9:46 AM To: CF-Talk Subject: ANN: Fancy learning about the COOP framework? You can later at 18:00 GMT - fin

RE: URL re-write SEO friendly

2008-04-21 Thread Andy Matthews
I'll second ISAPI_REWRITE... -Original Message- From: Dominic Watson [mailto:[EMAIL PROTECTED] Sent: Monday, April 21, 2008 12:24 PM To: CF-Talk Subject: Re: URL re-write SEO friendly I have used ISAPI_Rewrite for IIS, excellent and only $99 per server. http://www.isapirewrite.com/ Yo

RE: cfquery and mysql help

2008-04-21 Thread Andy Matthews
Do you have the query? -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Monday, April 21, 2008 10:53 AM To: CF-Talk Subject: cfquery and mysql help Hi, im sure there must be a better way of doing the following code, and much quicker. i have a query which is built

RE: Remove everything but numbers and letters from a string

2008-04-21 Thread Andy Matthews
You need to add a caret just after the opening bracket. It inverts the selected items and says "everything BUT these". -Original Message- From: Steve Sequenzia [mailto:[EMAIL PROTECTED] Sent: Sunday, April 20, 2008 8:52 PM To: CF-Talk Subject: Re: Remove everything but numbers and letter

RE: cftextarea: how to count characters? maxlength

2008-04-18 Thread Andy Matthews
count characters? maxlength i can bobby's code to work with a regular cftextarea, but not the one with richtext document.form1.descLong.value = 8000 - document.form1.descLong.value.length; how do i target the iframe? if thats what it is? On Fri, Apr 18, 2008 at 10:07 AM, Andy Matthews <[EM

RE: cftextarea: how to count characters? maxlength

2008-04-18 Thread Andy Matthews
One thing you'll have to take into account (because you're using richetext) is the underlying HTML. Most people aren't going to be able to mentally correlate 100 words of text inside the preview window as actually being 300 characters of code. You'll also have to make sure you point your target at

RE: how can i check if coldfusion 8 is running in 32bit or 64bit mode?

2008-04-18 Thread Andy Matthews
Adobe only recently released the 64 bit version. And from what I understand you had to have uninstalled the 32bit version to install the 64bit one. So unless your IT guys have done an uninstall of CF, you're likly running the 32 bit version still. -Original Message- From: Steve Dworman [m

Re: cfmenu menus disappear behind flashpaper

2008-04-17 Thread Andy Chen
> I have a very simple page that I am using both cfmenu and flashpaper > on. The flashpaper starts about 1/4 of a way down the page and really > long cfmenu items disappear behind the flashpaper. > > I don't know much about CSS and even less about flash, but does flash > and by extension shoul

RE: Are cfqueries on a UDF effecient?

2008-04-16 Thread Andy Matthews
amazed at what you've missed. -Original Message- From: Mike Francisco [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 16, 2008 2:51 PM To: CF-Talk Subject: RE: Are cfqueries on a UDF effecient? @Dave, Andy: Thank you very much for the reply! Andy, thanks for the reminder on local

RE: Are cfqueries on a UDF effecient?

2008-04-16 Thread Andy Matthews
ose queries being run each time the > page loads, or only when the function in which they live is called? > Andy, that is what I am trying to find out. Not all of the functions that contains a query is being called. So I am not really sure how the server treats the cfqueries before

RE: Are cfqueries on a UDF effecient?

2008-04-16 Thread Andy Matthews
Let me double check. Are each of those queries being run each time the page loads, or only when the function in which they live is called? -Original Message- From: Mike Francisco [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 16, 2008 1:34 PM To: CF-Talk Subject: Are cfqueries on a UDF

RE: default font size for a page

2008-04-16 Thread Andy Matthews
You need to assign a default font size to containers. I generally use this method: body, p, div, td { font-family: verdana; font-size: .8em; color: #00; } -Original Message- From: Don L [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 16, 2008 11:40 AM To: CF-Talk Subjec

RE: BlazeDS messaging stops working?

2008-04-15 Thread Andy Matthews
. andy matthews -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Monday, April 14, 2008 1:20 PM To: CF-Talk Subject: SOT: BlazeDS messaging stops working? I have an AIR app that I wrote which uses BlazeDS. When a new message is sent out, each of the clients

SOT: BlazeDS messaging stops working?

2008-04-14 Thread Andy Matthews
I have an AIR app that I wrote which uses BlazeDS. When a new message is sent out, each of the clients subscribed to the messaging channel should receive that message. However, I'm finding that's not the case. My dept is running the client for a few days so that we can test it's memory usage and

RE: Using tags with CFSCRIPT

2008-04-14 Thread Andy Matthews
That's assinine. If they provide a workaround for their customers, why not just build it in to their system and officially allow multiple domains? Silliness. -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Monday, April 14, 2008 10:02 AM To: CF-Talk Subject: Re: Usin

RE: Using tags with CFSCRIPT

2008-04-14 Thread Andy Matthews
If you want multiple domains under one account, just go with Gearhost.com. ColdFusion 8 hosting, up to 10 domains for one account, SQL Server, MySQL and it's $20 a month vs the $28 a month you're paying with HMS. And the final bonus is that you're not resorting to theft to get what you want. ---

RE: BlogCFC templates

2008-04-14 Thread Andy Matthews
I decided to just design my own template. No way I'm going to be happy with an off the shelf template. -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Friday, April 11, 2008 9:51 PM To: CF-Talk Subject: BlogCFC templates I'm evaluating blog software a

CSS Question

2008-04-14 Thread Andy
um dioxide yellow #6, red #3, red #40, blue #1, glycerin, sorbitol modified food starch, preservative [sodium benzoate, potassium sorbate], vegetable gum, citric acid Last Row Andy ~| Adobe® ColdFusion® 8 so

BlogCFC templates

2008-04-11 Thread Andy Matthews
I'm evaluating blog software and I think that I've narrowed it down to Mango Blog or BlogCFC. I plan on designing the site myself, but think it might be easiest to start from a pre-exising template to make it easier on myself. Are there any sites out there that have premade templates specically

CF8 Server monitor not working with Apache 2.059

2008-04-11 Thread Andy Cortright
Hi, I cna not get the cf8 server onitor to connect to the deafult (cfusion) instance of over port 80. I am running Apache as an external webserver and I have the Jrun web server turned on as well. I can connect to the default instance over the internal webserver port 8300. Any ideas? Appreciat

RE: domain registrar

2008-04-11 Thread Andy Matthews
I personally use Gandi.net. Their control panel is nice and easy, and their prices are reasonable. -Original Message- From: ColdFusion [mailto:[EMAIL PROTECTED] Sent: Friday, April 11, 2008 10:24 AM To: CF-Talk Subject: RE: domain registrar What problems did you have? I have maybe 10 do

RE: How can I copy/move a file from coldfusion server (data area) to the my local machine

2008-04-10 Thread Andy Matthews
You cannot. That would be a breach of security. The best you can do is to force a "file download" box to be displayed. But then the user takes over and you have no more input in the matter. -Original Message- From: sandeep saini [mailto:[EMAIL PROTECTED] Sent: Thursday, April 10, 2008 1:

RE: SOT: Where can I go to find the status of an Adobe bug I submitted?

2008-04-09 Thread Andy Matthews
bug I submitted? Andy Matthews wrote: > I recently submitted a bug to the AIR team. How do I check the status on that bug? What did it say on the page where you submitted the bug? Jochem ~| Adobe® ColdFusion® 8 soft

SOT: Where can I go to find the status of an Adobe bug I submitted?

2008-04-08 Thread Andy Matthews
I recently submitted a bug to the AIR team. How do I check the status on that bug? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516

Recommended CSS list-serv's for questions

2008-04-07 Thread Andy
Folks, What on-line groups like CF-Talk do you recommend for CSS questions? Andy ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk

CSS Question

2008-04-06 Thread Andy
oxide yellow #6, red #3, red #40, blue #1, glycerin, sorbitol modified food starch, preservative [sodium benzoate, potassium sorbate], vegetable gum, citric acid Last Row Andy ~| Adobe® ColdFusion® 8 so

OT: Bug in Adobe AIR apps when used with FDMSBridge.swf

2008-04-04 Thread Andy Matthews
I've been working on an HTML/JS based AIR application for my company, a sort of one-way instant messenger. It will allow managers and IT staff to instantly push messages to all employees using BlazeDS. It's been a long road due to the fact that neither HTML based AIR apps, nor BlazeDS itself ha

RE: Coldfusion + AIR

2008-04-04 Thread Andy Matthews
ion on AIR apps to begin with, and even less on HTML AIR apps. andy matthews -Original Message- From: vishnu prasad [mailto:[EMAIL PROTECTED] Sent: Thursday, April 03, 2008 9:13 PM To: CF-Talk Subject: Re: Coldfusion + AIR Hi All Thanks for all ur reply I am planning to lear

RE: Order by question

2008-04-03 Thread Andy Matthews
Also, if you're using SQL Server (or MySQL) this one's even easier: SELECT * FROM tmp ORDER BY ascii( c ) ASC -Original Message----- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Thursday, April 03, 2008 4:49 PM To: CF-Talk Subject: RE: Order by question Paul... What DB

RE: Order by question

2008-04-03 Thread Andy Matthews
0 201020 -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Thursday, April 03, 2008 4:49 PM To: CF-Talk Subject: RE: Order by question Paul... What DBMS are you using? In MySQL 5, sorting a numeric column apparently defaults to sorting alphabetically. CREATE TABLE

RE: Order by question

2008-04-03 Thread Andy Matthews
Paul... What DBMS are you using? In MySQL 5, sorting a numeric column apparently defaults to sorting alphabetically. CREATE TABLE `tmp` ( `c` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; INSERT INTO tmp (c) VALUES (1); INSERT INTO tmp (c) VALUES (101); INSERT INTO tmp (c) VALUES (1

SOT: BlazeDS connection works for browser code, but not for AIR code.

2008-04-03 Thread Andy Matthews
I have a test app that I've written to work with BlazeDS. It's running great in the browser. When I push a new message to the gateway, it shows up just fine in the browser window. But when I use the exact same code, and compile an AIR app, it doesn't work. Does anyone have any idea why it might

RE: Flex?

2008-04-03 Thread Andy Matthews
I wouldn't say that Flex replaces the need for Javascript, and it certainly doesn't replace the need for HTML. But yes, Flex is strictly for client facing, and it plays very nicely with ColdFusion running on the server. -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sen

RE: Flex Ajax Bridge & jQuery...

2008-04-03 Thread Andy Matthews
Ah...okay...we'll see if that works. Thanks for the input Dan. -Original Message- From: Dan G. Switzer, II [mailto:[EMAIL PROTECTED] Sent: Thursday, April 03, 2008 9:59 AM To: CF-Talk Subject: RE: Flex Ajax Bridge & jQuery... Andy, My point was just leave the code the w

RE: Flex Ajax Bridge & jQuery...

2008-04-03 Thread Andy Matthews
This is for an AIR app Dan...would it be alright to switch the document.ready over to a window.ready? -Original Message- From: Dan G. Switzer, II [mailto:[EMAIL PROTECTED] Sent: Thursday, April 03, 2008 7:37 AM To: CF-Talk Subject: RE: Flex Ajax Bridge & jQuery... Andy, >Has an

RE: ColdFusion Reseller Hosting

2008-04-03 Thread Andy Matthews
r accounts allow multiple domains...that was one of the primary selling points for me. -Original Message- From: Peter Donahue [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 02, 2008 10:06 PM To: CF-Talk Subject: Re: ColdFusion Reseller Hosting Hello Andy and listers, What has been your

RE: Coldfusion + AIR

2008-04-03 Thread Andy Matthews
Vishnu... We'd need to know which type of AIR app you're going to build before pointing you to some examples. Are you planning on building a Flex or Flash based AIR app, or will it be done in HTML/JS? -Original Message- From: vishnu prasad [mailto:[EMAIL PROTECTED] Sent: Thursday, April

RE: ColdFusion Reseller Hosting

2008-04-02 Thread Andy Matthews
Gearhost.com doesn't offer a reseller plan as such, but they do support multiple domains per account, and I believe offer a percentage off each additional account. -Original Message- From: Peter Donahue [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 02, 2008 6:14 PM To: CF-Talk Subje

SOT: Flex Ajax Bridge & jQuery...

2008-04-02 Thread Andy Matthews
Has anyone on this list done any work with the FABridge code provided by Adobe for use in working with Flex? I've got it running great when it's in a plain script block inside the body tag. But the second I put it inside a jQuery $(document).ready call, it dies (with no errors). I've tried put

RE: Does BlazeDS produce any error, or log files?

2008-04-02 Thread Andy Matthews
files? Andy, it should write directly to the cfusion-out.log under {jrun4}/logs . -- João Fernandes http://www.onflexwithcf.org http://www.riapt.org Portugal Adobe User Group (http://aug.riapt.org) ~| Adobe® ColdFusion® 8

RE: Does BlazeDS produce any error, or log files?

2008-04-02 Thread Andy Matthews
e any error, or log files? Andy you can enable it server-side by setting in the services-config.xml file the level to 'debug' or to 'All' ( at the end of the file ). You can also add or remove which kind of messages should be logged in the filters properties (a full list is suppli

Does BlazeDS produce any error, or log files?

2008-04-02 Thread Andy Matthews
I'm having a tough time debugging a BlazeDS app, and I'm wondering if there are any log files I can inspect. Anyone? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial ht

Viewed queued Gateway messages in ColdFusion 8?

2008-04-01 Thread Andy Matthews
I'm trying to get BlazeDS working with my Flex application. I have messages going back and forth, but I'm not sure if it's using Blaze or the built-in ColdFusion Gateway. I'm trying to send a message via a ColdFusion template but it doesn't seem to be working. A response shows up in the Flex app

RE: Help with Regular expression

2008-04-01 Thread Andy Matthews
You can call them date as long as they're not form field variables. -Original Message- From: Kris Jones [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2008 2:48 PM To: CF-Talk Subject: Re: Help with Regular expression You'd want to use ReReplace, rather than Replace of course. But p

RE: Remove everything left of a substring in a string

2008-04-01 Thread Andy Matthews
-Original Message- From: Steve Sequenzia [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2008 3:09 PM To: CF-Talk Subject: Remove everything left of a substring in a string I am trying to figure out the best way to remove all text that is left of a substring in a string. Sting

RE: How do I do this

2008-04-01 Thread Andy Matthews
I believe that you need to explictly pass them in via your onMissingTemplate method (I assume that's what you're using). Here's a read through of App.cfc on Ray Camden's site: http://www.coldfusionjedi.com/downloads/application.cfc.txt -Original Message- From: Phill B [mailto:[EMAIL PR

RE: Examples of BlazeDS with ColdFusion CFCs?

2008-04-01 Thread Andy Matthews
es of BlazeDS with ColdFusion CFCs? Andy, try to set up as Remoting project. Messaging packages are bundle with the Flex 3 SDK, you should be able to set up the project as Remoting only and still leverage that functionality. -- João Fernandes http://www.onflexwithcf.org http://www.riap

Re: Examples of BlazeDS with ColdFusion CFCs?

2008-03-31 Thread Andy Matthews
João... I'm having trouble walking through the examples on your site. I'm thinking it has something to do with my setup, but could you take a look at my most recent comment on your site? ~| Adobe® ColdFusion® 8 software 8 is

Examples of BlazeDS with ColdFusion CFCs?

2008-03-28 Thread Andy Matthews
Does anyone have examples of BlazeDS working with a CFC? I'm trying to get Blaze setup locally for an app I'm building. It appears to be running, but I don't know Java so I'm not sure how the samples would work with a CFC rather than a Java class. ~

RE: test (ignore) -- read at your peril (spelling?)

2008-03-27 Thread Andy Matthews
Peril is spelled correctly. Good job. -Original Message- From: Don L [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 26, 2008 3:57 PM To: CF-Talk Subject: test (ignore) -- read at your peril (spelling?) hey, forum, you don't want to talk to me today? I posted one @ 1 ish pm, still not

RE: Coldfusion 8 on Leopard - all of a sudden stopped working

2008-03-23 Thread Andy Matthews
I think I know what you mean about LoadModule Dave...this is what's currently in my httpd.conf file for CF/JRun: # JRun Settings LoadModule jrun_module /Applications/ColdFusion8/runtime/lib/wsconfig/1/mod_jrun20.so JRunConfig Verbose false JRunConfig Apialloc false JRunConfig Ignoresu

RE: Coldfusion 8 on Leopard - all of a sudden stopped working

2008-03-23 Thread Andy Matthews
ave L... What web connector? All: I've rerun the CF Launcher several times, as well as reconnecting CF to Apache using the JRun connector utility and it's still not working. andy -Original Message- From: J.J. Merrick [mailto:[EMAIL PROTECTED] Sent: Sunday, March 23, 2008 5:59

RE: Any "Gotcha's" in using CF UUID for db record primary key?

2008-03-23 Thread Andy Matthews
I'd agree with Dominic. My company used to use GUIDs for OK and it's a pain in the arse. When you start getting hundreds of millions of records in the database, that varchar field for the GUID starts to take up a lot of space. Using it as the key for joins is trouble waiting to happen because now,

Re: BlazeDS with HTML + JS based AIR apps

2008-03-22 Thread Andy Matthews
João... Do you have any more input on this? I've only been working with Flex for a month or two and I've not yet even worked with RemoteObjects in Flex, much less with AIR apps. Can you point me to some tutorials? >Andy, > >you should be able to use BlazeDS to pr

Coldfusion 8 on Leopard - all of a sudden stopped working

2008-03-22 Thread Andy Matthews
I've had CF8 running on my Intel Mac Mini for about 2 months now. I followed a tutorial which told me to use MAMP rather than the built in version of Apache: http://www.flashalisious.com/2007/12/14/installing-coldfusion8-on-leopard-using-mamp/ Anyway, that's not the point as it's been running gre

BlazeDS with HTML + JS based AIR apps

2008-03-21 Thread Andy Matthews
I'm watching a presentation made by Tom Jordahl on UGTV: https://admin.acrobat.com/_a204547676/p90783934/ I'd like to get a 100% sure answer if it's possible to use Blaze with an HTML + Javascript based AIR application. Does anyone have a definitive answer, and can provide a URL for info, or c

RE: Visual Ajax IDE?

2008-03-20 Thread Andy Matthews
Aptana ++ It still suffers from the same stuff that Eclipse itself does, namely it's a memory hog, and it lags on my system, but overall it's a very useful piece of software. -Original Message- From: Chris Jordan [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2008 1:21 PM To: CF-Tal

RE: Flash Remoting and CF

2008-03-19 Thread Andy Matthews
Your Flash guys are correct. Flash cannot run queries directly against the database. It needs middleware such as ColdFusion, PHP, or .NET. Your best bet is to write some CFCs to which Flash can connect. That's true remoting using the AMF protocol. Your application will be faster and more efficient

UPDATE: Installing and running BlazeDS - install walkthrough fails

2008-03-19 Thread Andy Matthews
As a followup... I walked through the install process here: http://labs.adobe.com/wiki/index.php/BlazeDS:Release_Notes#Integrating_Blaze DS_with_a_ColdFusion_8_installation But first, I'm running mult-server instances of ColdFusion and the process doesn't quite cover that. It references folders t

RE: Installing and running BlazeDS

2008-03-19 Thread Andy Matthews
Ah... I did install LCDS so great...that makes sense. Thanks for clarifying Dave. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2008 12:02 AM To: CF-Talk Subject: RE: Installing and running BlazeDS > > but it states "To integrate BlazeDS with

Installing and running BlazeDS

2008-03-18 Thread Andy Matthews
I've got CF8 developer edition running on my local machine in multi-server mode. Primary instance is of course cfusion, then I also have two other instances. What's the best way to for me to install and run BlazeDS locally for testing my AIR apps? I found this walkthrough online: http://labs.ad

RE: Back button and Ajax

2008-03-17 Thread Andy Matthews
jQuery has a history plugin that makes managing state for AJAX calls a snap. http://plugins.jquery.com/project/history andy -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Monday, March 17, 2008 1:45 PM To: CF-Talk Subject: Back button and Ajax Hi, Ajax

RE: SPAM: Re: OT: Free HTTP traffic monitor? Anyone know of one?

2008-03-14 Thread Andy Matthews
Yeah... I'm going to be doing a lot of AIR work over the next 6 months or so. I might get my company to spring for it. Thanks for the recommend. -Original Message- From: Mike Chabot [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2008 6:28 PM To: CF-Talk Subject: SPAM: Re: OT: Free HTT

RE: Still can't make new posts to the CF-talk list

2008-03-14 Thread Andy Matthews
Thanks Jochem (by the way...do you pronounce your name YO-chem or wah-KEEM or some other way?). -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2008 12:13 PM To: CF-Talk Subject: Re: Still can't make new posts to the CF-talk list

RE: Still can't make new posts to the CF-talk list

2008-03-14 Thread Andy Matthews
;m sending from my >dealerskins account here at work. And remember, replies work just fine. > Andy, Michael is out right now but when he's back I'll have him look into this... If we don't find it today, we'll see what we can do over the weekend. Ju

RE: Free HTTP traffic monitor? Anyone know of one?

2008-03-14 Thread Andy Matthews
11:45 AM To: CF-Talk Subject: RE: Free HTTP traffic monitor? Anyone know of one? Andy, take a look at Etheral. http://www.ethereal.com/ -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2008 11:30 AM To: CF-Talk Subject: RE: Free HTTP traffic

RE: Still can't make new posts to the CF-talk list

2008-03-14 Thread Andy Matthews
till can't make new posts to the CF-talk list On Fri, Mar 14, 2008 at 12:41 PM, Andy Matthews <[EMAIL PROTECTED]> wrote: > Is anyone else still having problems making new posts to the CF-Talk > list from external programs? I've not been able to make new posts to > the CF-Tal

RE: Free HTTP traffic monitor? Anyone know of one?

2008-03-14 Thread Andy Matthews
Hey Dave... Do you know offhand if Fiddler can view AMF requests like the Flash Debugger can? Right now I'm using the Flash Debugger to view requests for Flash stuff, and other tools for viewing standard requests. It would be awesome if Fiddler could do both. To be clear I want to see the data

RE: Free HTTP traffic monitor? Anyone know of one?

2008-03-14 Thread Andy Matthews
Dave... That's EXACTLY what I'm looking for. Thank you!! andy matthews. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2008 10:53 AM To: CF-Talk Subject: RE: Free HTTP traffic monitor? Anyone know of one? > As I'm getting into

RE: Still can't make new posts to the CF-talk list

2008-03-14 Thread Andy Matthews
>From the web interface. -Original Message- From: James Smith [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2008 10:48 AM To: CF-Talk Subject: Re: Still can't make new posts to the CF-talk list And you posted this... how? On Fri, Mar 14, 2008 at 4:41 PM, Andy Matthews

OT: Free HTTP traffic monitor? Anyone know of one?

2008-03-14 Thread Andy Matthews
As I'm getting into building AIR apps, it would be great if I had an HTTP traffic monitor which also showed the headers, requests, and responses from HTTP request that my apps make. Does anyone know of one they'd recommend? Free would be best, but I'd entertain a priced one if it was good quali

Still can't make new posts to the CF-talk list

2008-03-14 Thread Andy Matthews
Is anyone else still having problems making new posts to the CF-Talk list from external programs? I've not been able to make new posts to the CF-Talk list for about a month now. I can reply to existing posts with no problem...it's only new posts. ~~~

RE: SPAM: Re: cheap CF8 hostings

2008-03-14 Thread Andy Matthews
ext 105 www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2008 9:17 AM To: CF-Talk Subject: RE: SPAM: Re: cheap CF8 hostings Mark... I've been with Gearhost for almost 5 years and can

RE: SPAM: Re: cheap CF8 hostings

2008-03-14 Thread Andy Matthews
allow you to have multiple domains under one account which was one of the primary reasons I first looked at them. I've been with them ever since. andy -Original Message- From: Mark Kruger [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2008 8:49 AM To: CF-Talk Subject: RE: SPAM:

RE: SPAM: Re: cheap CF8 hostings

2008-03-14 Thread Andy Matthews
I use Gearhost.com. They offer CF hosting for as little as $9.99 a month. They also host ASP, and PHP on the same servers as well as SQL Server and MySQL. andy matthews -Original Message- From: Ali [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2008 8:13 AM To: CF-Talk Subject: SPAM

RE: SPAM: Re: Coldfusion & JSONp

2008-03-13 Thread Andy Matthews
, errorThrown) { alert(errorThrown); } ) (or something similar) Neil On Thu, Mar 13, 2008 at 3:44 PM, Andy Matthews <[EMAIL PROTECTED]> wrote: > Does anyone know anything about JSONp? I'm trying to call a CFC > directly with returnFormat set to JSON. I can get the result in th

Coldfusion & JSONp

2008-03-13 Thread Andy Matthews
sposted to the jQuery list as well...there are already a few replies over there: http://groups.google.com/group/jquery-en/browse_thread/thread/21a68cea4bb11e84/0d44e36723274ad1#0d44e36723274ad1 andy matthews ~| A

RE: SPAM: Re: SOT: Aptana plugin within Flex Builder 3

2008-03-11 Thread Andy Matthews
Got it Nathan...thanks. -Original Message- From: Nathan Strutz [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2008 10:51 AM To: CF-Talk Subject: SPAM: Re: SOT: Aptana plugin within Flex Builder 3 Andy, There is a download link, but you've got to dig for it. You can clic

SOT: Aptana plugin within Flex Builder 3

2008-03-11 Thread Andy Matthews
I'm considering installing the Aptana plugin within Flex Buidler 3 so as to keep all AIR type functionality together. Has anyone done this and if so, what Aptana version did you use? I can't find any mention of the plugin on the Aptana website. All they talk about is their own IDE. ~~~

RE: Newbie RSS creation question

2008-03-10 Thread Andy Matthews
I don't know if it works or not, but I highly doubt you'd want to generate the XML on every request. That's sort of the point of RSS readers. They watch a file to see when it changes, and then pull in the update. -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Mond

RE: Get a digit out of large number

2008-03-10 Thread Andy Matthews
Mid(getdon.recordcount,2,1) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2008 8:21 AM To: CF-Talk Subject: Get a digit out of large number Hi All, I'm trying to figure out how to grab a specific digit in a number. For example if I have 34

Re: Macromedia 'Certified Professional' Pin

2008-03-04 Thread Andy Allan
I'm an ACI and as yet I haven't heard anything about the CF8 stuff... to be honest, we'll probably find out the day after they are released :) On 04/03/2008, Adrian Lynch <[EMAIL PROTECTED]> wrote: > They told me the same thing! :Oo > > Just kidding :OD > > Anyone know when the CF8 one is availa

Re: SPAM: Macromedia 'Certified Professional' Pin

2008-03-04 Thread Andy Allan
I think I got a pin for the CF6 exam but I definately didn't get one for CF7. Would I wear it to the office? Hell no. Would I ever wear it? Hell no :) On 04/03/2008, Andy Matthews <[EMAIL PROTECTED]> wrote: > I didn't get a pin...I just got a certificate. > > Maybe you

RE: SPAM: Macromedia 'Certified Professional' Pin

2008-03-04 Thread Andy Matthews
I didn't get a pin...I just got a certificate. Maybe you scored higher than I did? :) -Original Message- From: Don [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2008 9:30 AM To: CF-Talk Subject: SPAM: Macromedia 'Certified Professional' Pin You know the one you get when you get C

RE: Feature Creep - Wants More Search Stuff ...

2008-03-04 Thread Andy Matthews
Do they really want the entire sentence containing the term, or would they be satisfied with just highlighting the search term itself? If they'd be okay with that, the method takes care of that for you. -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 0

RE: Feature Creep - Wants More Search Stuff ...

2008-03-04 Thread Andy Matthews
Les... There's a "highlight string" method on cflib. I've used it before. -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2008 8:27 AM To: CF-Talk Subject: Feature Creep - Wants More Search Stuff ... It's OK, when they add stuff outside the origin

<    2   3   4   5   6   7   8   9   10   11   >