RE: How to Make Layers Visible with OnMouseOver

2009-08-24 Thread Adrian Lynch
-Original Message- From: Peter Boughton [mailto:bought...@gmail.com] And just a quick simplification of Adrian's jQuery... Instead of: $(#show).mouseover(func1).mouseout(func2) You can do: $(#show).hover(func1,func2) Holy bejeasus, how long has hover() been there?!

RE: How to Make Layers Visible with OnMouseOver

2009-08-21 Thread Adrian Lynch
Way too much code to look at! But using jQuery: style type=text/css .hidden { display: none; } /style script type=text/javascript src=/path/to/jquery-1.3.2.min.js/script script type=text/javascript $(function() {

RE: simple SQL Question

2009-08-21 Thread Adrian Lynch
That is a left outer join. It's mixing new and old styles of joining tables. Not sure if there's a benefit to the mix, but I reckon this is clearer: SELECT a.id, b.name FROM a INNER JOIN b ON a.id = b.id LEFT OUTER JOIN b ON a.id = b.id Is this code actually used or an example for the question?

RE: Cannot declare local variable cfcatch twice

2009-08-19 Thread Adrian Lynch
Can we see your code? -Original Message- From: SANJEEV SINGLA [mailto:planetsanj...@gmail.com] Sent: 19 August 2009 07:43 To: cf-talk Subject: Cannot declare local variable cfcatch twice Hi All, I migrated my CFMX6.1 application to CF8 on my local dev machine and getting

RE: ajax cfc not working for Access DB -- odd stuff

2009-08-19 Thread Adrian Lynch
Railo or OpenBD? Do they support cfajaxproxy yet? -Original Message- From: Don L [mailto:do...@yahoo.com] Sent: 19 August 2009 22:42 To: cf-talk Subject: ajax cfc not working for Access DB -- odd stuff I've moved on to an open source cfml engine, don't know what caused the

RE: odd error calling function in cfc

2009-08-16 Thread Adrian Lynch
Yeah, reserved word seems unlikely. Chances are you're overwriting add_option somewhere or the scoping is out somehow. I notice there's no var scope on your getOptions query, var scope everything and see it that sorts things. It's hard to say more without seeing the full CFC mind. Adrian

RE: Records set in CFStruct

2009-08-12 Thread Adrian Lynch
cfset bothQueries = fnc_navigation(args go here) cfset thisIsOneQuery = bothQueries.rs_navsFrontEnd cfset thisIsTheOtherQuery = bothQueries.rs_navsAdmin cfdump var=#thisIsOneQuery# cfdump var=#thisIsTheOtherQuery# cfoutput query=thisIsOneQuery ... /cfoutput There are other ways, but

RE: Can you detect if CF page is loaded in Flex I-Frame?

2009-08-08 Thread Adrian Lynch
Check if CGI.HTTP_USER_AGENT contains something different for Flex requests. Adrian -Original Message- From: Gordon Nall [mailto:gor...@imgstudios.com] Sent: 08 August 2009 21:54 To: cf-talk Subject: Can you detect if CF page is loaded in Flex I-Frame? Question: Is there a way

RE: Can you detect if CF page is loaded in Flex I-Frame?

2009-08-08 Thread Adrian Lynch
That's fair enough. Dump the CGI scope, see if there's anything else of interest. -Original Message- From: Gordon Nall [mailto:gordon_trav...@yahoo.com] Sent: 08 August 2009 22:22 To: cf-talk Subject: Re: Can you detect if CF page is loaded in Flex I-Frame? Just tested the

RE: WebService Axis Issues

2009-08-07 Thread Adrian Lynch
I get the same on CF8 and on Railo I get: org.xml.sax.SAXException: Deserializing parameter 'GetVersionInfoResponse': could not find deserializer for type {urn:IWS}GetVersionInfoResponseType Sorry that's not much help. Adrian -Original Message- From: Jeremy Rottman

Looping with BufferedReader.readLine() and comparing to NULL

2009-07-31 Thread Adrian Lynch
Hey all, I'm trying to get an alternative to cfexecute working and I'm wondering how to loop with a call to BufferedReader.readLine(). Here's the code: cfset runtime = CreateObject(java, java.lang.Runtime) cfset process = runtime.getRuntime().exec(cmd) cfset errStream =

RE: Looping with BufferedReader.readLine() and comparing to NULL

2009-07-31 Thread Adrian Lynch
-Original Message- From: Adrian Lynch [mailto:cont...@adrianlynch.co.uk] Sent: 31 July 2009 16:01 To: cf-talk Subject: Looping with BufferedReader.readLine() and comparing to NULL Hey all, I'm trying to get an alternative to cfexecute working and I'm wondering how to loop with a call

RE: OT javascript

2009-07-30 Thread Adrian Lynch
You can in FF3. You have some typos that'll stop it working though. A closing double quote for the name attribute in your selects. You need a . in between the [0] options. Have a look at using jQuery though. It'll make this code a lot smaller. Adrian -Original Message- From: Chad

RE: OT javascript

2009-07-30 Thread Adrian Lynch
That's ok. Having duplicate names is cool. Adrian -Original Message- From: Chad Gray [mailto:cg...@careyweb.com] Sent: 30 July 2009 16:46 To: cf-talk Subject: RE: OT javascript When you submit it makes a comma delimited list of ID's that we loop over and use. Some pages

RE: CFC Error on CF8 (Same working on CFMX 6.1)

2009-07-29 Thread Adrian Lynch
Run the page in Firefox with Firebug installed for a better error message. Post your code for CallWebService() if you can. Adrian -Original Message- From: SANJEEV SINGLA [mailto:planetsanj...@gmail.com] Sent: 29 July 2009 13:44 To: cf-talk Subject: CFC Error on CF8 (Same working

RE: Question re: Reactor

2009-07-28 Thread Adrian Lynch
Have you checked the table definitions are the same between dev and staging? It's possible to import/export/script tables and defaults not to go across too. Adrian -Original Message- From: Nathan Strutz [mailto:str...@gmail.com] Sent: 28 July 2009 05:30 To: cf-talk Subject: Re:

RE: Converting Year to Integer

2009-07-25 Thread Adrian Lynch
But then to take Azadi's point 4 and change it for this: 4) again, the simple cfset currentYear = year(now()) cfloop from=2000 to=#currentYear# index=yearCnt ALWAYS works. Something else is amiss. -Original Message- From: N K [mailto:neetukais...@gmail.com] Sent: 24 July 2009 18:48

RE: Converting Year to Integer

2009-07-24 Thread Adrian Lynch
Is Year((now)) a typo in your email? If not, try Year(Now()) and you will need the #'s in the to attribute of cfloop. Adrian -Original Message- From: N K [mailto:neetukais...@gmail.com] Sent: 24 July 2009 14:31 To: cf-talk Subject: Converting Year to Integer I am looping the

RE: Converting Year to Integer

2009-07-24 Thread Adrian Lynch
And failing that, post all your code... -Original Message- From: Dave Sueltenfuss [mailto:dsueltenf...@gmail.com] Sent: 24 July 2009 14:56 To: cf-talk Subject: Re: Converting Year to Integer Have you tried outputing your currYear variable, to make sure it is what you expect?

RE: Converting Year to Integer

2009-07-24 Thread Adrian Lynch
Right but something else is wrong. Azadi's example is about as simple as it gets. Something else in your code is causing the problem. -Original Message- From: N K [mailto:neetukais...@gmail.com] Sent: 24 July 2009 15:09 To: cf-talk Subject: Re: Converting Year to Integer

RE: CF8 functions only working in webroot?

2009-07-22 Thread Adrian Lynch
All the AJAXy tags and function access files in domain.com/cfide/blaa/blaa. Add CFIDE as a virtual directory in your new sites and see if that fixes it. Adrian -Original Message- From: Paul Henderson [mailto:pa...@d2phosting.com] Sent: 22 July 2009 21:14 To: cf-talk Subject: CF8

RE: SSOT: open source software

2009-07-20 Thread Adrian Lynch
Well you're talking about Railo or OpenBD, which is it and what problem are you having? Adrian -Original Message- From: Don L [mailto:do...@yahoo.com] Sent: 20 July 2009 03:53 To: cf-talk Subject: SSOT: open source software Particularly related to ColdFusion. I understand

RE: getDirectoryFromPath Question

2009-07-20 Thread Adrian Lynch
Not sure exactly, but I always do this: ExpandPath(.) rather than this: ExpandPath(*.*) Try removing the *'s and see what happens. Adrian -Original Message- From: Hunsaker, Michael Scott [mailto:mhuns...@indiana.edu] Sent: 20 July 2009 14:24 To: cf-talk Subject:

RE: getDirectoryFromPath Question

2009-07-20 Thread Adrian Lynch
What does this show you: cfoutput#application.physpath#data\/cfoutput -Original Message- From: Hunsaker, Michael Scott [mailto:mhuns...@indiana.edu] Sent: 20 July 2009 17:49 To: cf-talk Subject: RE: getDirectoryFromPath Question Thanks for the help! Here's my CFFILE function:

RE: getDirectoryFromPath Question

2009-07-20 Thread Adrian Lynch
I could be wrong, but I remember that not being the case a good while back. Both fileField and FORM.fileField would work in the filefield attribute. Am I mistaken? Adrian -Original Message- From: Jason Fisher [mailto:ja...@wanax.com] Sent: 20 July 2009 19:32 To: cf-talk Subject:

RE: Calling .ASPX.VB from .CFM

2009-07-18 Thread Adrian Lynch
Yes. Chances are you need to pass arguments along with your method call. Adrian -Original Message- From: Jason Neidert [mailto:ja...@steelfusion.com] Sent: 17 July 2009 18:50 To: cf-talk Subject: RE: Calling .ASPX.VB from .CFM Here is a link to the .WSDL file:

RE: Last modified Date for file

2009-07-07 Thread Adrian Lynch
Try GetFileInfo() on CF8. Not sure how reliable the date last modified attribute is though. Doesn't it get updated with any kind of access? Maybe I'm thinking of something else. Adrian -Original Message- From: RamaDevi Dobbala [mailto:ramadobb...@gmail.com] Sent: 07 July 2009 10:39

RE: Reg:Last modified Date for file

2009-07-07 Thread Adrian Lynch
Dump qGetLastdateModified to see what's being returned as your code looks sound. Adrian -Original Message- From: RamaDevi Dobbala [mailto:ramadobb...@gmail.com] Sent: 07 July 2009 10:57 To: cf-talk Subject: Re: Reg:Last modified Date for file cfset fileList =

RE: Reality check

2009-07-07 Thread Adrian Lynch
cfset variables.instance.scheduleWeekdayDAO=null / Ermmm, since when has this worked?! Do you create your own null variable? Adrian -Original Message- From: Phillip Vector [mailto:vec...@mostdeadlygame.com] Sent: 07 July 2009 17:24 To: cf-talk Subject: Re: Reality check

RE: Reality check

2009-07-07 Thread Adrian Lynch
The reason I asked is because cfset something = null will error unless null is defined. I thought maybe there was some Java magic going on a few lines up. -Original Message- From: Phillip Vector [mailto:vec...@mostdeadlygame.com] Sent: 07 July 2009 18:27 To: cf-talk Subject: Re:

RE: New CF8 vulnerability

2009-07-05 Thread Adrian Lynch
If you mean your FCKEditor is accessed in a secure area, I don't think that matters. It's whether or not certain scripts can be accessed at yourdomain.com/cfide/scripts/bla/bla/eek.cfm. Someone correct me if this isn't the case... Adrian -Original Message- From: Matt Robertson

RE: New CF8 vulnerability

2009-07-03 Thread Adrian Lynch
I don't seem to have the same file directory as that posted in the second link. Instead I have: \CFIDE\scripts\ajax\FCKeditor\editor\filemanager\upload\cfm\config.cfm and: \CFIDE\scripts\ajax\FCKeditor\editor\filemanager\browser\default\connectors\ cfm\config.cfm Both of these files look like

RE: query object error

2009-06-30 Thread Adrian Lynch
Could you show more of your code. This works for me. Oh and you don't need to assign to a temp var when using QuerySetCell. Adrian -Original Message- From: Kamru Miah [mailto:k.m...@csl.gov.uk] Sent: 30 June 2009 11:43 To: cf-talk Subject: query object error I am using CF8

RE: query object error

2009-06-30 Thread Adrian Lynch
cfset role.positions = your value -Original Message- From: Kamru Miah [mailto:k.m...@csl.gov.uk] Sent: 30 June 2009 12:08 To: cf-talk Subject: Re: query object error I just realised that the 'role' query form a include file is returntype=struct, and not returntype=query -

RE: Open source ColdFusion again

2009-06-23 Thread Adrian Lynch
Well we are in a credit crunch! For me, this makes cfwindow utterly redundant. Dominic ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

RE: Application Scope Problem

2009-06-18 Thread Adrian Lynch
How are you setting the component in the app scope? -Original Message- From: Dawson, Michael [mailto:m...@evansville.edu] Sent: 18 June 2009 14:20 To: cf-talk Subject: RE: Application Scope Problem We have had instances where a component, stored in the application scope, could

RE: Application Scope Problem

2009-06-18 Thread Adrian Lynch
--- !--- Start Usage --- cfoutput #application.translator.lookup(placeholder=testtext.69EE0E03,language =requ est.current_lang)# /cfoutput !--- End Usage --- -Original Message- From: Adrian Lynch [mailto:cont...@adrianlynch.co.uk] Sent: Thursday, June 18, 2009 9:43 AM To: cf-talk

RE: Image killing server (RESOLVED)

2009-06-10 Thread Adrian Lynch
- From: Adrian Lynch [mailto:cont...@adrianlynch.co.uk] Sent: Tuesday, June 09, 2009 10:49 AM To: cf-talk Subject: RE: Image killing server Thanks Mark. You're right, I'm beginning to think I shouldn't have posted it on here now. I've submitted a bug report to Adobe. When I open

RE: Simple regex question

2009-06-10 Thread Adrian Lynch
There's a ISVIN function on CFLib and I had originally proposed to my boss that I rewrite it in javascript but he didn't want that level of functionality. Just do it, don't ask the boss! :OD ~| Want to reach the ColdFusion

Image killing server

2009-06-09 Thread Adrian Lynch
a message saying CF is starting up. I'm on the bug report page at the moment but I thought I would get someone else to test this also. Thanks. Adrian Lynch | www.halestorm.co.uk ~| Want to reach the ColdFusion community

RE: Image killing server

2009-06-09 Thread Adrian Lynch
Hey, thanks Jason, I did the blackout myself. It's an image for an awards show so I thought it best to mask it. It is RGB, CMYK was our first thought too. Adrian -Original Message- From: Jason Fisher [mailto:ja...@wanax.com] Sent: 09 June 2009 15:54 To: cf-talk Subject: re: Image

RE: Image killing server

2009-06-09 Thread Adrian Lynch
Of course ;O) Still kills our servers. Has anyone witnessed it yet? -Original Message- From: Robert Harrison [mailto:rob...@austin-williams.com] Sent: 09 June 2009 16:15 To: cf-talk Subject: RE: Image killing server I did the blackout myself. Yes, but that also means you

RE: Image killing server

2009-06-09 Thread Adrian Lynch
) Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ On 09/06/2009 21:59, Adrian Lynch wrote: Hey, thanks Jason, I did the blackout myself. It's an image for an awards show so I thought it best to mask it. It is RGB, CMYK was our first thought too. Adrian -Original

RE: Image killing server

2009-06-09 Thread Adrian Lynch
www.necfug.com -Original Message- From: Adrian Lynch [mailto:cont...@adrianlynch.co.uk] Sent: Tuesday, June 09, 2009 9:43 AM To: cf-talk Subject: Image killing server Hey all, got a bit of a strange one here. A user is uploading an image which GIMP is reporting to have an embedded colour

RE: Send a textbox value to an object

2009-06-09 Thread Adrian Lynch
cfset twitterObj.postToTwitter(FORM.twittMessage) Adrian -Original Message- From: nikoo m [mailto:nikou...@yahoo.com] Sent: 09 June 2009 19:40 To: cf-talk Subject: Send a textbox value to an object I have an object in ColdFusion that post message to twitter. It works well

RE: reducing a query result

2009-06-04 Thread Adrian Lynch
Query the query using the same query variable name. Adrian -Original Message- From: Chad Gray [mailto:cg...@careyweb.com] Sent: 04 June 2009 16:07 To: cf-talk Subject: reducing a query result Say I have a query returned with 500 records. Is there a way in CF (not SQL) to

RE: Help ColdFusion Output URGENT

2009-06-01 Thread Adrian Lynch
Come on dude, you've been told before, help us by asking better questions! What doesn't work? Format your code so it's easy for us to see what's going on, I can't be bothered to look through your code because it's all over the place. If the query is correct and the problem lies in the output,

RE: cfmail problem in cfc

2009-05-30 Thread Adrian Lynch
Is your mail server on the same machine as CF? Check it's running. It probably has nothing to do with being in a CFC. Create a simple cfm page to test it. Adrian -Original Message- From: arya krishnan [mailto:arun.b.shou...@gmail.com] Sent: 29 May 2009 19:17 To: cf-talk Subject:

RE: my cfqueryparam grievance

2009-05-14 Thread Adrian Lynch
The user changed it maybe? Adrian -Original Message- From: Qing Xia [mailto:txiasum...@gmail.com] Sent: 14 May 2009 20:30 To: cf-talk Subject: Re: my cfqueryparam grievance But still, it is interesting to ponder whatever happened to my data, and why, of all things, everything

RE: my cfqueryparam grievance

2009-05-14 Thread Adrian Lynch
users can manually pass it in. On Thu, May 14, 2009 at 3:39 PM, Adrian Lynch cont...@adrianlynch.co.ukwrote: The user changed it maybe? Adrian -Original Message- From: Qing Xia [mailto:txiasum...@gmail.com] Sent: 14 May 2009 20:30 To: cf-talk Subject: Re: my

RE: my cfqueryparam grievance

2009-05-14 Thread Adrian Lynch
:01 PM, Adrian Lynch cont...@adrianlynch.co.ukwrote: I thought you said it was a cookie value? ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive

RE: OT (maybe): Display additional info from a Select before Form is Submitted

2009-05-13 Thread Adrian Lynch
If there aren't many categories, load all the extra info into the page in the place you need it to appear and hide it by default. Then on change of the drop down, show the relevant info. With jQuery: script type=text/javascript src=/scripts/jquery-1.3.1.min.js/script script type=text/javascript

RE: my cfqueryparam grievance

2009-05-12 Thread Adrian Lynch
Start logging the value of COOKIE.theID. Just save it somewhere and see if it's ever an unexpected value. Adrian -Original Message- From: Qing Xia [mailto:txiasum...@gmail.com] Sent: 12 May 2009 20:16 To: cf-talk Subject: my cfqueryparam grievance Hello folks, I had a

RE: CF 8 Hosting recommendations

2009-05-11 Thread Adrian Lynch
Look at using Railo instead then :O) Adrian -Original Message- From: Gerald Guido [mailto:gerald.gu...@gmail.com] Sent: 11 May 2009 03:30 To: cf-talk Subject: Re: CF 8 Hosting recommendations and it has *always* used CF 8. Hey Rick, I hear ya. Unless they are offering CF 8

