Re: DateCompare or Diff? To determine if the Current Date is the Weekend or a Weekday

2008-05-13 Thread Nate Willard
Talk Sent: Tuesday, May 13, 2008 9:27:16 PM Subject: RE: DateCompare or Diff? To determine if the Current Date is the Weekend or a Weekday Check out DayOfWeek(Now()). IIRC 1=Sun, 7=Sat -Original Message----- From: Nate Willard [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 13, 2008 8:38 PM T

DateCompare or Diff? To determine if the Current Date is the Weekend or a Weekday

2008-05-13 Thread Nate Willard
Any suggestions on how to determine on Request, if the current date/time is a weekday or weekend? Thanks ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.double

Re: CFHTTP resolving URLS?

2008-05-04 Thread Nate Willard
sn't there, then that data point isn't available. You could always use an alternative to cfhttp, such as some Java function or maybe calling a program like wget using cfexecute. Good luck, Mike Chabot On Sat, May 3, 2008 at 11:31 PM, Nate Willard <[EMAIL PROTECTED]> wrote: > Hello

CFHTTP resolving URLS?

2008-05-03 Thread Nate Willard
Hello all, Quick question. If I have a URL such as: "http://feeds.feedburner.com/~r/Techcrunch/~3/283066435/"; Which resolves to: "http://www.techcrunch.com/2008/05/03/yahoo-responds/"; When I call "http://feeds.feedburner.com/~r/Techcrunch/~3/283066435/"; in the first CFHTTP, its automatica

Re: Storing Records Weekly in the database - Ideas on how to record the week

2008-04-22 Thread Nate Willard
2008 at 12:24 PM, Nate Willard <[EMAIL PROTECTED]> wrote: > Greg, > > > I think its more complicated than that, but I might be over thinking this... > > > If I want to records weekly and lets say I ran those records today > > > Todays date is 4/22/2008 > &

Re: Storing Records Weekly in the database - Ideas on how to record the week

2008-04-22 Thread Nate Willard
te and time.. dateformat() formats the date in whatever way you want.. I've always saved formatting for the output.. On Tue, Apr 22, 2008 at 1:58 PM, Nate Willard <[EMAIL PROTECTED]> wrote: > Ian, > > > Great point about the years, I feel silly for not think of that. > > >

Re: Storing Records Weekly in the database - Ideas on how to record the week

2008-04-22 Thread Nate Willard
, weeknbr column, day column (day of week) and then the starttime and endtimes were numbers e.g. 13.5 would be 1:30pm.. then we didnt have to worry about client/server times.. On Tue, Apr 22, 2008 at 1:25 PM, Nate Willard <[EMAIL PROTECTED]> wrote: > Hello, > > > I'm working

Re: Storing Records Weekly in the database - Ideas on how to record the week

2008-04-22 Thread Nate Willard
08 11:32:33 AM Subject: Re: Storing Records Weekly in the database - Ideas on how to record the week Nate Willard wrote: > Hello, > > > I'm working to build a system that stores a set of records every week. Can > anyone offer suggestions on how to best save these records i

Storing Records Weekly in the database - Ideas on how to record the week

2008-04-22 Thread Nate Willard
Hello, I'm working to build a system that stores a set of records every week. Can anyone offer suggestions on how to best save these records in the DB? Should I have a column 'datetime' and have the result be the Sunday of the week, for example this week's records all with the datetime: 4/20/

CreateObject - ALl of a sudden starts timing out - Any ideas why?

2008-04-03 Thread Nate Willard
Any ideas why the following code below would suddenly start timing out on the server? imgObj = CreateObject("java","java.awt.image.BufferedImage"); imgRdr = CreateObject("java","javax.imageio.ImageIO"); f = CreateO

Re: Search Engine Safe/Friendly URLS

2008-03-28 Thread Nate Willard
om Chiverton <[EMAIL PROTECTED]> wrote: On Friday 28 Mar 2008, Nate Willard wrote: > But that would turn Blah is the movie's ending's > into : blah-is-the-movie-s-ending-s > right? It doesn't handle punctuation? It does what it says on the tin :-) If you want to remov

Re: Search Engine Safe/Friendly URLS

2008-03-28 Thread Nate Willard
But that would turn Blah is the movie's ending's into : blah-is-the-movie-s-ending-s right? It doesn't handle punctuation? Tom Chiverton <[EMAIL PROTECTED]> wrote: On Friday 28 Mar 2008, exH wrote: > With a plus on the end > [^a-zA-Z0-9]+ Ahh, yes. May or may not be what the OP wants, but I th

Search Engine Safe/Friendly URLS

2008-03-27 Thread Nate Willard
I'm working to turn the follow below into a friendly URL. "Who watched Jay Leno's Show [Last Night]" I tried using: But that results in "Who-watched-Jay-Leno-s-Show--Last-Night-- Is there a regex that can do this task in a way to handle punctuation? So Commas don't get a - and periods do? C

Re: How to obtain just the domain from a URL

2008-03-25 Thread Nate Willard
listGetAt(url, 2, '/') works very well too, thanks! it does return the www. though, is there a way in the same line to remove the www without needed a "www." replace "" ? Thanks Nicholas M Tunney <[EMAIL PROTECTED]> wrote: Good call. That behavior frustrates me ;) Nic Charlie Griefer wrote

