<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>ColdFusion Muse - CFMX 7 Flash Forms</title>
			<link>https://coldfusionmuse.com/index.cfm</link>
			<description>Musings and Other Things from CF Guru Mark Kruger</description>
			<language>en-us</language>
			<pubDate>Mon, 08 Jun 2026 22:03:48 -0500</pubDate>
			<lastBuildDate>Fri, 16 Dec 2005 18:41:00 -0500</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>mkruger@cfwebtools.com</managingEditor>
			<webMaster>mkruger@cfwebtools.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>mkruger@cfwebtools.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			<itunes:image href="" />
			<image>
				<url></url>
				<title>ColdFusion Muse</title>
				<link>https://coldfusionmuse.com/index.cfm</link>
			</image>
			<itunes:explicit>no</itunes:explicit>
			
			<item>
				<title>File Sizes or Form Limitations on Flash Forms</title>
				<link>https://coldfusionmuse.com/index.cfm/2005/12/16/flashform.file.size</link>
				<description>
				
				&lt;p style=&quot;margin-left: 25px; padding: 5px; border-left: 3px solid #CCCCCC;&quot;&gt;
	&lt;strong&gt;Ask a Muse Asks:&lt;/strong&gt;&lt;br&gt;
	Do you know if there are limitations to either the file-size or the number of fields in a flashform? 
&lt;/p&gt;
&lt;p&gt;
	There is indeed a limitation to the &quot;flex compiler&quot; that is included with CFMX.  The limit is either 32k or 64k depending on who you ask. I cannot find (off hand) the actual MM document that describes the limit. The limit is to the amount of &quot;compiled actionscript&quot;. It is affected by pretty much everything you do in the CFFORM tag. Even adding a style can cause a change in the size.&lt;/p&gt;  [More]
				</description>
				
				<category>CFMX 7 Flash Forms</category>				
				
				<pubDate>Fri, 16 Dec 2005 18:41:00 -0500</pubDate>
				<guid>https://coldfusionmuse.com/index.cfm/2005/12/16/flashform.file.size</guid>
				
				
			</item>
			
			<item>
				<title>Flash Form Illegal Actionscript Part 2 - Not even Comments</title>
				<link>https://coldfusionmuse.com/index.cfm/2005/8/30/flash form limitation 2</link>
				<description>
				
				&lt;p&gt;
	To follow up on my previous post regarding &lt;a href=&quot;http://mkruger.cfwebtools.com/index.cfm?mode=alias&amp;alias=flash%20form%20limitation&quot;&gt;Coldfusion Flash Forms Limitation Too Draconian&lt;/a&gt;. Both &lt;a href=&quot;http://www.sustainablegis.com/blog/cfg11n/index.cfm?mode=entry&amp;entry=D38BCCAE-20ED-7DEE-2ACA05535267FC6C&quot;&gt;Paul Hastings&lt;/a&gt; and &lt;a href=&quot;http://www.ryanguill.com/blog/index.cfm?mode=entry&amp;entry=9CC49997-40CA-6D1C-8AE1F78717FA3812&quot;&gt;Ryan Guill&lt;/a&gt; have blogs on the topic that add additional information. Paul added in an list post that even actionscript comments are disallowed by the parser. So in other words if you do the following:

&lt;div class=&quot;code&quot;&gt;//new variable...&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;somevar = &lt;FONT COLOR=BLUE&gt;&quot;&quot;&lt;/FONT&gt;;&lt;br&gt;
&lt;FONT COLOR=GRAY&gt;&lt;I&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;// delete button ...&lt;/I&gt;&lt;/FONT&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;...some other code...&lt;/div&gt;
The flex compiler will complain that the words are not &quot;legal actionscript&quot;. That&apos;s a bit ridiculous. I&apos;m betting that CF does a pre-compile &quot;dumb&quot; check of the code snippet string using a regex before it&apos;s even handed off to the flex compiler - that way they didn&apos;t even have to install a modified version of flex.
&lt;/p&gt; 
				</description>
				
				<category>CFMX 7 Flash Forms</category>				
				
				<pubDate>Tue, 30 Aug 2005 10:52:00 -0500</pubDate>
				<guid>https://coldfusionmuse.com/index.cfm/2005/8/30/flash form limitation 2</guid>
				
				
			</item>
			
			<item>
				<title>Coldfusion Flash Forms Limitation Too Draconian (film at 11:00)</title>
				<link>https://coldfusionmuse.com/index.cfm/2005/8/29/flash form limitation</link>
				<description>
				
				&lt;p&gt;
	You probably know that when you use flash forms in Coldfusion MX 7 you are not allowed to use the word &quot;new&quot; in any of the actionscript event handlers you choose to create.  For example, you could not write &quot;myvar = new Object();&quot; in your actionscript. If you tried, you would get a message saying that it was an &quot;illegal use of actionscript&quot;.  What you may &lt;em&gt;not&lt;/em&gt; know is that you cannot even use the &quot;new&quot; keyword as a string! 
