RE: What am I missing with this code? (Javascript)

2011-06-12 Thread Rick Faircloth
Excellent! Thanks! -Original Message- From: Jason Fisher [mailto:ja...@wanax.com] Sent: Sunday, June 12, 2011 4:42 PM To: cf-talk Subject: Re: What am I missing with this code? (Javascript) Not sure, but now that I look at it, you don't need to pass slidePosition around at al

Re: What am I missing with this code? (Javascript)

2011-06-12 Thread Jason Fisher
Not sure, but now that I look at it, you don't need to pass slidePosition around at all now that it's a global variable. Try this: var slidePosition = 1; $(document).ready(function() { playTrack();

RE: What am I missing with this code? (Javascript)

2011-06-12 Thread Rick Faircloth
on = ' + slidePosition); playTrack(slidePosition); }; -Original Message- From: Jason Fisher [mailto:ja...@wanax.com] Sent: Sunday, June 12, 2011 3:06 PM To: cf-talk Subject: Re: What am I missing with this code? (Javascript) You declared slidePosition as a local

Re: What am I missing with this code? (Javascript)

2011-06-12 Thread Jason Fisher
You declared slidePosition as a local variable inside the ready() function, so it doesn't exist for the other functions. Try making it global, like this: var slidePosition = 0; $(document).ready(function() { playTrack(slidePosition);

RE: What am I missing???

2008-08-25 Thread Rick Faircloth
> To: CF-Talk > Subject: Re: What am I missing??? > > accidentally hit 'send' :\ > > that should have read: > > form page: > > > value="#get_unregistered.shooter_id#" /> > > > action page: > > >

RE: What am I missing???

2008-08-25 Thread Rick Faircloth
-Original Message- > From: Azadi Saryev [mailto:[EMAIL PROTECTED] > Sent: Monday, August 25, 2008 9:20 PM > To: CF-Talk > Subject: Re: What am I missing??? > > Matt's suggestion should work, but it really shouldn;t be necessary... > > do you have your cfoutput insid

Re: What am I missing???

2008-08-25 Thread Charlie Griefer
accidentally hit 'send' :\ that should have read: form page: action page: INSERT INTO Registrations ( shooter_id , tournament_id ) VALUES ( ,

Re: What am I missing???

2008-08-25 Thread Charlie Griefer
> > Rick > > > > > > > -Original Message- > > From: Matt Quackenbush [mailto:[EMAIL PROTECTED] > > Sent: Monday, August 25, 2008 8:57 PM > > To: CF-Talk > > Subject: Re: What am I missing??? > > > > > value="#shooter_id[c

RE: What am I missing???

2008-08-25 Thread Rick Faircloth
Message- > From: Matt Quackenbush [mailto:[EMAIL PROTECTED] > Sent: Monday, August 25, 2008 8:57 PM > To: CF-Talk > Subject: Re: What am I missing??? > > value="#shooter_id[currentRow]#"> > > > ~~

Re: What am I missing???

2008-08-25 Thread Azadi Saryev
Matt's suggestion should work, but it really shouldn;t be necessary... do you have your cfoutput inside a cfloop or the other way around? what if you properly scope both recordcount and shooter_id with a query name? Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/

Re: What am I missing???

2008-08-25 Thread Brad Wood
Not quite following that. Can you paste the exact HTML being produced. Also, dump the query to make sure the shooter_id column contains what you think it does. Are you by chance doing any nested loops or cfoutputs? ~Brad - Original Message - From: "Rick Faircloth" <[EMAIL PROTECTED]>

Re: What am I missing???

2008-08-25 Thread Matt Quackenbush
~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/mes

RE: What am I missing?

2007-01-13 Thread Michael E. Carluen
Doug, Are you using InitAvgFeedback as a UDF or as part of a CFC? If it's used as a UDF, which looks like it based on what you've sent, all you need to do is use #InitAvgFeedback(memberID)#. No need for . Hth, Michael > -Original Message- > From: Doug Brown [mailto:[EMAIL PROTECTED] >