RE: Dynamic Javascript Question

2005-05-11 Thread Micha Schopman
Try/catch is part of the ECMA-Script 262 standard, which the Mozilla engine fully supports. They even need to, since the presentation layer of for ex. FireFox is made of 50% Javascript code. Micha Schopman Project Manager Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377, Fax 03

RE: Availability of try..catch [was Re: Dynamic Javascript Question]

2005-05-11 Thread Micha Schopman
NS 4 didn't offer try / catch, that is correct. Nowadays you will experience that the support in Mozilla browsers is far beyond what IE delivers. Mozilla even supports get/set and in a future release also classes and access modifiers as defined in the new standards as opposed to current prototyping

RE: [OT - JS] onsubmit state

2005-05-11 Thread Ewok
Ahh I misunderstood. I was thinking after it was submitted and in the form scope of CF. (although it was very plain that it's not what you said... don’t ask) write a function to use in the onclick of each button maybe? function whatwasclicked(btn) { alert(btn); //some if statements for diff

RE: Using arrow buttons to sort data

2005-05-11 Thread Ewok
Quick and dirty... Give the db table a numeric 'sortid' to sort the query by then use this Update tbl_records Set sortid = sortid + 1 Where recorded = #val(url.recordid)# Update tbl_records Set sortid = sortid - 1

Re: [OT - JS] onsubmit state

2005-05-11 Thread Ryan Sabir
In the onClick handler for the button, you can refer to the 'this' object, or pass it to a function. 'this' will always refer to the button that was clicked. Can't do the same with onSubmit though. Maybe you could set a javascript variable using the 'this' object on the onClick, and pick up that v

RE: MXNA Screensaver

2005-05-11 Thread Connie DeCinko
It think that's the desktop version. It displays a little pop-up list of the top stories. -Original Message- From: Rick Mason [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 4:59 PM To: CF-Talk Subject: Re: MXNA Screensaver Connie, By any chance is the application called Tatt

Re: Books on OOP & CFML (6.1 or 7)

2005-05-11 Thread Sean Corfield
On 5/11/05, Damien McKenna <[EMAIL PROTECTED]> wrote: > Given that CFCs changed so much from 6.0 to 6.1 (and some more to 7), > what books would y'all recommend for learning OOP+CFML best practices? There really aren't any good books on that topic yet. > How about when Fusebox 4 is thrown into th

Re: CF 4.5 & SOAP

2005-05-11 Thread Adam Haskell
Thank you... forgot body type was added in MX :) Adam H On 5/11/05, Jochem van Dieten <[EMAIL PROTECTED]> wrote: > Adam Haskell wrote: > >> Nothing about HTTP headers. You won't be able to post this using > >> cfhttp, but it looks doable to construct the XML in CF and then > >> post it using som

Re: MXNA Screensaver

2005-05-11 Thread Rick Mason
Connie, By any chance is the application called Tattletale? FWIW, I heard on another list that it would be updated. Rick Mason On 5/11/05, Connie DeCinko <[EMAIL PROTECTED]> wrote: > > The MXNA Screensaver no longer works with the change of the news > aggregator > to MMs server. Anyone kno

Re: CF 4.5 & SOAP

2005-05-11 Thread David Lakein
A few months ago I had to (temporarily) backport a webservice-using app to CF5 from MX. Even in MX it couldn't use cfinvoke, as the webservice didn't have a WSDL, but was able to use CFHTTP in CFMX (coworker found exact xml syntax and http headers necessary). The XML packet gets sent in the

Using arrow buttons to sort data

2005-05-11 Thread Don R Seibert
I'm sure it has been done a million times. I would like to sort data presented in a table (alphanumeric) by pushing small arrow buttons ascending or descending order. Can some point to a place or provide a snippet of code to accomplish this? Thank you, Don ~~~

Re: CF 4.5 & SOAP

2005-05-11 Thread David Lakein
On 5/11/05, Jochem van Dieten <[EMAIL PROTECTED]> wrote: > > Adam Haskell wrote: > >> Nothing about HTTP headers. You won't be able to post this using > >> cfhttp, but it looks doable to construct the XML in CF and then > >> post it using something else. > > > > Why couldn;t he post using cfhttp,