RE: table display: row number. without recordset

2009-05-11 Thread Adrian Lynch
Same as CSS. table.className Adrian -Original Message- From: Paul Ihrig [mailto:pih...@gmail.com] Sent: 11 May 2009 20:23 To: cf-talk Subject: Re: table display: row number. without recordset how would i target my tables with a class=tablesorterXP but not any other table

RE: table display: row number. without recordset

2009-05-11 Thread Adrian Lynch
It probably does, but it's sorted already. Adrian -Original Message- From: Paul Ihrig [mailto:pih...@gmail.com] Sent: 11 May 2009 20:44 To: cf-talk Subject: Re: table display: row number. without recordset one weird thing is the tablesorter dost work on that column unles i

RE: Embedded colour profile killing server

2009-05-06 Thread Adrian Lynch
profile killing server You need to install CF 8.01 before you can install its hotfixes. mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 2009/5/6 Adrian Lynch cont...@adrianlynch.co.uk: I think we were up-to-date at work, looking at my local dev

RE: Embedded colour profile killing server

2009-05-06 Thread Adrian Lynch
://petefreitag.com/ - My Blog Firewall for CFML: http://foundeo.com/security/ On Tue, May 5, 2009 at 9:25 AM, Adrian Lynch cont...@adrianlynch.co.ukwrote: I'm trying to work on an image with CF8. Doing a simple ImageRead() on one particular image causes the server to restart