&lt;/p&gt;  [More]
				</description>
				
				<category>CFMX 7 Flash Forms</category>				
				
				<pubDate>Mon, 29 Aug 2005 19:16:00 -0500</pubDate>
				<guid>https://coldfusionmuse.com/index.cfm/2005/8/29/flash form limitation</guid>
				
				
			</item>
			
			<item>
				<title>Client Side and Server Side Validation - a case for both</title>
				<link>https://coldfusionmuse.com/index.cfm/2005/7/6/validation</link>
				<description>
				
				&lt;p&gt;
	When it comes to form elements, which kind of validation is appropriate? The new CFFORM with the flash format comes with very nice client side validation with highlights and feedback. Is that enough? Should you validate on the client using JavaScript or should you just stick with server side validation?  In my opinion you should do both - but if you have to cut corners, make sure and validate &lt;em&gt;on the server&lt;/em&gt;. Note, by &lt;em&gt;validation&lt;/em&gt; I&apos;m referring to checking values of a form for the correct type or requirements. For example, you might want to make sure an Social Security Number is 9 digits, or a phone number is 10 digits, or that an email address has been filled in and is the correct format. You get the idea. Here are the pros and cons of both approaches.
&lt;/p&gt;  [More]
				</description>
				
				<category>CFMX 7 Flash Forms</category>				
				
				<category>Coldfusion Tips and Techniques</category>				
				
				<pubDate>Wed, 06 Jul 2005 13:14:00 -0500</pubDate>
				<guid>https://coldfusionmuse.com/index.cfm/2005/7/6/validation</guid>
				
				
			</item>
			
			<item>
				<title>Flex Styles in CFMX Flash Forms</title>
				<link>https://coldfusionmuse.com/index.cfm/2005/5/20/flashFormFlexStyle</link>
				<description>
				
				&lt;p&gt;Figuring out the nuances of formatting and positioning flash forms in CFMX is a challenge - especially when you first start out. I found this link to the &lt;a href=&quot;http://www.markme.com/mc/archives/FlexStyleExplorer.html&quot;&gt;flex style explorer&lt;/a&gt; yesterday on an MM blog by &lt;a href=&quot;http://www.markme.com/jd/archives/007754.cfm&quot;&gt;John Dowell&lt;/a&gt;. We are not involved in a flex project at the moment - although I have installed and played with te flex server and IDE a little bit. Even so I found this to ap to be very useful. You might know that the flash forms that are a part of CFMX 7 are created by a restricted version of the flex server. Many of the styles listed and explored by the explorer ap are available within the flash forms of a cfmx server. In fact, you can copy styles out of the flex style explorer directly into the styles attribute of a cf form item and it will work (if it&apos;s one of the valid flash form style attributes).&lt;/p&gt;  [More]
				</description>
				
				<category>CFMX 7 Flash Forms</category>				
				
				<pubDate>Fri, 20 May 2005 09:04:00 -0500</pubDate>
				<guid>https://coldfusionmuse.com/index.cfm/2005/5/20/flashFormFlexStyle</guid>
				
				
			</item>
			
			<item>
				<title>Flash UI and dynamic Sizing</title>
				<link>https://coldfusionmuse.com/index.cfm/2005/5/19/flashResize</link>
				<description>
				
				&lt;p&gt;
Although I love flash for UI&apos;s, there are things about it that are tough to work around.  One of them is the &quot;fixed size&quot; nature of the medium. When working with a multi-paned Flash object I often find myself writing javascript functions to resize the movie container based on the amount of data in the pane.  I hate having tons of empty space in pane &quot;A&quot; just because pane &quot;B&quot; needs the real-estate. Or having to size the movie quite long because one of the panes is extra long.  I want the embeded object to work like a really well-made CSS site. I want to &quot;fix&quot; the size of some things (navigation, info or helper clips), but make the &quot;content area&quot; fluid - like a good three column layout (is there such a thing - ha). It would be great if the publish options simply included an &quot;auto-size&quot; option that embeded the necessary JS in the page. Maybe an item for the wish list eh?
&lt;/p&gt; 
				</description>
				
				<category>CFMX 7 Flash Forms</category>				
				
				<category>Flash Remoting</category>				
				
				<pubDate>Thu, 19 May 2005 16:17:00 -0500</pubDate>
				<guid>https://coldfusionmuse.com/index.cfm/2005/5/19/flashResize</guid>
				
				
			</item>
			
			<item>
				<title>Adding an image to a CFGRID</title>
				<link>https://coldfusionmuse.com/index.cfm/2005/5/11/flashGridImg</link>
				<description>
				
				&lt;p&gt;Silly me, I assumeed you couldn&apos;t insert images into a flash CFGRID. I stumbed across this example on an excellent blog by &lt;a href=&quot;http://www.asfusion.com/blog/&quot;&gt;As Fusion&lt;/a&gt; (laura Arguello and Nahuel Foronda).  Apparently you can insert thumbnails right into the grid using an HTML element. That&apos;s a new one on me. The trick is to bind a column in the grid to a CfFormItem. As always, someone will always find a way.
