Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by imstillatwork

  1. imstillatwork

    Cycling Through words in an input field

    Hello, On a lot of sites with a search form, there is a default value in the input field that has an example search term, and when you click the input, the default disappears. I need to do that, but with a twist... I need to cycle through a list of words so that they fade in / out until you...
  2. imstillatwork

    Hey!

    Been neck deep in code. It's been mostly fun, too, which is good. I've worked on a lot of projects that really pushed the limits of my abilities and every time I came out better. Nothing makes you learn more than doing! Kevin http://www.lot-o-nothin.com/cfml/
  3. imstillatwork

    isValid(..) quick question

    the first argument must Literally! be one of: 'string' 'integer' 'url' 'email' (there are plenty more..) the second is the variable that you are checking. <cfset badEmail = "kevin#domain.com"> <cfset goodEmail = "kevin@domain.com"> isValid("email",badEmail) = FALSE...
  4. imstillatwork

    isValid(..) quick question

    I don't get the examples you're posting guju... http://livedocs.adobe.com/coldfusion/8/htmldocs/functions_in-k_37.html Kevin http://www.lot-o-nothin.com/cfml/
  5. imstillatwork

    Coldfusion CMS recommendations

    farcry all the way. Kevin http://www.lot-o-nothin.com/cfml/
  6. imstillatwork

    ajax powered search

    scriptaculous and prototype are cool enough, but HUGE files compared to jquery. CF8 built in ajax stuff is cool enough also, but WAY bloated... Kevin http://www.lot-o-nothin.com/cfml/
  7. imstillatwork

    Hey!

    Cool to see the same old crew here on the MVP list. that is all. been a while. :) Kevin http://www.lot-o-nothin.com/cfml/
  8. imstillatwork

    check if total is correct if not then font is red

    Just a coding tip that you may find helpful, especially as your experience grows: change: evaluate("form.tripstart" & idx) to: FORM["tripstart" & idx] avoid evaluate() if possible (almost always possible.) Kevin http://www.lot-o-nothin.com/cfml/
  9. imstillatwork

    CFEXECUTE and locked files...

    id that your blog? I'll try it out sometime. I am still converting blindly right now, but i would like to be able to read the streams. Thanks for the links! kevin Kevin http://www.lot-o-nothin.com/cfml/
  10. imstillatwork

    alternative to cfftp?

    Been a while...A little off topic, but there is a lotta smart people here.. We are having MAJOR cfftp issues. downloading 20mb + files and downloading over then 200 files. I have been looking for an ftp client program that can run on the server ad has these features: 1) scheduled transfers 2)...
  11. imstillatwork

    CFEXECUTE and locked files...

    well, I switched over to the java method of running command line... works fine except getting the output streams doesn't work yet, I'll need the output and error streams to see what the program did or didn't do, otherwise your flying totaly blind... cfexecute only returns the output stream and...
  12. imstillatwork

    CFEXECUTE and locked files...

    Hey-o Been awhile, but I need your help (anyone?) I'm cfexecuting ffmpeg to convert video to .flv for a project. works great, but for some reason, the file specified in cfexectute for output is locked even after cfexecute is done. The .flv file is also locked. can't delete, rename, etc... i...
  13. imstillatwork

    need advice

    cfoutput: createUUID() It's random, and you won't have a duplicate. What's nice about it is that you can also use isValid("UUID",myVar)> to see if you still have a valid UUID - and if someone manually tampers with the value of the uuid (in a URL for example), it will virtualy always break the...
  14. imstillatwork

    Output new row after 3 records

    don't forget to fill in any missing cells if you want valid html... I do it like this http://www.lot-o-nothin.com/cfml/tutorials/index.cfm/id/6_8/ enjoy. Kevin http://www.lot-o-nothin.com/cfml/
  15. imstillatwork

    need advice

    use UUIDs instead? they are not sequential... store customer id in session or cookie, and NOT url? safer yet. What is it used for? Kevin http://www.lot-o-nothin.com/cfml/

Part and Inventory Search

Back
Top