Embedded colour profile killing server

2009-05-05 Thread Adrian Lynch
I'm trying to work on an image with CF8. Doing a simple ImageRead() on one particular image causes the server to restart. This is happening on two servers which I'm told have more than enough memory. The image is 372KB, so nothing to worry about there. When I open it up in GIMP, I get asked

RE: Server just.... stops?

2009-05-05 Thread Adrian Lynch
Got the same thing happening to us but we know what's causing it, damned images! Do you know what's being run just before it dies? Adrian -Original Message- From: Justin Scott [mailto:jscott-li...@gravityfree.com] Sent: 05 May 2009 15:54 To: cf-talk Subject: Server just stops?

RE: Getting a count from a group in cfquery

2009-05-05 Thread Adrian Lynch
You need to include the other columns in your SELECT in your GROUP BY clause. Adrian -Original Message- From: Les Mizzell [mailto:lesm...@bellsouth.net] Sent: 05 May 2009 16:56 To: cf-talk Subject: Getting a count from a group in cfquery What I'm trying to get: cfoutput

RE: Embedded colour profile killing server

2009-05-05 Thread Adrian Lynch
, Adrian Lynch cont...@adrianlynch.co.ukwrote: I'm trying to work on an image with CF8. Doing a simple ImageRead() on one particular image causes the server to restart. This is happening on two servers which I'm told have more than enough memory. The image is 372KB, so nothing