Re: How to obtain just the domain from a URL

2008-03-25 Thread Nate Willard
I hadn't used GetToken before very interesting. What's the breakdown on best practices on GetToken versus Regex? Your code works well. thanks for the example. The third example returns the "www." though, is there a ways to exclude that in the one line of GetToken? Thanks Web Specialist <[EMAIL

How to obtain just the domain from a URL

2008-03-25 Thread Nate Willard
Would I use a REGEX to achive this? Or some other method? Start with something like: http://www.popularmechanics.com/technology/military_law/4255750.html End up with: popularmechanics.com Example 2 Start: http://blogs.abcnews.com/politicalpunch/2008/03/dnc-official-cl.html End: blogs.abcnews.c

RE: Perhaps a little over complicated - Dissecting a String

2008-03-24 Thread Nate Willard
t; #finalparagraph#... trimat specifications display it without any editing ---> #paragraph# -Original Message- From: Nate Willard [mailto:[EMAIL PROTECTED] Sent: Monday, March 24, 2008 7:23 PM To: CF-Talk Subject: Re: Perhaps a little over complicated - Dissecting a String Th

Re: Perhaps a little over complicated - Dissecting a String

2008-03-24 Thread Nate Willard
These are all good steps in the right direction however, I haven't found anything that ties all this logic together. Logic if first sentence is between 200-250 characters show that setence if no sentence, show first 250 characters +... if first sentence is less than 250 sentences, get as many se

Perhaps a little over complicated - Dissecting a String

2008-03-24 Thread Nate Willard
Give a String such as: "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Ut magna lectus, tristique in, convallis sed, eleifend in, nulla. Nullam vulputate velit a urna. Vestibulum ultrices interdum est. Aliquam erat volutpat. Vestibulum ut massa ut diam dignissim vestibulum. Donec orci

Re: Regex Advice

2008-03-03 Thread Nate Willard
I'd never heard of CF_REextract. Thanks for bring this up Claude Schneegans <[EMAIL PROTECTED]> wrote: >>I'm using the following URL and working to obtain all the image absolute paths: May be you should have a look at CF_REextract : http://www.contentbox.com/claude/customtags/REextract/testREe

RE: Regex Advice

2008-03-03 Thread Nate Willard
Thanks Bobby your code appears to be working perfectly. Bobby Hartsfield <[EMAIL PROTECTED]> wrote: rereplace(img, '.*?( :.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com ~| Adobe® ColdFusion® 8 software 8

RE: Regex Advice

2008-03-03 Thread Nate Willard
that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove Web Developer / ColdFusion Programmer http://William.Seiter.com -Original Message- From: Nate Willard [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2008 4:43 PM To: CF-Talk Subject: Regex Advice I'm using the following

Regex Advice

2008-03-03 Thread Nate Willard
I'm using the following RegEx The challenge I'm having is that it is returning: 0 height=45 width=60 src=http://i.l.cnn.net/cnn/video/world/2008/03/03/vo.germany.plane.close.call.liveleak.60x45.jpg instead of: http://i.l.cnn.net/cnn/video/world/2008/03/03/vo.germany.plane.close.ca

Re: Ability to obtain the width & height of an Image given a URL to the image

2008-03-03 Thread Nate Willard
This is fantastic and works. Thanks so much for your help. I've spent hours unsuccessfully on this. Graham Bates <[EMAIL PROTECTED]> wrote: i have used this with success but note that the image has to be available via http imgObj = CreateObject("java", "java.awt.image.Buff

Ability to obtain the width & height of an Image given a URL to the image

2008-03-02 Thread Nate Willard
Hello, I've been unsuccessful in CF7 to be able determine an image's dimensions given a URL to the image. I tried imageCFC and had no luck. I also tried some Java tricks online but had no luck. Can anyone suggest a solution? Thanks ~

Tutorial Recommendation

2008-02-09 Thread Nate Willard
Hello all, I'm in search of a tutorial that shows the following: How to have a module on your page load its content after page load. The reason being there is a module on my page that takes time processing and I'd like to save the user experience by having that processing happen after page load.

Looking for a developer...

2008-02-07 Thread Nate Willard
Hi everyone, A client of mine is looking for a coldfusion developer to re-engineer their site. The design is already underway and being handled by an agency. The project at a high-level entails coding the site from scratch and implementing a CMS. If interested, please email me directly with yo

Re: CF and Scheduled Tasks...

2008-02-05 Thread Nate Willard
What is a BAT file? --- Ian Skinner <[EMAIL PROTECTED]> wrote: > Possible to meet this requirement: YES. Schedule a > task that only runs > on M-W-F: NO. > > The way to work this is to schedule a task that runs > every day. The > first thing the scheduled template does is use date > functions

Re: My latest Coldfusion Project for your Review

2008-01-31 Thread Nate Willard
ok that's awesome. Its nice to see something new and fast. I especially like how its new and fast! :) how'd you come up with the idea? How long did it take to build? Who did the design and algorithms? --- BA Hellman <[EMAIL PROTECTED]> wrote: > Hi Everyone, > > Take a bunch of interesting feeds

RE: Paperthin's Commonspot

2008-01-31 Thread Nate Willard
CommonSpot spot is really expensive... What do you get from CommonSpot that FarCry does not provide for free? Other than the hosted solution option, which is great... N --- Dave Watts <[EMAIL PROTECTED]> wrote: > > FarCry is open source but you will see lots of > companies like > > Figleaf and

RE: CFCOOKIE - how to handle, subdoman and domain authentication

2008-01-30 Thread Nate Willard
Dave, Thanks for the reply. Could you provide an example by what you mean by different name? They use the same login system, I just need it to be specific to the main domain or a unique subdomain. Does that makes sense? Thanks --- Dave Watts <[EMAIL PROTECTED]> wrote: > > I have the following

CFCOOKIE - how to handle, subdoman and domain authentication

2008-01-30 Thread Nate Willard
Hello (last question today - promise) I have the following two domains domain.com & subdm.domain.com Both these domains use the same login system however, I'd like each site to have an individually unique cookie. So if a user logs into a main domain (domain.com) it does not carry over to the s

Re: Email Hosting Recommendation Request - Semi-Emergency

2008-01-30 Thread Nate Willard
> > On Jan 30, 2008 1:29 PM, Nate Willard > <[EMAIL PROTECTED]> wrote: > > > Hi Everyone, > > > > I've been using Y!'s Small Business email hosting > > solution for a month or so now. I recently learn > the > > hard way that one of th

Email Hosting Recommendation Request - Semi-Emergency

2008-01-30 Thread Nate Willard
Hi Everyone, I've been using Y!'s Small Business email hosting solution for a month or so now. I recently learn the hard way that one of the account was not working correctly. After working with Yahoo!'s support team and continuing frustration with their broken web admin panel I have decided I nee

CMS Solution Recommendations

2008-01-29 Thread Nate Willard
Hello, Can anyone recommend a Coldfusion CMS solution? Also, is your recommendation currently supported? I look at FarCry and it seems that the web site and code hasn't been updated in 2 years? Thanks ~| Adobe® ColdFusion® 8

Re: Is there a safe way to offer a "Send to a Friend(email)" feature without the concern of a Spam Bot?

2008-01-28 Thread Nate Willard
Thank you everyone for your suggestions. --- Jochem van Dieten <[EMAIL PROTECTED]> wrote: > Nate Willard wrote: > > Has anyone solved this and made such a tag/module > > available? > > I have always been able to convince clients to use > mailto:?subject=xxx&bo

Is there a safe way to offer a "Send to a Friend(email)" feature without the concern of a Spam Bot?

2008-01-27 Thread Nate Willard
Has anyone solved this and made such a tag/module available? My site's users are demanding such a feature. I've never use the Send to Friend but to my surprise a lot of people do. I'm concerned that adding this feature will welcome spam bots as most send to friend features offer a Message Input b

Re: Has anyone here built a solid RSS Ingest system?

2008-01-27 Thread Nate Willard
Thanks Don --- Don L <[EMAIL PROTECTED]> wrote: > >A system that would ingest stories from 1+ rss > feeds? > > I think so. And in my view, there are at least two > techniques to handle exception gracefully using > CFTHREAD tag. > a) the "timeout" attribute, this is an easier way to > implement

Has anyone here built a solid RSS Ingest system?

2008-01-25 Thread Nate Willard
A system that would ingest stories from 1+ rss feeds? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive: http://

Re: poll - How many MS should it take to load a site's home page?

2008-01-21 Thread Nate Willard
seconds, distract > the user with > something else (ASCII Porn?). > > Neil > > On 20 Jan 2008, at 08:34, Nate Willard wrote: > > > Looking forward to hearing everyone's thoughts. > > > > How many milliseconds should it take for a site's > home

White Space Eliminator

2008-01-21 Thread Nate Willard
hello, I learned of of an issue with my whitespace reduction method that is almost funny. I do the following to remove whitespace PAGE CONTENTS... #pageholder_tboutputed# What ended up happening today is that one of the sources I pull in information from had double spaced between words.

Re: Cookie Question - Is this implementation even a good performance/technical Idea?

2008-01-20 Thread Nate Willard
james, Thanks for the reply. My hesitation with using cf client variables is that I'd need to enable clientmanagement, which I currently don't have enabled. Wouldn't that add a lot of extra overhead for this one feature I'd like to add? Also, doesn't clientmanagement then append a CFID to the UR

poll - How many MS should it take to load a site's home page?

2008-01-20 Thread Nate Willard
Looking forward to hearing everyone's thoughts. How many milliseconds should it take for a site's home page to load? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http:

Re: Tricky String, Taking a string of 2 word say "FNAME LNAME" and returning FNAME L

2008-01-17 Thread Nate Willard
Charlie, That did it, Thanks for the speedy solution. Thanks to everyone else as well. N --- Charlie Griefer <[EMAIL PROTECTED]> wrote: > > > > delimiters=" "> >') /> > > > On Jan 17, 2008 5:31 PM, Nate Willard > <[EMAIL P

Tricky String, Taking a string of 2 word say "FNAME LNAME" and returning FNAME L

2008-01-17 Thread Nate Willard
Tricky String, Taking a string of 2 word say "FNAME LNAME" and returning FNAME L Basically I'm investigating a efficient way to take a string of x words, likely 2 or 3. Display the first word, the person's first name and then just the First character of the last word. Example 2: James A Bond, wo

Cookie Question - Is this implementation even a good performance/technical Idea?

2008-01-17 Thread Nate Willard
I'd like to implement the following feature: the first time a user visits my site, if cookie "visitedSite" does not exist, the site display a div welcoming the user etc... End goal, on a person first visit, they are given a nice welcome & intro message. on subsequent visits when the site checks

Re: Feeburner Management API - Has anyone used this to create a feed?

2008-01-14 Thread Nate Willard
Thanks Raymond. I actually found your code yesterday thanks to google. So far its been a huge help. --- Raymond Camden <[EMAIL PROTECTED]> wrote: > Jayesh, Nate is talking about using FeedBurner to > manage the feeds. > While CF can make feeds, a lot of bloggers use > Fe

Feeburner Management API - Has anyone used this to create a feed?

2008-01-13 Thread Nate Willard
Hey again, Has anyone used the Feedburner Management API in Coldfusion to App feeds? I have to make well over 100 feeds, and am interested to learn if this has been done already in Coldfusion or if I'll need to start from scratch. Thanks again for all the help. N ~~

Email Validation Question, Possible RegEx required?

2008-01-13 Thread Nate Willard
Morning, I'm currently working to add an address book importer (PLAXO) to a site. The address book importer returns the emails in the input box as follows: "FNAME LNAME" <[EMAIL PROTECTED]>, "FNAME LNAME" <[EMAIL PROTECTED]>, "FNAME LNAME" <[EMAIL PROTECTED]>, I'd like to come up with a way to ta

Re: Output a Query by Date DESC, with A month, Day header were applicaple.

2008-01-13 Thread Nate Willard
, 2008 10:39 PM, Nate Willard > <[EMAIL PROTECTED]> wrote: > > I've been struggling with a desired output. I'm > eager > > to hear everyone's thoughts and ideas on how to > > efficiently achieve my goal. Thanks... > > agreed with Jim... you

Re: Output a Query by Date DESC, with A month, Day header were applicaple.

2008-01-12 Thread Nate Willard
t;[EMAIL PROTECTED]> wrote: > What does the query look like? Wouldn't it already > only be returning > only dates with results? Post the query and I'm > sure we can help. > > -Nic > > Nate Willard wrote: > > I've been struggling with a desired output.

Output a Query by Date DESC, with A month, Day header were applicaple.

2008-01-12 Thread Nate Willard
I've been struggling with a desired output. I'm eager to hear everyone's thoughts and ideas on how to efficiently achieve my goal. Thanks... I have a query that returns the following data: TITLE - dateTime The results span past a month. I would like a way to output the results as follows January

Model-Glue application behaving badly when moved to staging server

2007-05-01 Thread Nate Petersen
F 7. I am using Model-Glue 1.1. Can anyone point out anything that I might be overlooking? Any other suggestions? I am kind of desperate. Many thanks, Nate Petersen ~| Upgrade to Adobe ColdFusion MX7 The most significant rel

RE: CF-Talk: Digest every 6 hours

2004-12-07 Thread Nate Nielsen
I was able to break the file manager. :) Try naming files with non standard ascii codes. Ex : ANZ.xls.|.~�?╞τ.xls2 -Nate [EMAIL PROTECTED] ~| Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net http

