Re: RE: New Macromedia.com launched!

2003-03-05 Thread mike . wokasch
l use www.google.com without worrying about whether or not news.google.com. No one has a perfect launch, but this isn't even close. Mike Wokasch P.S. I'm done complaining. What's done is done, and hopefully they fix their problems sooner than they

Re: Re: New MM.com

2003-03-05 Thread mike . wokasch
And that matters why exactly? More to the point, it could also mean that the percentage could be higher. It's still not an excuse for it not working or validating. Mike Wokasch ** > One thing to keep in mind is that while Opera may have 10% of th

Re: Re: New MM.com

2003-03-05 Thread mike . wokasch
Buried under accessibility, unfortunately. Mike Wokasch ** > Wednesday, March 5, 2003, 7:02:08 AM, Jochem van Dieten wrote: > > > Overall, I find the site rather slow when using the Flash version. ... > > I agree. I really dislike the new

Re: RE: New Macromedia.com launched!

2003-03-05 Thread mike . wokasch
or a company focused on creating web tools, it should be an example. Frankly, There's no excuse. Mike Wokasch ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoff

Whitespace management in MX

2003-01-17 Thread mike . wokasch
component is called, the whitespace is left in place and is not picked up by the whitespace management. This means that I have to do around processing chunks, and avoid using inlined CFC calls altogether. For the most part, that's fine, but there are cases when I'd rather just do it inl

CFMX Linux Whitespace Management problem

2003-01-08 Thread mike . wokasch
lse experienced this problem? Thanks Mike Wokasch UW-Extension. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&

Re: Re: CFC Addressing

2002-11-25 Thread mike . wokasch
That's not totally true. You can only sort of address CFCs relatively. You can't for example go up a directory, i.e. ../CFCs/ Which frankly, is rather annoying. ** > You can access CFCs just like you would access custom tags. > > They can be put in the c

Re: Re: Flash Remoting bug, feature.... in variable persistence

2002-11-21 Thread mike . wokasch
Sean - I knew you were going to say that, however, I can not help but feel that that execution model is inherently evil, and does nothing to help code reuse. Personally, I do not see much use for Remoting as a webservice, at least beyond fundamental operations. By building a fascade a CFC is fo

Re: Flash Remoting bug, feature.... in variable persistence

2002-11-20 Thread mike . wokasch
trace("setvar: " + result); > } > > > Unlike ColdFusion, this returns the following: > getvar: 2 > setvar: 3 > getvar: 2 > > To me this indicates the Flash takes the time to reload the CFC everytime Basically >doing powerful than doing the followin

Flash Remoting bug, feature.... in variable persistence

2002-11-20 Thread mike . wokasch
le.cfc?method=getvar http://localhost/simple.cfc?method=setvar&value=3 http://localhost/simple.cfc?method=getvar This cannot possibly be the expected behavior. I, of course, could code around this, but why? Thanks Mike Wokasch

Re: IsDefined() bug?

2002-10-25 Thread Mike Wokasch
Todd Why not just do: ? variable[] isn't really a true variable name. Think of [] as an operator like + and -. I think that MX fixes that "bug." Mike Wokasch At 09:30 AM 10/25/2002 -0400, you wrote: >Is this not possible? > > > >#FORM["mytest"]# >

Re: How to remove URL references from printed pages

2002-10-25 Thread Mike Wokasch
Rick - You have to do that on the client side. They are options, usually under printing. You can't do anything about it from the page, at least not to my knowledge. Mike Wokasch UW-Extension At 08:33 AM 10/25/2002 -0400, you wrote: >Hello all. > >I'm printing some report di

Re: OT: Javascript ?

2002-10-23 Thread Mike Wokasch
Deanna - Just use an onclick or use an [a href="javascript: unCheckAll()"] [img][/a] to handle that. Mike Wokasch UW-Extension At 12:47 PM 10/23/2002 -0500, you wrote: >Hi Folks, >With the following code, I can check or uncheck all the checkboxes on a page >IF I use an input

Re: formatting #MonthasString

2002-10-18 Thread Mike Wokasch
Tim - try: #MonthAsString(month)# --- there is no masking. If you really want to mask: #DateFormat(CreateDate(2002, month, 1), "MM")# Mike Wokasch UW-Extension more coldfusion help Efnet #ColdFusion At 12:30 PM 10/18/2002 -0400, you wrote: >Is there a way to format a number va

RE: basic calendar question

2002-10-15 Thread Mike Wokasch
ted are: id and date. Everything else is in related tables. Mike Wokasch UW-Extension At 02:21 PM 10/15/2002 -0400, you wrote: >Mike it just occurred to me...what if you have an event that runs for a >couple of months? Does the calendar administrator have to enter the >same information

Re: basic calendar question

2002-10-15 Thread Mike Wokasch
s scheme also makes determining exactly which events occur on a particular day difficult in SQL. Mike Wokasch At 01:25 PM 10/15/2002 -0400, you wrote: >I am creating a calendar of events database & CF app from scratch.. An >initial question that comes to mind is.what is the best way to stor

Re: JS within CFscript

2002-09-26 Thread Mike Wokasch
Kris - Well, you can have CFScript write the javascript that will do this. However, do not get the two confused. CFScript is still server side scripting. <cfscript> writeOutput("alert('hello world')"); </cfscript> Mike Wokasch UW-Extension At 10:

RE: Ben Doom (was please do my work for me)

2002-09-26 Thread Mike Wokasch
Brian - It's a regular expression. It says, "find a part of the string that starts with 'pcode=' and is followed by 0 or many characters that are you & which could be followed by anthing else. How's that? Mike Wokasch UW-Extension At 09:06 AM 9/26/2002 -0500,