RE: Unable to dump checkbox Values

2009-04-28 Thread Adrian Lynch
You don't say what's wrong, but from these lines: cfif chk_deletePage#count# neq '' cfdump var='#form.chk_deletePage#i##' /cfif I'm guessing it's throwing an error? cfif FORM[chk_deletePage#count#] neq '' cfdump var=#FORM['chk_deletePage' count']# /cfif Adrian

RE: Need some WSDL Help

2009-04-28 Thread Adrian Lynch
Why don't you post the problem here? -Original Message- From: Rick Shapley [mailto:rs...@cade1.com] Sent: 28 April 2009 18:03 To: cf-talk Subject: Need some WSDL Help We are trying to connect some Cold Fusion Generated Data to a WSDL file. Can anyone help? Please e-mail me at

RE: Set column value to NULL

2009-04-28 Thread Adrian Lynch
cfqueryparam cfsqltype=CF_SQL_VARCHAR value=#session.ID# null=true Adrian -Original Message- From: Pranathi Reddy [mailto:rk.prana...@gmail.com] Sent: 28 April 2009 18:06 To: cf-talk Subject: Set column value to NULL My image datatype is varbinary(max) and I am storing binary

OT - Purchasing .bm domain names

2009-04-26 Thread Adrian Lynch
I'm building a site for a charity in Bermuda and I've told them a great .bm domain name is available. Can anyone recommend a place to buy such domain names. I've done all my purchases through 123-reg.co.uk up until now. I've sent an email to bermudanic.bm but have not heard back from them yet.