Re: CSS 'focus' in IE

2004-05-21 Thread Nate Petersen
Check out the following link for what is probably the best, simplest, most painless method to use the :focus pseudo-class in IE. http://www.htmldog.com/articles/suckerfish/focus/ [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

CGI client certificate variables

2004-05-20 Thread Nate Rowan
the problem occurs. I have cold fusion 5.0 running on the same netscape enterprise server and can access that varibale with no problem. Is there something I am missing on either cold fusion or netscape server? Thanks for any help, Nate [Todays Threads] [This Message] [Subscription] [Fast

Re: XML/SOAP Credit Card Settlement with Bank of America

2004-04-20 Thread Nate Woodward
our http settlement process, it would be appreciated. I am not familiar with the MM devex, can you provide me a link? Thanks, Nate > switch to in-process request? > > I had a nightmare of a time with them not too long ago.   > cf_bofainprocess was the result,  Its a quick/dirty tag

RE: real quick ot

2004-01-13 Thread Nate Nelson
I am currently using WinCVS as a client tool with CVSNT on my server and it works very well. It doesn't tie in with Homesite, but is very simple to use and runs smoothly.  There is also TortoiseCVS that I have noticed mentioned in this thread that works well too.  It ties in with Windows Explorer w

RE: DNS Error

2004-01-12 Thread Nate Nelson
Maybe a reach, but try checking her hosts.txt file just in case something was changed there. -Original Message- From: Suyer, Ed . [mailto:[EMAIL PROTECTED] Sent: Monday, January 12, 2004 5:28 PM To: CF-Talk Subject: DNS Error Hi folks, I have a very interesting problem that has to d

RE: Detecting SQL Update success

2004-01-12 Thread Nate Nelson
y bad thing about it is if the table you are updating has a trigger that does something then you are going to get the value from the trigger's execution.  @@rowcount returns the number of rows affected by the very last executed statement. Hope it helps, Nate Nelson -Original Message

CFChart customization

2004-01-12 Thread Nate Nelson
lient specifically wants -2.5 to 2.5.  Has anyone run into this problem?  Was it fixed in CFMX 6.1? Thanks, Nate Nelson [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re:Can anyone see a problem with this cffunction block?

2003-11-26 Thread Nate Petersen
That was too easy, perhaps I should have read a little further :) Thanks, Nate >Try moving the cfargument tag up > > > >-Original Message----- >From: Nate Petersen [mailto:[EMAIL PROTECTED] >Sent: Thursday, 27 November 2003 9:44 a.m. >To: CF-Talk >Subject: Ca

Can anyone see a problem with this cffunction block?

2003-11-26 Thread Nate Petersen
ing end tag. An explicit end tag can be provided by adding . If the body of the tag is empty you can use the shortcut .   If I remove the local variable declaration it works just fine. Any ideas? Thanks, Nate [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Pound signs in urlSessionFormat()

2003-09-02 Thread Nate
looks wrong to me: I understand the general rules to follow is that pound signs can be used inside quotes, but you don't nest them. Is this bad coding practice, or am I worried about nothing? Thanks, Nate ~| Archives:

RE: cf hosting

2003-07-25 Thread Nate Nelson
I will also vouch for CFDynamics. I have used their services for a few years and I have had a great experience. Any work that I have done that was not hosted at CFDynamics I have had problems with. With my current work that is NOT hosted at CFDynamics (I had no decision on who we chose as our

RE: Classified Ads System

2003-07-24 Thread Nate Nelson
Steve, I found some good free tools in my search for a bug tracker. Among these tools is a classified ads tool. CodeCharge has been very generous; the tool is open source and available in many programming languages. http://www.gotocode.com/apps.asp?app_id=5&; Nate -Original Mes

RE: Bug Tracking Tool

2003-07-24 Thread Nate Nelson
Thanks for the suggestions. Nate -Original Message- From: Kola Oyedeji [mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2003 6:01 AM To: CF-Talk Subject: RE: Bug Tracking Tool If you want cheap and cheerful: www.elementool.com The limited version is free but everything is hosted on

Bug Tracking Tool

2003-07-23 Thread Nate Nelson
Could anyone suggest a decent bug tracking tool? I'm looking for something preferably web based that is easy to use so that a tester could be the primary user. It would need to be either free or fairly priced. If anyone here has used a tool or has seen something worth suggesting please let me kn

RE: Cheap CF hosting?

2003-04-03 Thread Nate Nelson
I also agree. They have a good reseller program and a nice developer option. -Original Message- From: Paul Hastings [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 02, 2003 10:41 AM To: CF-Talk Subject: Re: Cheap CF hosting? > I like CFDynamics... I don't know if it's "cheap" in your b

Re: JSP and outputing cgi variables

2003-03-27 Thread Nate
*** Your mail has been scanned, and no virus was found. ***-*** Thanks. Nate - Original Message - From: "Nick de Voil" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, March 27, 2003 12:44 PM Su

OT: JSP and outputing cgi variables

2003-03-27 Thread Nate
*** Your mail has been scanned, and no virus was found. ***-*** Hello, Sorry for the OT post, I'm a JSP newbie and need to know how I would do #cgi.server_name# on a JSP page? Thanks,

Re: OT: Problems displaying flash inside an iframe in Netscape 7.x

2003-03-04 Thread Nate
Actually this does help. I remember last year when I downloaded Mozilla 1.0 I had the same problem, and at this point Mozilla has fixed this issue so the answer seems to be that I have to wait for Netscape to catch up with a future release. Thanks, Nate - Original Message - From: "

OT: Problems displaying flash inside an iframe in Netscape 7.x

2003-03-04 Thread Nate
Netscape 7.x most curious is that it also displays as intended in Mozilla 1.2.1 which (to my understanding) shares the same gecko rendering engine with Netscape 7.x. The URL is: http://www.americafirst.com Could this be a bug? Any other ideas? Thanks, Nate

RE: deleting jrun_axis.jar

2003-02-24 Thread Nate Zelnick
Reboot into safe mode. That should unlock it. -Original Message- From: Leonardo Crespo - Cftop.COM [mailto:[EMAIL PROTECTED] Sent: Monday, February 24, 2003 11:07 PM To: CF-Talk Subject: deleting jrun_axis.jar Mm says in the Jrun sp1a release notes: Delete jrun_root/servers/lib/jrun_ax

CF based financial calculators

2003-02-14 Thread Nate
d the offering there was somewhat lackluster. Thanks, Nate ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4

Re: CFC set's & get's

2003-02-04 Thread Nate
Not to take this thread too far off the original topic, but I too am a CFC newbie and have been very interested in finding a good tutorial for creating multi-step or back next forms based around CFCs. If there are any suggestions it would help me out. Thanks, Nate - Original Message

Re: Self submitting Corm inside question...(More JavaScript than CF)

2002-10-30 Thread Nate
I do this extensively in a few of my forms and you may just be missing a semicolon after submit, i.e. document.cart.submit();. Nate - Original Message - From: "Les Mizzell" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, Octobe

Re: Session variables not expiring in CFMX

2002-10-21 Thread Nate
Exactly what I needed! - Original Message - From: "Chris Kief" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, October 18, 2002 3:54 PM Subject: RE: Session variables not expiring in CFMX > Nate, > > You are still able to

Re: Javascript/HTML Based Chat Tip

2002-06-27 Thread Nate Nielsen
built with 100% CF tags, so no JavaScript / Java knowledge needed, thus the FusionScript w/ activeServer component ' s power. =P~ Nate Nielsen [EMAIL PROTECTED] - Original Message - From: "S. Isaac Dealey" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECT

RE: CF Server Firewall

2002-06-24 Thread Nate Swanson
sure they will find a way into our Windows 2000 box if they really wanted to, no matter how much we try to lock them down. Were just making it harder so hackers move onto easier, less secure targets. Nate >Don't mean to self promote but we sell it for $299.95 > >http://tinyclick.c

Re: unscoped variables

2002-06-04 Thread Nate Nielsen
sing is faster than =) Nate Nielsen [EMAIL PROTECTED] - Original Message - From: <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, June 04, 2002 10:36 AM Subject: RE: unscoped variables > I thought the variables scope was local to an individua

Re: Recent thread?

2002-05-23 Thread Nate Nielsen
e homepage - even in Netscrapper 4.x =) http://www.fusionscript.com Oh - and it ~~IS~~ only 4 FusionScript tags to do the data transfer - view the tutorial to see how - http://www.fusionscript.com/_beta/tutorials.cfm - click "Writing your first ActiveServer FusionScript code!" =D

Re: Recent thread?

2002-05-23 Thread Nate Nielsen
where it is hosted now there is a very limited number of accounts I can create without being charged out the wazoo. =( Nate Nielsen [EMAIL PROTECTED] - Original Message - From: "Justin Waldrip" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]>

Re: top 10 custom tags?

2002-05-23 Thread Nate Nielsen
has to get no 1.=P Nate Nielsen [EMAIL PROTECTED] - Original Message - From: "John Paul Ashenfelter" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, May 23, 2002 11:09 AM Subject: top 10 custom tags? > Hi all, > &g

Re: Recent thread?

2002-05-23 Thread Nate Nielsen
ve it a chance, I think you will be pleasantly surprised with where the technology is now and where it is going. =) Aslo - It's open source, so any of you guru's out there are welcome to join in and make your mark! =P Best regards, Nate Nielsen [EMAIL PROTECTED] - Original Mes

Re: Looping through file-fields

2002-05-19 Thread Nate Nielsen
You'll want to change the following line : To : The evaluate function lets you dynamically evaluate a statement before it's processed. ;) Nate Nielsen FusionScript DevTeam [EMAIL PROTECTED] Develop CF apps that talk to the server without page reloads ! Create client functionali

Re: Running a query in javascript

2002-05-16 Thread Nate Nielsen
oh - btw - Here is a little viewlet movie tutorial of how to do this dynamic client-server communication with basicly 4 CF tag calls to the activeServer component. http://www.fusionscript.com/viewlets/as_zipcode/as_zipcode_viewlet.html =) Nate Nielsen FusionScript DevTeam [EMAIL PROTECTED

Re: Running a query in javascript

2002-05-16 Thread Nate Nielsen
ything the engine can and will do to make your life easier - check it all out at www.fusionscript.com Nate Nielsen FusionScript DevTeam [EMAIL PROTECTED] Develop CF apps that talk to the server without page reloads ! Create client functionality with CF syntax ! www.FusionScript.com A free, Open Sour

Re: Get date/time from browser?

2002-05-16 Thread Nate Nielsen
o"Language Reference" -- "Functions" -- "Date" -- etc. Nate Nielsen FusionScript DevTeam [EMAIL PROTECTED] Develop CF apps that talk to the server without page reloads ! Create client functionality with CF syntax ! www.FusionScript.com A free, Open Source

Re: List, Quotes, Commas UGH

2002-05-15 Thread Nate Nielsen
The key here of course is the RE -> (Aren't there laws concerning coding RE's this late at night? eh? hehe) myList = '22,33.44,21.93,"1,090.33","2,999.00"'; myList = REReplace(myList, '(")([0-9_]*)([,]*)([0-9_.]*)(")&

RE: SOLVED... OT Quick JS ?

2001-11-27 Thread Nate Smith
What ended up being the solution? Nate > -Original Message- > From: Douglas L. Brown [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, November 27, 2001 2:27 PM > To: CF-Talk > Subject: SOLVED... OT Quick JS ? > > > Thanks for the help everyone it is appreci

RE: OT Quick JS ?

2001-11-27 Thread Nate Smith
around the statements would make it clearer. For instance x && y || z should be x && ( y || z ). Or at least that's what I think you're trying to validate against. ? Nate > -Original Message- > From: Douglas L. Brown [mailto:[EMAIL PROTECTED]] > Sent: Tues

RE: OT Quick JS ?

2001-11-27 Thread Nate Smith
Then your problem would be in the last check where your equality comparison is '!=='. I'm not sure of the pattern for Discovery cards, but it's either != or == and not !==. HTH, Nate > -Original Message- > From: Douglas L. Brown [mailto:[EMAIL PROTECTED]] &g

RE: OT Quick JS ?

2001-11-27 Thread Nate Smith
The problem is that substring returns a string value and your != comparison is against an integer. There are two ways to fix this. 1.) Use the parseInt() function on the variable: parseInt(first_number) != 4 or 2.) Turn the integer 4 in to the character 4: first_number != '4'

RE: WAAAAHHHHH

2001-11-21 Thread Nate Smith
This is way OT, but I'm dying to know what they delivered!! Please tell. Nate > > -Original Message- > From: Sandy Clark [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, November 20, 2001 8:45 PM > To: CF-Talk > Subject: WH > > > THis really sucks

RE: How to tell if a number is a multiple of 3?

2001-11-20 Thread Nate Smith
Use the mod function. - Nate Smith, Lead Developer Macromedia Coldfusion 5 Certified Professional Macromedia Certified Web Site Developer [EMAIL PROTECTED] www.doceus.com > -Original Message- > From: Will Swain [mailto:[EMAIL PROTECTED]] > Sent

RE: Jscript totalling with dynamic CF Fields..

2001-11-13 Thread Nate Smith
Loop through the elements of the form and add the value of any field whose name begins with "Reg_". You may also want to put in some validation that all the fields are numeric and do not contain any non-numeric characters. function sumValues() { var TheSum = 0; for( var i=0; i ---

RE: Getting Information from a RecordSet

2001-10-05 Thread Nate Smith
Close but the index goes after the column name like this: QueryName.ColumnName[QueryName.RecordCount] - Nate Smith > -Original Message- > From: Leon Oosterwijk [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 05, 2001 6:00 PM > To: CF-Talk > Subject: Getting Inf

RE: columnlist

2001-10-05 Thread Nate Smith
The original poster wanted the columns in the order specified in the database. So your post of: >> Or >> >> Queryname.Columnlist >> >> Jerry Staple would not work. The only way to do that, to the best of my current knowledge, is to query the syste

RE: columnlist

2001-10-05 Thread Nate Smith
t you want the column information. I'm not certain about any other servers. SELECTname FROM syscolumns WHERE (id =(SELECT id FROM sysobjects WHERE name = 'TABLENAME')) ORDER BY colorder - Nate Smith, Lead Developer Macromedia Co

  1   2   >