RE: CF 4.5 & SOAP

2005-05-11 Thread Ali Awan
I think this is what you are looking for. CFSOXML from the Macromedia CF Developer Exchange. Beware of the wrapping URL. http://www.macromedia.com/cfusion/exchange/index.cfm?view=sn131&extID=100361 8#loc=en_us&view=sn131&extID=1003618&viewName=ColdFusion%20Extension&avm=1 In a previous

RE: link validation ?

2005-05-11 Thread dave
this ended up working :) http://www.mapquest.com/maps/map.adp?searchtype=#HTMLEditFormat("address&country=US&addtohistory=&searchtab=home&address=7513+Grandview+Ave&city=&state=co&zipcode=80002")#" target="_blank">map it Nice catch, I wouldn't have even thought of that, thanks :) ~Dave the dis

RE: [OT - JS] onsubmit state

2005-05-11 Thread Dave Merrill
The point is that regardless of what btn was clicked, its value hasn't "taken effect" yet during onclick or onsubmit. How does giving them different names help? Dave Merrill > Without knowing what exactly you're using it for, I'd say give the submit > buttons different names rather than values

Creating CF Archive in CF5

2005-05-11 Thread David Manriquez
hi ppl.. in one of my server i just tried to create a CAR but something wrong is happening. The Coldfusion Management service has either not finished or not is running. Verify the service ins running by opening the Services Tool in Control Panel, if the service is running please all

RE: Tuning CFDOCUMENT PDF output quality?

2005-05-11 Thread Mark A Kruger
Yes - we use a linked file and the strict XHTML: mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 3:45 PM To: CF-Talk Subject: Re: Tuning CFDOCUMENT PDF output quality? Thanks Mark, Yes, a separate stylesheet is where I am headed now. To achieve your desired results, did you find that yo

Re: CF 4.5 & SOAP