RE: OT - Purchasing .bm domain names

2009-04-26 Thread Adrian Lynch
for not stating this in the first email I suppose... Adrian -Original Message- From: Ravi Gehlot [mailto:r...@ravigehlot.net] Sent: 26 April 2009 14:03 To: cf-talk Subject: Re: OT - Purchasing .bm domain names Adrian, Try a search on Google. Ravi. Adrian Lynch wrote: I'm

RE: OT - Purchasing .bm domain names

2009-04-26 Thread Adrian Lynch
://www.101domains.com/ Adrian Lynch wrote: You know after nine years doing this web stuff, that never occurred to me! I've done that, I've seen prices over $200. Short of hearing back from bermudanic.bm, I was hoping someone out there would know of a place that has them cheaper

RE: OT - Purchasing .bm domain names

2009-04-26 Thread Adrian Lynch
Oh really? That's interesting because they did quote the price in pounds. I'll get someone in Bermuda to have a look, see if it's cheaper for them. Cheers. Adrian -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: 26 April 2009 14:59 To: cf-talk Subject: Re: OT

RE: OT - Purchasing .bm domain names

2009-04-26 Thread Adrian Lynch
Cheers, that's all ok because the Bermudian charity will be purchasing it. I had just hoped I could find the best place for them to buy the domain. Adrian -Original Message- From: Ravi Gehlot [mailto:r...@ravigehlot.net] Sent: 26 April 2009 15:03 To: cf-talk Subject: Re: OT -