&lt;/p&gt;

&lt;div class=&quot;code&quot;&gt;&lt;FONT COLOR=MAROON&gt;&amp;lt;cfform name=&lt;FONT COLOR=BLUE&gt;&quot;myform&quot;&lt;/FONT&gt; format=&lt;FONT COLOR=BLUE&gt;&quot;Flash&quot;&lt;/FONT&gt; height=&lt;FONT COLOR=BLUE&gt;&quot;450&quot;&lt;/FONT&gt; width=&lt;FONT COLOR=BLUE&gt;&quot;600&quot;&lt;/FONT&gt; &amp;gt;&lt;/FONT&gt;&lt;br&gt;
 &lt;FONT COLOR=MAROON&gt;&amp;lt;cfgrid name= &lt;FONT COLOR=BLUE&gt;&quot;grid&quot;&lt;/FONT&gt; query=&lt;FONT COLOR=BLUE&gt;&quot;properties&quot;&lt;/FONT&gt; height=&lt;FONT COLOR=BLUE&gt;&quot;200&quot;&lt;/FONT&gt;&amp;gt;&lt;/FONT&gt;                                       &lt;br&gt;
 &lt;FONT COLOR=MAROON&gt;&amp;lt;cfgridcolumn name=&lt;FONT COLOR=BLUE&gt;&quot;city&quot;&lt;/FONT&gt; header=&lt;FONT COLOR=BLUE&gt;&quot;City&quot;&lt;/FONT&gt;&amp;gt;&lt;/FONT&gt;&lt;br&gt;
     &lt;FONT COLOR=MAROON&gt;&amp;lt;cfgridcolumn name=&lt;FONT COLOR=BLUE&gt;&quot;photo&quot;&lt;/FONT&gt; header=&lt;FONT COLOR=BLUE&gt;&quot;Photo&quot;&lt;/FONT&gt;&amp;gt;&lt;/FONT&gt;&lt;br&gt;
  &lt;FONT COLOR=MAROON&gt;&amp;lt;/cfgrid&amp;gt;&lt;/FONT&gt;&lt;br&gt;
   &lt;FONT COLOR=GRAY&gt;&lt;I&gt;&amp;lt;!--- show the picture in an html cfforitem&lt;br&gt;
       paragraph is added because Firefox sometimes fail to load the picture ---&amp;gt;&lt;/I&gt;&lt;/FONT&gt;                  &lt;br&gt;
   &lt;FONT COLOR=MAROON&gt;&amp;lt;cfformitem type=&lt;FONT COLOR=BLUE&gt;&quot;html&quot;&lt;/FONT&gt; height=&lt;FONT COLOR=BLUE&gt;&quot;200&quot;&lt;/FONT&gt; width=&lt;FONT COLOR=BLUE&gt;&quot;300&quot;&lt;/FONT&gt; &lt;br&gt;
            bind=&lt;FONT COLOR=BLUE&gt;&quot;{&apos;&lt;FONT COLOR=NAVY&gt;&amp;lt;p&amp;gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT COLOR=NAVY&gt;&lt;FONT COLOR=PURPLE&gt;&amp;lt;img src=\&apos;images/&apos;+grid.selectedItem.photo+ &apos;\&apos;&amp;gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT COLOR=NAVY&gt;&amp;lt;/p&amp;gt;&lt;/FONT&gt;&apos;}&quot;&lt;/FONT&gt;&amp;gt;&lt;FONT COLOR=MAROON&gt;&amp;lt;/cfformitem&amp;gt;&lt;/FONT&gt;&lt;br&gt;