2005-05-11 Thread Jochem van Dieten
Jochem van Dieten wrote: > Doug Ford wrote: >> >> I was wondering if anybody has any experience with CF 4.5 (yes, I know it's >> old) and SOAP. > > Yes. Unfortunately, I might add, because I learned so many things > I so don't want to know. COrrection: it was CF 4.0 ... Jochem ~~

RE: Re-ordering items in a list

2005-05-11 Thread Dave Merrill
Do the items consist only of displayed text, no hidden IDs or other attributes? Is the text editable? If yes to both, another alternative is to put them all on separate lines of a textarea. Users already know how to edit this with cut/paste/drag/drop, there aren't any btns to enable/disable, clean

RE: Re-ordering items in a list

2005-05-11 Thread Paul
I've used this script, combining the first example shown and the third example shown: http://www.mattkruse.com/javascript/selectbox/ -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 9:28 AM To: CF-Talk Subject: Re-ordering items in a list I hav

RE: [OT - JS] onsubmit state

2005-05-11 Thread Ewok
Without knowing what exactly you're using it for, I'd say give the submit buttons different names rather than values -Original Message- From: Dave Merrill [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 4:58 PM To: CF-Talk Subject: [OT - JS] onsubmit state Say you've got a form w

RE: [OT - JS] onsubmit state

2005-05-11 Thread Dave Merrill
Typo in the PECULIAR ASIDE. It would normally be: form.form_action[0].value not: form.form_action.value[0] Doh! Don't want to distract my own thread here, but what's still peculiar is that form.form_action.value = "whatever" (without the [0]) has the desired effect, e

Re-ordering items in a list

2005-05-11 Thread Rick Root
I have a need for users to re-order 10-20 items in a list, easily. Normally I would do this in one of three ways: 1. List the items in order on a normal html page, and add "move up"/"move down" links 2. List all the items in the left column of a two column format, and make the items clickabl

Re: CF 4.5 & SOAP

2005-05-11 Thread Jochem van Dieten
Adam Haskell wrote: >> Nothing about HTTP headers. You won't be able to post this using >> cfhttp, but it looks doable to construct the XML in CF and then >> post it using something else. > > Why couldn;t he post using cfhttp, i must be missing something? How are you going to get this XML int

Re: CF Blog shootout

2005-05-11 Thread Raymond Camden
There was also a CF ID3 project on one of the DRKs. Not sure what Java class it used internally. On 5/11/05, Steven Erat <[EMAIL PROTECTED]> wrote: > On 5/11/05, Roger B. <[EMAIL PROTECTED]> wrote: > > Steven: How dark do you want to go? :D 'Cause JournURL makes for a > > pretty spiffy podcasting

[OT - JS] onsubmit state

2005-05-11 Thread Dave Merrill
Say you've got a form with multiple submit btns, each given the name "form_action", but with different values. When the form is submitted, the clicked submit btn's value shows up as form.form_action, as expected. However, from within an onclick handler for any of those btns, or an onsubmit handler

E-commerce recommendation please

2005-05-11 Thread Steven Johnson
Can anyone recommend a coldfusion based ecommerce product that can do product kitting/configurators. Specifically I am looking to be able to allow customers to customize a base product with features/add-ons that are available. These configurators must be able to have dependencies so that if on

RE: LDAP Authentication - Resolved

2005-05-11 Thread David Critchley
We resolved this issue by actually putting the right content in the username field. I was connecting to the LDAP server properly, just wasnt able to send the username and password. username="uid=#usern#,ou=active,ou=employees,ou=people,o=#server#" password="#plaintextpassword#" Thanks for all t

Re: I truly hate Ben Forta

2005-05-11 Thread dave
too bad you can't read! But you REALLY like the pictures ;) ~Dave the disruptor~ From: Will Tomlinson <[EMAIL PROTECTED]> Sent: Wednesday, May 11, 2005 4:21 PM To: CF-Talk Subject: Re: I truly hate Ben Forta I must admit, I have a special rack for my W

Re: Tuning CFDOCUMENT PDF output quality?

2005-05-11 Thread Pete Ruckelshaus
Thanks Mark, Yes, a separate stylesheet is where I am headed now. To achieve your desired results, did you find that you could simply use properly compliant XHTML & a linked CSS file, or did you need to use more inline styles and old-style HTML formatting? The first and most annoying problem is

Foxpro Queries

2005-05-11 Thread SStewart
I'm trying to write insert queries to a Foxpro Free table, every field is set to not accept null values. Apparently there's a Foxpro call that'll write in FP acceptable values. Anyone know what that call is or how to get around the nulls Note: I didn't create the table, and I don't have access

Re: LDAP Authentication

2005-05-11 Thread Douglas Knudsen
oh, and do yourself a big favour and head out to http://www.ldapadministrator.com/ and get the free LDAP browser. It will help you greatly DK On 5/11/05, Rebecca Wells <[EMAIL PROTECTED]> wrote: > > > It's not my server, we only have access to it. I believe it is not a > > windows server, mo

Re: CF Blog shootout

2005-05-11 Thread Steven Erat
On 5/11/05, Roger B. <[EMAIL PROTECTED]> wrote: > Steven: How dark do you want to go? :D 'Cause JournURL makes for a > pretty spiffy podcasting platform... when you attach an MP3, the > system automatically extracts your ID3 data and saves it along with > the post. You can then output that data in

RE: Tuning CFDOCUMENT PDF output quality?

2005-05-11 Thread Mark A Kruger
We've been able to get very exact results - but we use a separate print handler and CSS styles. If you think about it it makes some sense. CSS uses browser defaults for many things - and even adjusts it's own values accordingly. For example, if you choose 100% for a size it's 100% of the "browsers"

Re: I truly hate Ben Forta

2005-05-11 Thread Will Tomlinson
I must admit, I have a special rack for my WACK right beside the commode. It's even marked "CFWACK". If anyone touches, removes, or defaces it, they shall suffer a horrendous fate! I have a sign posting that as well. :) Will

RE: LDAP Authentication

2005-05-11 Thread Rebecca Wells
> It's not my server, we only have access to it. I believe it is not a > windows server, more than likely it is running on a UNIX server. > Could be Netscape. I work for a large organization, so we have access > to it, but have no control over it. Neither are we privy to any specs. Then u

RE: CF 4.5 & SOAP

2005-05-11 Thread Mark A Kruger
You crack me up jochem - nice mantra. -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 1:45 PM To: CF-Talk Subject: Re: CF 4.5 & SOAP Doug Ford wrote: > > I was wondering if anybody has any experience with CF 4.5 (yes, I know it's old) an

Re: I truly hate Ben Forta

2005-05-11 Thread Rey Bango
I can tell. I've seen your code!! Doh!!! j/k Connie. Rey... - Original Message - From: "Connie DeCinko" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wednesday, May 11, 2005 2:12 PM Subject: RE: I truly hate Ben Forta > Mine is put to good use... Holding up my printer. >

Re: I truly hate Ben Forta

2005-05-11 Thread Rey Bango
haha. Same here. I have an HP iPaq that I take with me everywhere so I can relate. ;o) I just try to forget it every so often so that it reminds me of the days before the Internet & cell phones. Rey... - Original Message - From: "Tony Weeg" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: We

Re: CF 4.5 & SOAP

2005-05-11 Thread Adam Haskell
> > Nothing about HTTP headers. You won't be able to post this using > cfhttp, but it looks doable to construct the XML in CF and then > post it using something else. > > Jochem Why couldn;t he post using cfhttp, i must be missing something? Adam H On 5/11/05, Jochem van Dieten <[EMAIL PR

re: CFForm and jpegs

2005-05-11 Thread dave
you put them in the "accepts" attribute of your cffile tag that you will use to upload the images. Have you done any image uploading yet? ~Dave the disruptor~ From: Jason Rogoz <[EMAIL PROTECTED]> Sent: Wednesday, May 11, 2005 12:25 PM To: CF-Talk Sub

RE: LDAP Authentication

2005-05-11 Thread David Critchley
If you look at my original post I give an example of my query, some info has been changed as I cant actually display live info. But the query works, I can query any uid and get info back through CFLDAP. >One of the biggest issues is how the username (the unique identifier, in >other words) is s

Re: I truly hate Ben Forta

2005-05-11 Thread Rick Faircloth
That's when I print out whatever material I think I can get through for the time I have... Also, I'm going to a dual monitor setup shortly, and I'll put online reference material on one monitor while I code on the other...that should work well, I would think... Rick -

RE: LDAP Authentication

2005-05-11 Thread Dawson, Michael
One of the biggest issues is how the username (the unique identifier, in other words) is stored in the directory. Once you have that syntax, you are pretty much set. M!ke -Original Message- From: David Critchley [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 1:37 PM To: CF-Talk

Tuning CFDOCUMENT PDF output quality?

2005-05-11 Thread Pete Ruckelshaus
I'm using cfdocument to generate a PDF for the first time, and to be honest, I'm pretty disappointed with the quality of the results. I have a page that looks EXACTLY as it should in IE & FireFox, yet using the same code along with cfdocument to generate a PDF, the generated results are similar bu

Re: CF 4.5 & SOAP

2005-05-11 Thread Jochem van Dieten
Doug Ford wrote: > Here's a page from the manual that I have been sent. This is what the server > wants. Over SSL? > CF 4.5 doesn't do UTF-8. Fortunately the first 128 characters are identical to those in US-ASCII. > http://schemas.xmlsoap.org/soap/envelope/"; > xmlns:xsi="http://www.w3.

Re: CF 4.5 & SOAP

2005-05-11 Thread Jochem van Dieten
Doug Ford wrote: > > I was wondering if anybody has any experience with CF 4.5 (yes, I know it's > old) and SOAP. Yes. Unfortunately, I might add, because I learned so many things I so don't want to know. > The company who I process online ACH payments with has recently switched to > using a

RE: CF 4.5 & SOAP

2005-05-11 Thread Doug Ford
Here's a page from the manual that I have been sent. This is what the server wants. This is the sample they gave me. What I would be doing have a few more fields in it, but not a lot more. To post messages and p

RE: XMLish question

2005-05-11 Thread S . Isaac Dealey
My experience with XSLT has been the oposite -- that it's much easier to work with attributes than to work with text nodes... The only exception is that I haven't found a way to conditionally remove an attribute -- that is, I can conditionally create an attribute, and I can copy all attributes with

RE: CF 4.5 & SOAP

2005-05-11 Thread Doug Ford
Keith thanks for the info. I will look into that. Ben - Thanks for the idea of suggesting, but unfortunately the company I am with doesn't want to invest the money into a new product at this time. Plus, I would have to make sure that a home-grown store/enrollment program works with the new

RE: LDAP Authentication

2005-05-11 Thread David Critchley
It's not my server, we only have access to it. I believe it is not a windows server, more than likely it is running on a UNIX server. Could be Netscape. I work for a large organization, so we have access to it, but have no control over it. Neither are we privy to any specs. :-S >Yes, we ne

CFForm, Section 508, JAWS and Window-Eyes problem

2005-05-11 Thread Don Neizer
Macromedia's reply “Try your apps with JAWS 4.5. You can download the installer at: http://www.freedomscientific.com/fs_downloads/DL_JAWS45.asp Since we launched CFMX7, issues with JAWS 5 and 6 have been fixed in JAWS 6.1. We have not tested the Flash Forms in this release yet, but the results s

Re: CF 4.5 & SOAP

2005-05-11 Thread Adam Haskell
Depends on how complex the return is really the http call is easy enough to format whats the return look like? Adam H On 5/11/05, Ben Forta <[EMAIL PROTECTED]> wrote: > You could also use to make the calls, but parsing the results will > not be fun as you don't even have the tag. > > In all ho

RE: CF 4.5 & SOAP

2005-05-11 Thread Mark A Kruger
Ben, On a 4.5 server you can't use cfhttp to make a request. Because you (usually) need access to the content type header (and often you need to add a specific header). It's also not feasible to get valid XML data into the content area of the request ( doesn't do the job). Plus you will have to fi

RE: I truly hate Ben Forta

2005-05-11 Thread Ewok
L-O-L! -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 2:01 PM To: CF-Talk Subject: Re: I truly hate Ben Forta i used to cfwhack mine, but now its wireless so i just do it off the hook :) tw ~~

RE: XMLish question

2005-05-11 Thread Ewok
You're right. It was kind of lazy. But I've been working with flash a lot lately and found it easier to use attributes.ID at first than the traditional firstchildnode[0].childnodes[0].childnodes[0] etc... Once I figured all that out I was able to do away with most of my 'attribute' entries thou

RE: CF 4.5 & SOAP

2005-05-11 Thread Ben Forta
You could also use to make the calls, but parsing the results will not be fun as you don't even have the tag. In all honesty, it would take less time to upgrade than to jump through the hoops you'll need to make this work. --- Ben -Original Message- From: Keith Gaughan [mailto:[EMAIL

RE: I truly hate Ben Forta

2005-05-11 Thread Connie DeCinko
Mine is put to good use... Holding up my printer. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 6:49 AM To: CF-Talk Subject: RE: I truly hate Ben Forta Well I still have my 4.0 CFWACK if anyone wants it ;-) ~~

Re: CF 4.5 & SOAP

2005-05-11 Thread Keith Gaughan
Doug Ford wrote: > Hi Folks - > > I am relatively new to this forum... Long time stalker, first-time poster! > > I was wondering if anybody has any experience with CF 4.5 (yes, I know it's > old) and SOAP. > > The company who I process online ACH payments with has recently switched to > using

Re: CF Blog shootout

2005-05-11 Thread Roger B.
> If so well, podcast adminstration and a built-in photoblog I'm > being tempted to dark side :-) Steven: How dark do you want to go? :D 'Cause JournURL makes for a pretty spiffy podcasting platform... when you attach an MP3, the system automatically extracts your ID3 data and saves it alo

RE: CFMX 7 still won;t stay running.

2005-05-11 Thread Connie DeCinko
Glad to hear it worked out for you. You must have been on the grey line there since I run many things on my local box including DB servers, CFMX7, etc. all with 512MB and no crashes. But then I may not punish it as much as a true dev box. -Original Message- From: Scott Stroz [mailto:[E

Re: I truly hate Ben Forta

2005-05-11 Thread Tony Weeg
no shit. really? wow. i was wondering :) i unplug ALL THE TIME, trust me... but i can get ONLINE within seconds, so im not too worried about not having access... its there, just kinetically. tw On 5/11/05, Rey Bango <[EMAIL PROTECTED]> wrote: > Simple dude. You turn off the PC and your PDA. ;o)

RE: Size of directory - WSH

2005-05-11 Thread Dawson, Michael
Cheers, you need to make sure you are running ColdFusion as an account that has permissions to perform these operations on the computer/server. M!ke -Original Message- From: Web Specialist [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 11:55 AM To: CF-Talk Subject: Size of dire

Re: I truly hate Ben Forta

2005-05-11 Thread Tony Weeg
i used to cfwhack mine, but now its wireless so i just do it off the hook :) tw ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or wi

RE: XMLish question

2005-05-11 Thread Dawson, Michael
There are those who believe you should not use attributes in XML. That just about everything can be described using element tags. I am, sort of, one of those people. I would prefer to work with elements rather than attributes, even if it meant a few more levels of nesting. That's just the way I

Advanced CFMX7 book

2005-05-11 Thread Adam Churvis
We're so happy! David and I just got our author's copies of "Advanced Macromedia ColdFusion MX 7 Application Development," and our names are on the cover! David wrote the two chapters on XML (one of his favorite topics), and I wrote the chapters on advanced custom tags and cfscript, and we really

Re: Availability of try..catch [was Re: Dynamic Javascript Question]

2005-05-11 Thread S . Isaac Dealey
> S.Isaac Dealey wrote: >> last I knew javascript try-catch wasn't cross-browser... >> I think IE >> allows it but Mozilla browsers tell you that you can't >> use the keyword >> "try" when you attempt it. Or at least that was my >> experience >> previously. > Nope, it's definitely cross-browser.

Slighlty OT - SQL server SP4

2005-05-11 Thread Tim Laureska
Trying to install SQL server 2000 SP4 -- I have SP2 installed for SQL 2000 developer edition but keep getting this when trying to upgrade to SP4: "Product is not installed. Check if appropriate instance is installed" Any help would be appreciated... been studying the Microsoft docs on this and ha

CF 4.5 & SOAP

2005-05-11 Thread Doug Ford
Hi Folks - I am relatively new to this forum... Long time stalker, first-time poster! I was wondering if anybody has any experience with CF 4.5 (yes, I know it's old) and SOAP. The company who I process online ACH payments with has recently switched to using a SOAP webservice and I need to fig

RE: LDAP Authentication

2005-05-11 Thread Dawson, Michael
Yes, we need to know which ldap server. If it's Windows Active Directory, you don't need to run two queries. You only need to pass the username/password to the cfldap tag. Windows, by default, allows any authenticated user to query the directory. If the query works, you have a valid user. If t

Availability of try..catch [was Re: Dynamic Javascript Question]

2005-05-11 Thread Keith Gaughan
S.Isaac Dealey wrote: > last I knew javascript try-catch wasn't cross-browser... I think IE > allows it but Mozilla browsers tell you that you can't use the keyword > "try" when you attempt it. Or at least that was my experience > previously. Nope, it's definitely cross-browser. Drop this into th

RE: I truly hate Ben Forta

2005-05-11 Thread Rick Faircloth
And don't forget the blogs, which are becomming more and more a source for tutorials on single functions or application of functions within CF... All this will push Ben, et al, more into electronic publishing. The days of "paper publishing" are limited... Rick ---

Re: OT - Site for Sale

2005-05-11 Thread Matt Robertson
Why, unless you're catering to that market (and I guess this proves there's a market for everything) would you let something like that onto your friggin' front page? I guess with that question this thread goes totally off the edge of the world, OT-wise. -- --mattRobertson-- Janitor, MSB Web Syst

Live onTap Framework Presentation

2005-05-11 Thread S . Isaac Dealey
Hi all, I just wanted to drop a brief reminder that I'll be giving a Breeze Live / Macrochat presentation covering the onTap framework wednesday next week. Please note that registration is required to attend the Macrochat presentations. Here are the official details from macromedia: Introductio

RE: XMLish question

2005-05-11 Thread Ian Skinner
There are pros and cons for both and im sure one's will outweigh the other in different scenarios but with the latter you have more control over the display of the item than you would if you specifically set 'placeholders' for each individual node. Thanks, and this is exactly what I'm looking

RE: Need some help with XML in CFC

2005-05-11 Thread Ian Skinner
I tried the the cfsavecontent but when I did a cfdump it treated it as a string instead of XML. Is there any way to change that? I ask because I'm not sure if Flash will recognize it either. Cfsavecontent is a string, but a string that can be convereted to xml. If you want a cf xml object in m

Re: Need some help with XML in CFC

2005-05-11 Thread Phill B
Thanks Tony. I had forgotten there was XML support in MSSQL. I found this article that explained it pretty good to me. http://www.databasejournal.com/features/mssql/article.php/2196461 I'll give this a try as well. On 5/11/05, Tony Weeg <[EMAIL PROTECTED]> wrote: > couldnt he also append > > FOR

Re: Need some help with XML in CFC

2005-05-11 Thread S . Isaac Dealey
It depends how flash intends to receive it... though afaik there isn't any way to pass XML over http without converting it to a string first. I could be wrong, but that's been my impression... However, if you need to pass a ColdFusion XML object, just use and then omit the toString() around the re

Re: Need some help with XML in CFC

2005-05-11 Thread S . Isaac Dealey
> couldnt he also append > FOR XML AUTO > to his query, which would put the load on the sql server. Yeah, if you're using SQL Server and you don't need a specific schema... I didn't recall him mentioning what database he was using -- and I generally don't use automated xml from sql server becaus

Size of directory - WSH

2005-05-11 Thread Web Specialist
Hi all this script deletes a folder inside a hosting directory: Works fine that. But in my WindowsXP and Windows2000 Server don't. What I need to works? Cheers ~

RE: CFMX 7 still won;t stay running.

2005-05-11 Thread Kevin Aebig
Don't mention it... this was definately a good thread for the archives and I'm sure your pain and suffering will help someone out down the road. =] Kevin -Original Message- From: Scott Stroz [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 6:05 AM To: CF-Talk Subject: Re: CFMX 7 st

Re: I truly hate Ben Forta

2005-05-11 Thread Rey Bango
Well, I keep buying the CFWACK and CFADV because with every new revision, I seem to find something new and useful. Even if 1 chapter helps me out, its worth the investment. Thanks for the great books Ben. Rey... - Original Message - From: "Ben Forta" <[EMAIL PROTECTED]> To: "CF-Talk"

Re: I truly hate Ben Forta

2005-05-11 Thread Rey Bango
hahahahahaha. Rey... - Original Message - From: "Ben Forta" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wednesday, May 11, 2005 11:22 AM Subject: RE: I truly hate Ben Forta > And for that, my kids' college funds thank you. ;-) > > --- Ben > > PS I wish! > > > > -Original Message-

Re: Need some help with XML in CFC

2005-05-11 Thread Phill B
A designer needs it for a flash photo gallery. He wants to grab the results as XML from the CFC. I'm not sure if he knows what he is doing but this is what he wants. *shrug* I tried the the cfsavecontent but when I did a cfdump it treated it as a string instead of XML. Is there any way to change t

Re: I truly hate Ben Forta

2005-05-11 Thread Rey Bango
Simple dude. You turn off the PC and your PDA. ;o) Seriously, I disconnect as much as possible. After 17 years, I'm trying get a better balance in my life and while having online references is great, I kind of like reading a true-blue book every so often. Call me old school. :o) Rey... -

RE: XMLish question

2005-05-11 Thread Ewok
Personally, if it couldn’t be broken up into specific sections like simply Title, Date, Author, Summary, Body, Image(s), etc.. or if you just didn’t want to do it that way... I'd use one 'Body' node for that section like... Then all you would need to do is dump t

Re: [OT] SQL Audit with CF - or maybe triggers?

2005-05-11 Thread Michel Deloux
Yes. Our application is done and tomorrow my boss send an email about Audit Control... ;-( Thanx 2005/5/11, Jochem van Dieten <[EMAIL PROTECTED]>: > Michel Deloux wrote: > > > > We're using SQL Server 2000. Internally? > > Doubt so, I only know of plugins for MVCC databases. > > > > But how to

re: CFForm and jpegs

2005-05-11 Thread Jason Rogoz
Is there a coldfusion function that would return the mime type? or would it just return the extension of the file...can coldfusion determine if the file is a image/jpeg vs a image/pjpeg? > well your MIME types for jpegs are: image/jpeg,image/pjpeg,image/jpg > > So I am assuming image/pjpeg

Re: I truly hate Ben Forta

2005-05-11 Thread Rebecca Wells
>3.1 was blue (2nd edition).my first CF Bible ;-) Mine too. Heck, I bought 2 copies, one for the office, one for home for when I can't sleep trying to figure out how to make some code work in my head. (Since I was just learning CF back then, I spent more nights like that then I do now!) I'v

Re: I truly hate Ben Forta

2005-05-11 Thread Rey Bango
Yep and I'll get that one as well. The CFWACK provides the fundamentals of the new features and always serves as a great resource. Rey... - Original Message - From: "Kerry" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wednesday, May 11, 2005 9:45 AM Subject: RE: I truly hate Ben Forta > W

RE: I truly hate Ben Forta

2005-05-11 Thread Jim Davis
> -Original Message- > From: Tony Weeg [mailto:[EMAIL PROTECTED] > Sent: Wednesday, May 11, 2005 12:07 PM > To: CF-Talk > Subject: Re: I truly hate Ben Forta > > who needs ethernet? > > my wireless work in my wc Yours is wireless!? Mine's still firmly attached... despite my wife's best

RE: XMLish question

2005-05-11 Thread Ian Skinner
Yes, it was a very generic question. This is just the very beginning of a seed of an idea that I'm playing with. I'm starting with a very simple layout such as currently used on our site [www.BloodSource.org]. If I where to try and describe these pages in a XML/XHTML manner. I can see how I

Re: I truly hate Ben Forta

2005-05-11 Thread Tony Weeg
who needs ethernet? my wireless work in my wc :) On 5/11/05, Jeff Garza <[EMAIL PROTECTED]> wrote: > Now that's dedicated! > > - Original Message - > From: "Robertson-Ravo, Neil (RX)" <[EMAIL PROTECTED]> > To: "CF-Talk" > Sent: Wednesday, May 11, 2005 7:18 AM > Subject: RE: I truly hat

RE: Cached query - Any way to tell when it was cached?

2005-05-11 Thread Scott Mulholland
Options are always appreciated! Thanks again. -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 10:03 AM To: CF-Talk Subject: RE: Cached query - Any way to tell when it was cached? I don't blame you. :) I'm just a big fan of options, so I f

RE: XMLish question

2005-05-11 Thread Ian Skinner
Ewok Thanks, that's pretty similar to what I was starting with, but different enough to give me some nice ideas. So for the content nodes, would you just use established HTML markup for paragraphs, lists, quotes, things like that? -- Ian Skinner Web Programmer BloodSource www.Bloo

Re: I truly hate Ben Forta

2005-05-11 Thread Jeff Garza
Now that's dedicated! - Original Message - From: "Robertson-Ravo, Neil (RX)" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wednesday, May 11, 2005 7:18 AM Subject: RE: I truly hate Ben Forta >I have an ethernet port in the WC;-) > > You just never know when you need to use it... > > >

Re: I truly hate Ben Forta

2005-05-11 Thread Jeff Garza
Don't know about you, but I would never lug my WACK with me on an airplane... they'd probably charge extra for the added weight! -- Jeff - Original Message - From: "Clint Tredway" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wednesday, May 11, 2005 7:39 AM Subject: Re: I truly hate Ben For

Flash Forms-display links

2005-05-11 Thread Jason Rogoz
is there any way to format text links to look like html links inside of a flash form? Is there any way to do this using cfformitem with type="html". Right now all i get is black text ~| Logware (www.logware.us): a new and conve

Re: XMLish question

2005-05-11 Thread Massimo Foti
> Practically I'm looking for details of the content, such as paragraphs, > lists, images and other elements that might comprise these sections. Since XHTML's semantic isn't that rich, I guess all you can do is to leverage the "id" and maybe the "class" attributes of the structural tags. Then use

RE: XMLish question

2005-05-11 Thread Ewok
Of course its going to vary depending on the page and who's writing it. And even then, the original idea is most likely going to be modified even more as you get further into the project. Rather its for easier use or expansion. You'll just have to sit down and itemize your site into sections. Then

  1   2   >