RE: Any JS wizards out there care to lend a hand?

2009-04-24 Thread Adrian Lynch
True, but then you can always do $(selector).get(0) or $(selector)[0] to get back to the DOM. Not ideal, but very useful. Adrian -Original Message- From: Andy Matthews [mailto:li...@commadelimited.com] Sent: 24 April 2009 14:32 To: cf-talk Subject: RE: Any JS wizards out there

RE: Creating a dynamic variable to for storage

2009-04-22 Thread Adrian Lynch
cfset VARIABLES[filename#i#] = filename Give that a go. Adrian -Original Message- From: Fawzi Amadu [mailto:abd...@gmail.com] Sent: 22 April 2009 19:35 To: cf-talk Subject: Creating a dynamic variable to for storage I have a loop within which I am trying to create a various

RE: CFIMAGE - File referencing

2009-04-20 Thread Adrian Lynch
Output #ExpandPath('/images/consumer/#Cnsmr_ProductIMAGE#) to see where you're pointing to, it'll be wrong. Adrian -Original Message- From: Fawzi Amadu [mailto:abd...@gmail.com] Sent: 20 April 2009 17:43 To: cf-talk Subject: CFIMAGE - File referencing I have my images for my

RE: CFIMAGE - for all formats

2009-04-17 Thread Adrian Lynch
This one got me too a while ago: http://cferror.org/error.cfm?errorID=1 Adrian -Original Message- From: Fawzi Amadu [mailto:abd...@gmail.com] Sent: 17 April 2009 12:26 To: cf-talk Subject: CFIMAGE - for all formats Hi, I am trying to resize images with CFIMAGE but when I

RE: show x words not x characters

2009-04-15 Thread Adrian Lynch
Treat the string as a list with any chars you see fit to be word delimiters, so spaces, tabs, full stops etc, then extract N elements from the left of the list. Adrian -Original Message- From: Glyn Jackson [mailto:glyn.jack...@newebia.co.uk] Sent: 15 April 2009 17:02 To: cf-talk

RE: how to handle in-appropriate image uploads

2009-04-09 Thread Adrian Lynch
It's scary what they're doing with images now! http://www.ted.com/index.php/talks/blaise_aguera_y_arcas_demos_photosynth.ht ml Adrian -Original Message- From: Ian Skinner [mailto:h...@ilsweb.com] Sent: 09 April 2009 17:59 To: cf-talk Subject: Re: how to handle in-appropriate image

RE: simple RegEx?

2009-04-02 Thread Adrian Lynch
Check the stackoverflow in this result: http://www.google.co.uk/search?hl=enq=find+roman+numerals+regexbtnG=Search meta= Adrian -Original Message- From: CF Developer [mailto:coldfus...@mindkeeper.net] Sent: 02 April 2009 13:00 To: cf-talk Subject: simple RegEx? This should be

RE: Button to support both IE and Firefox

2009-04-01 Thread Adrian Lynch
Try adding a 'return false' to the onclick. Adrian -Original Message- From: Don L [mailto:do...@yahoo.com] Sent: 01 April 2009 18:25 To: cf-talk Subject: Re: Button to support both IE and Firefox Yeah, you all, good catch on width= instead of width: also, there's a semicolon

RE: Cfform upload - Form Field contains no file

2009-03-31 Thread Adrian Lynch
Take the cfoutputs out of the cfinput tag. Adrian -Original Message- From: Fawzi Amadu [mailto:abd...@gmail.com] Sent: 31 March 2009 16:54 To: cf-talk Subject: Cfform upload - Form Field contains no file My code is throwing an error the baffles me. With the code below, when I

RE: scopes

2009-03-25 Thread Adrian Lynch
I'm not sure if you're saying it works or doesn't work. If it doesn't, try FORM.putAll(URL) or StructAppend(FORM, URL) to get the URL vars into the FORM scope. Adrian -Original Message- From: Brian Dumbledore [mailto:psteja2...@yahoo.com] Sent: 25 March 2009 16:31 To: cf-talk

RE: Create a thumbnail image from .flv video file once uploaded

2009-03-24 Thread Adrian Lynch
Not with ColdFusion, but you can use ffmpeg. Railo might also do it as it uses ffmpeg. Adrian -Original Message- From: Riaan Venter [mailto:riven1...@gmail.com] Sent: 24 March 2009 16:48 To: cf-talk Subject: Create a thumbnail image from .flv video file once uploaded Hi Is

RE: String to List?

2009-03-20 Thread Adrian Lynch
Message- From: Adrian Lynch [mailto:cont...@adrianlynch.co.uk] Sent: Thursday, March 19, 2009 6:20 PM To: cf-talk Subject: RE: String to List? You've gotta love this bit of code: REreplace(arguments.strInputString,(.)(.),\1#arguments.strDelimiter# \ 2#ar guments.strDelimiter#,ALL

RE: refresh session in ajax application

2009-03-20 Thread Adrian Lynch
Is that method in the same application the rest of your code? It might be that you're calling code that's running in another app? Adrian -Original Message- From: Richard White [mailto:rich...@j7is.co.uk] Sent: 20 March 2009 14:25 To: cf-talk Subject: refresh session in ajax

RE: Re: How is this done without evaluate()?

2009-03-20 Thread Adrian Lynch
Another way is to write them to a file and cfinclude it. But in this case I think Evaluate might look nicer... Adrian -Original Message- From: dsbr...@gmail.com [mailto:dsbr...@gmail.com] Sent: 20 March 2009 15:37 To: cf-talk Subject: Re: Re: How is this done without evaluate()?

RE: Suppress whitespace in CFC

2009-03-19 Thread Adrian Lynch
Set output=false in both the cfcomponent and cffunction tags. See if that makes a difference. Adrian -Original Message- From: John M Bliss [mailto:bliss.j...@gmail.com] Sent: 19 March 2009 15:22 To: cf-talk Subject: Suppress whitespace in CFC I've written a CFC responsible for

RE: Suppress whitespace in CFC

2009-03-19 Thread Adrian Lynch
Oh and in your Application.cfc too if there's any more whitespace. Adrian -Original Message- From: Adrian Lynch [mailto:cont...@adrianlynch.co.uk] Sent: 19 March 2009 15:30 To: cf-talk Subject: RE: Suppress whitespace in CFC Set output=false in both the cfcomponent

RE: String to List?

2009-03-19 Thread Adrian Lynch
Dip into Java first maybe then back to CF? cfset str = abcdefg cfset arr = str.split() cfdump var=#arr# !--- cfset ArrayDeleteAt(arr, 1) --- cfset str = ArrayToList(arr, ,) cfdump var=#str# Note the the first element in the array is an empty string. I thought ArrayDeleteAt() would take care

RE: String to List?

2009-03-19 Thread Adrian Lynch
I knew there'd be something in Java! -Original Message- From: Dominic Watson [mailto:watson.domi...@googlemail.com] Sent: 19 March 2009 22:03 To: cf-talk Subject: Re: String to List? This also does it quite nicely: cfset list = ArrayToList( myString.toCharArray() ) /

RE: String to List?

2009-03-19 Thread Adrian Lynch
You've gotta love this bit of code: REreplace(arguments.strInputString,(.)(.),\1#arguments.strDelimiter#\2#ar guments.strDelimiter#,ALL) lol Oh come on, that's funny! :OD Adrian -Original Message- From: Christophe Maso [mailto:zum...@hotmail.com] Sent: 19 March 2009 23:37 To:

RE: ColdFusion 8 Certification

2009-03-18 Thread Adrian Lynch
Ben said he's not doing a CF8 version of the book. 9 will be the next one. Adrian -Original Message- From: N K [mailto:neetukais...@gmail.com] Sent: 17 March 2009 20:13 To: cf-talk Subject: ColdFusion 8 Certification Hi All, It would be helpful if you all could give some

RE: scheduled tasks and performance, whats the impact on the server?

2009-03-18 Thread Adrian Lynch
It's got to depend on what's going on in them surely? Adrian -Original Message- From: Glyn Jackson [mailto:glyn.jack...@newebia.co.uk] Sent: 18 March 2009 11:46 To: cf-talk Subject: scheduled tasks and performance, whats the impact on the server? A quick question re scheduled

Images/Videos of exact size

2009-03-18 Thread Adrian Lynch
I need to test out an uploader, specifically the size limitations. I've made text files of the exact sizes needed but I was wondering about doing the same with images. Does anyone know how I can create JPGs and/or MPGs/AVIs/MOVs of a specific size? I'm guessing I need to take one and pad it with

RE: Images/Videos of exact size

2009-03-18 Thread Adrian Lynch
Sorry, should have clarified, file size rather than dimensions. Ta. Adrian -Original Message- From: Adrian Lynch [mailto:cont...@adrianlynch.co.uk] Sent: 18 March 2009 13:01 To: cf-talk Subject: Images/Videos of exact size I need to test out an uploader, specifically the size

RE: Eliminating repeated data in CFoutput field

2009-03-18 Thread Adrian Lynch
Order your query by eName then do something like this: cfoutput query=yourQuery group=eName #yourQuery.eName# cfoutput #yourQuery.aTitle# #yourQuery.cCategory# /cfoutput /cfoutput You'll need to tweak it to fit in your table layout mind.

RE: Time-our on compute intensice page

2009-03-17 Thread Adrian Lynch
Put cfsetting requesttimeout=number of seconds here in your page. Adrian -Original Message- From: Ron Gruner [mailto:webmas...@gruner.com] Sent: 17 March 2009 10:50 To: cf-talk Subject: Time-our on compute intensice page I'm executing a compute-intensive page that has 500

RE: Sort database records as a human not a computer.

2009-03-16 Thread Adrian Lynch
If you'd like to keep things simple, create a new column and enter the title as you'd like it to be ordered by. Would love to hear if someone has an idea about this also. Adrian -Original Message- From: Ian Skinner [mailto:h...@ilsweb.com] Sent: 16 March 2009 14:27 To: cf-talk

RE: Anybody have exerience with KickAssVPS.com?

2009-03-16 Thread Adrian Lynch
Doing any PDF or image creation/manipulation? If so how are you finding it for speed? Adrian -Original Message- From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent: 16 March 2009 16:04 To: cf-talk Subject: RE: Anybody have exerience with KickAssVPS.com? I've kinda lost

RE: Thinking of a career change.. how does one get into Technical Recruiting..

2009-03-13 Thread Adrian Lynch
Seems we all have similar experiences. Would love to hear what a recruiter has to say! Adrian -Original Message- From: Scott Stewart [mailto:sstwebwo...@bellsouth.net] Sent: 12 March 2009 19:36 To: cf-jobs-talk Subject: Thinking of a career change.. how does one get into Technical

RE: IOException while sending message

2009-03-12 Thread Adrian Lynch
Permissions have changed? Run out of disk space? Adrian -Original Message- From: Richard White [mailto:rich...@j7is.co.uk] Sent: 12 March 2009 13:26 To: cf-talk Subject: IOException while sending message hi our cf emails were getting sent fine but they are now they are not

RE: What *exactly* does cgi.server_name return.

2009-03-12 Thread Adrian Lynch
calpip-devsite/index.cfmcalpip-devsite calpip.cdpr.ca.gov/index.cfmcalpip.cdpr.ca.gov calpip-devsite.inisde.cdpr.ca.gov/index.cfm calpip-devsite.inisde.cdpr.ca.gov 10.104.106.113/index.cfm10.104.106.113

  1   2   3   4   5   6   7   8   9   10   >