&lt;FONT COLOR=MAROON&gt;&amp;lt;/cfform&amp;gt;&lt;/FONT&gt;&lt;/div&gt; 
				</description>
				
				<category>CFMX 7 Flash Forms</category>				
				
				<category>Coldfusion MX 7</category>				
				
				<category>Using Coldfusion Tags</category>				
				
				<pubDate>Wed, 11 May 2005 13:56:00 -0500</pubDate>
				<guid>https://coldfusionmuse.com/index.cfm/2005/5/11/flashGridImg</guid>
				
				
			</item>
			
			<item>
				<title>Flash Form Prototyping using CFFORM</title>
				<link>https://coldfusionmuse.com/index.cfm/2005/5/11/flashFormProto</link>
				<description>
				
				&lt;p&gt;We&apos;ve begun using the flash form of the cfform tag to prototype UI&apos;s that will eventually be built in flash.  While you cannot duplicate the functionality of a flash UI with remoting and listeners etc., you can get pretty close to duplicating the data and UI display. Let me explain.&lt;/p&gt;  [More]
				</description>
				
				<category>CFMX 7 Flash Forms</category>				
				
				<pubDate>Wed, 11 May 2005 09:42:00 -0500</pubDate>
				<guid>https://coldfusionmuse.com/index.cfm/2005/5/11/flashFormProto</guid>
				
				
			</item>
			
			<item>
				<title>Getting a reference to a flash form in Javascript</title>
				<link>https://coldfusionmuse.com/index.cfm/2005/5/10/flasformJS</link>
				<description>
				
				&lt;p&gt;It&apos;s trying not to have adequate access to the client side movie produced by a flash form.  For example, I Have a large number of panels in an accordian pane and I want to hide or unhide them based on user preferences. I also want to resize the form movie as the panels are &quot;hidden&quot; to make better use of the visible area of the screen.  I wanted to be able to change the &quot;height&quot; and &quot;width&quot; parameters of the movie.&lt;/p&gt;
&lt;p&gt;The problem is, that while the &quot;NOSCRIPT&quot; block has an ID parameter to it, the &quot;document.write&quot; block that outputs the object tag does &lt;em&gt;not have&lt;/em&gt; and ID parameter attached to it (in spite of my putting ID=&quot;blah&quot; in the CFFORM tag).  That seems like a bug. Anyway, I went about trying to find another way to access the properties of the embeded movie.  I came up with the following:
&lt;/p&gt;  [More]
				</description>
				
				<category>CFMX 7 Flash Forms</category>				
				
				<category>Coldfusion MX 7</category>				
				
				<category>Using Coldfusion Tags</category>				
				
				<pubDate>Tue, 10 May 2005 16:23:00 -0500</pubDate>
				<guid>https://coldfusionmuse.com/index.cfm/2005/5/10/flasformJS</guid>
				
				
			</item>
			
			<item>
				<title>Flash Form Debugging</title>
				<link>https://coldfusionmuse.com/index.cfm/2005/5/10/flashformdebugging</link>
				<description>
				
				&lt;p&gt;While I&apos;m enjoying the power and especially the &quot;look and feel&quot; of the new flash forms interface I&apos;m are a little frustrated with the lack of good debugging information. It would be nice if additional information could be ported into the Coldfusion debugging info at the bottom - or a perhaps a log file could be written.  It&apos;s very hard to know what&apos;s going on. When a flash form is long it takes a while to compile anyway. Because I don&apos;t know how long it &lt;em&gt;should&lt;/em&gt; take I end up sitting on my hands waiting for the little &quot;initializing&quot; to appear. If it doesn&apos;t I assume something has gone wrong internally and start looking at the code. That&apos;s not exactly slam dunk debugging.&lt;/p&gt; 
				</description>
				
				<category>CFMX 7 Flash Forms</category>				
				
				<category>Coldfusion MX 7</category>				
				
				<category>Using Coldfusion Tags</category>				
				
				<pubDate>Tue, 10 May 2005 10:10:00 -0500</pubDate>
				<guid>https://coldfusionmuse.com/index.cfm/2005/5/10/flashformdebugging</guid>
				
				
			</item>
			
			<item>
				<title>Flash Forms and the local shared object</title>
				<link>https://coldfusionmuse.com/index.cfm/2005/5/6/sharedObj</link>
				<description>
				
				&lt;p&gt;Coldfusion MX version 7 gives us a great new feature when using &amp;lt;CFFORM&amp;gt;.  It renders the forms in a flash form. The 
look is clean and the result is well behaved and intuitive. We&apos;ve had a lot of fun creating prototypes using flash form grids 
and the accordian pane or tabbed interface. It&apos;s great to be able to create a form with tabs that doesn&apos;t require round trips
 to the server and has solid validation routines. Along the way we hit a couple of challenges and came up with a few solutions ....&lt;/p&gt;  [More]
				</description>
				
				<category>CFMX 7 Flash Forms</category>				
				
				<category>Coldfusion MX 7</category>				
				
				<pubDate>Fri, 06 May 2005 18:09:00 -0500</pubDate>
				<guid>https://coldfusionmuse.com/index.cfm/2005/5/6/sharedObj</guid>
				
				
			</item>
			</channel></rss>