Re: CF Blog shootout

2005-05-14 Thread Eric Dawson
how about voice dictation and text transcription. w/ workflow for editing? - Original Message - From: Ray Champagne [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, May 12, 2005 4:38 PM Subject: Re: CF Blog shootout Can we get Blog Software that can read your

CF and Hungarian Notation - a better solution

2005-05-14 Thread I-Lin Kuo
A recent blog entry by Sean Corfield has led to this thought: http://www.corfield.org/blog/?mode=entryentry=D1CB9656-0284-4F53-209C8F9F6159FB8D It seems to me that the primary argument given for the use of Hungarian notation to signify data types is to allow the naming convention to compensate

Re: Man, this is so OT...

2005-05-14 Thread Cutter (CF-Talk)
Black Will Tomlinson wrote: Don't attack me for posting this question. Just trust me. What color teeshirts do most of you like to wear? And if you had a choice of black or white, which would you prefer? Thanks! Will

Re: css positioning HELPPPPPPPPPPPPPPPPPPPPPPPPPP

2005-05-14 Thread Russell Patterson
I am not a CSS guy, but you might try moving the div id=rightwrap/div and place it above the div=mainContent /div. Russell - Original Message - From: dave [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Friday, May 13, 2005 9:14 PM Subject: css positioning

JS Question

2005-05-14 Thread Andy Ousterhout
I would like to be able to display alternate text when a User Mouse Over's a submit button and have the text displayed similar to how Alt Text works with links. Now could I do this? Andy ~| Find out how CFTicket can increase

RE: JS Question

2005-05-14 Thread Ewok
Use the title attribute for the tool tip If you are wanting the actual text on the button changed.. use Onmouseover=this.value='Mouse On Danielson'; OnMouseout=this.value='Mouse Off Danielson'; -Original Message- From: Andy Ousterhout [mailto:[EMAIL PROTECTED] Sent: Saturday, May 14,

RE: css positioning HELPPPPPPPPPPPPPPPPPPPPPPPPPP

2005-05-14 Thread Dawson, Michael
I agree with losing the dotted lines. When you scroll, they dotted lines end up being solid in some places and sparsely dotted. This is a video issue, but it's kind of annoying. M!ke ~| Discover CFTicket - The leading

RE: JS Question

2005-05-14 Thread Andy Ousterhout
Thanks. -Original Message- From: Ewok Use the title attribute for the tool tip If you are wanting the actual text on the button changed.. use Onmouseover=this.value='Mouse On Danielson'; OnMouseout=this.value='Mouse Off Danielson'; -Original Message- From: Andy Ousterhout

SOT: Style problems

2005-05-14 Thread Cutter (CF-Talk)
Sorry for the OT, but I've never seen this one before. In all of my pages I generally call two style sheets, one with site wide global style properties (background color, font attributes, menu block location, etc.) and one with page specific element style specs. I've been developing a new

Re: CF and Hungarian Notation - a better solution

2005-05-14 Thread Sean Corfield
Hmm, now that's an interesting idea... I haven't really gotten into the innards of CFEclipse yet but abck in the day I did a lot of work on code analyzers that tracked variable assignments and could dynamically deduce types. Maybe it's time to dust down that knowledge and start trying to figure

ot: transparent png for ie hack

2005-05-14 Thread dave
anyone know of one that actually works? ~Dave the disruptor~ ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners/view.cfm?bannerid=48 Message:

RE: transparent png for ie hack

2005-05-14 Thread Ewok
Simply put... HAH! Do let me know if you find one! I am so tired of hacking up alternate styles and images to get a site looking the same in IE as it does in FF! A lot of the time, I've been able to use style filters to get what I'm looking for maybe you could try some of those? Opacity maybe?

RE: transparent png for ie hack

2005-05-14 Thread dave
I have a few i am gunna try, this one looks interesting, written in php, if it works maybe we could rewrite it in cfm. http://koivi.com/ie-png-transparency/ ~Dave the disruptor~ From: Ewok [EMAIL PROTECTED] Sent: Saturday, May 14, 2005 5:38 PM To:

RE: transparent png for ie hack

2005-05-14 Thread Ewok
Shouldn’t be too hard to turn this... img src=0_1.png style=width: 250px; height: 400px; Into this... img src=transpxl.gif style=width: 250px; height: 400px; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='0_1.png', sizingMethod=scale); / I'll have to play later. I'm being

RE: transparent png for ie hack

2005-05-14 Thread Ewok
That thing works great Dave! If I didn’t suck so bad at regex's I'd give it a go in CF :/ Has the RegEx Ninja wrote a book yet? hint hint (Where is Ben anyway?) Okay, okay, gotta go... just hope they have more beer wherever it is that I'm dragged to... -Original Message- From: dave

RE: transparent png for ie hack

2005-05-14 Thread dave
the php one? how did you call that in the cfm template? ~Dave the disruptor~ From: Ewok [EMAIL PROTECTED] Sent: Saturday, May 14, 2005 8:28 PM To: CF-Talk cf-talk@houseoffusion.com Subject: RE: transparent png for ie hack That thing works great Dave!

Re: CF and Hungarian Notation - a better solution

2005-05-14 Thread I-Lin Kuo
I wasn't talking about CFEclipse, but rather Eclipse as a Java IDE. While you could possibly deduce types in CF dynamically just from the syntax, for Java the JDT is actually doing continuous compilation in the background, so it actually knows and it doesn't have to deduce. I haven't used

RE: transparent png for ie hack

2005-05-14 Thread Ewok
I didn't. I tried it out in a php page -Original Message- From: dave [mailto:[EMAIL PROTECTED] Sent: Saturday, May 14, 2005 8:34 PM To: CF-Talk Subject: RE: transparent png for ie hack the php one? how did you call that in the cfm template? ~Dave the disruptor~

Re: transparent png for ie hack

2005-05-14 Thread Aaron DC
Could you have the following in your cfml page: img src=somePHPpage.php?image=SomeImageName ? - Original Message - From: Ewok [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Sunday, May 15, 2005 12:32 PM Subject: RE: transparent png for ie hack I didn't. I tried it

RE: transparent png for ie hack

2005-05-14 Thread dave
cant you call a php page through cfhttp? I seam to recall being able to run a php page but this script calls for it once at beginning and again at end. None of the others are working probably because I am using 32 bit pngs and not 24. Leave it up to m$ to continue to screw simple things up

Re: transparent png for ie hack

2005-05-14 Thread dave
~Dave the disruptor~ From: Aaron DC [EMAIL PROTECTED] Sent: Saturday, May 14, 2005 10:49 PM To: CF-Talk cf-talk@houseoffusion.com Subject: Re: transparent png for ie hack Could you have the following in your cfml page: ? - Original Message -

Re: CF and Hungarian Notation - a better solution

2005-05-14 Thread Sean Corfield
On 5/14/05, I-Lin Kuo [EMAIL PROTECTED] wrote: I wasn't talking about CFEclipse, but rather Eclipse as a Java IDE. The Java part of the IDE is irrelevant to CF development, that's why I was suggesting the analysis be added to the CFE plugin. I have built tools that do the sort of source code

Re: transparent png for ie hack

2005-05-14 Thread Aaron DC
Couldnt agree more, Dave. - Original Message - From: dave [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Sunday, May 15, 2005 1:05 PM Subject: Re: transparent png for ie hack ~Dave the disruptor~ From: Aaron DC [EMAIL

Re: transparent png for ie hack

2005-05-14 Thread dave
hum, it didnt post my message. ~Dave the disruptor~ From: Aaron DC [EMAIL PROTECTED] Sent: Sunday, May 15, 2005 1:11 AM To: CF-Talk cf-talk@houseoffusion.com Subject: Re: transparent png for ie hack Couldnt agree more, Dave. - Original Message