Hi, I've a problem with a flash-form. 1st: theres always a 2pixel-margin around the form, when I set the style-attributes 'topMargin' to -2 it is ok at the top, does anyone know the problem? (running cfmx7 and installed the latest updater today, don't know if the prob appeared before..)
2nd: when I set the style-attribute color of the formgroup panel to white, all the labels inside the panel are white, too. Trying to set the color-attrib of the groups and input-elements doesnt work, every label is white know :) some help would be great. btw: thanks for the mails about my question about styles in xml-forms.. Using the system-styles I've always problems getting the layout I want, so I thought about diving into xslt and spend time creating my own styles but I'm not sure if I'll do so. (completely new in xsl) A member in a german cfug-list wrote he uses terraform again after looking at the xml-forms (I think it seemed to be too much work at the first time) http://www.electricsheep.co.nz/products/terraform/comparison.cfm Anyone else using terraform here? flashFormProblemCode: ------------------------------- <cfscript> strFormStyles=structNew(); strFormStyles.form='marginTop:0;marginBottom:0;background-color:##000000;'; strFormStyles.panelA='shadowDistance:1;panelBorderStyle:roundCorners;headerColors:##2368C4,##3197F1;headerHeight:24;color:##ffffff;'; </cfscript> <cfform format="flash" skin="haloblue" action="" style="#strFormStyles.form#" height="250" timeout="0" width="350" id="formtaf"> <cfformgroup type="panel" label="Artikel weiterempfehlen" style="#strFormStyles.panelA#" > <cfformgroup type="vertical" style="color:##000000;"> <cfinput style="color:##000000;" type="text" name="emailsender" label="Absender" validate="email" size="20" maxlength="100" required="true" message="Ungültige Email-Adresse (Absender)" /> <cfinput type="text" name="emailreceiver" label="Empfänger" validate="email" size="20" maxlength="100" required="true" message="Ungültige Email-Adresse (Empfänger)" /> <cfinput type="text" name="rotitle" readonly value="#request.productdetails.title#" size="20" label="Artikel" /> <cftextarea name="message" rows="5" cols="20" label="Mitteilung" /> </cfformgroup> <cfformgroup type="horizontal"> <cfinput type="submit" name="go" value="Absenden" /> </cfformgroup> </cfformgroup> </cfform> -- Sebastian Mork <[EMAIL PROTECTED]> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229502 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

