Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
nauta #1
Skin not HaloBlue
The skin does not seem to work with with the following code. If I use
tabnavigator it does work, but cfformgroup panel it does not
What might I be doing wrong?
<cfform action="casesearchresult.cfm"
method="POST"
name="requesthelpdesk"
format="Flash"
height="500"
width="610"
skin="HaloBlue">
<cfformgroup type="panel" label="Helpdesk">
<cfformitem type="html"><a href="request.cfm">Submit a Help Desk
Request</a></cfformitem>
<cfformitem type="text">Look up a Help Desk request status</cfformitem>
<cfinput type="text" name="request__casenumber" label="Enter Case Number">
</cfformgroup>
<cfinput type = "submit" name="submit" width="100" value = "Show
Results">
</cfform>
nauta Guest
-
Quicktime Skin?
Hello everyone, Quick question... is there a way to create a custom skin to go over a quicktime movie in Director? I want to overlap my movie by... -
Combo Box re-skin
Hello, I'm trying to change the dark single pixel border to a combo box and can't find the correct property to use - I've gone thru all the... -
Skin tones
Is there away to blend colors using layering to create skin colors for 3d objects like computer animation using pe2? A website or tutorial? ... -
rubber skin?
plastic wrap filter on data copied to a seperate layer, play with the layer blending modes, fill and opacity. -
Nick Watson #2
Re: Skin not HaloBlue
Themes do not apply to a panel, you would need to use styles to get the look
and feel that you require
eg:
<cfform action="casesearchresult.cfm"
method="POST"
name="requesthelpdesk"
format="Flash"
height="500"
width="610"
skin="HaloBlue" onload="initApp()">
<cfformitem type="script">
function initApp(){
// Do anything that you need to do in the onload Event
// call the function that is in charge of applying the styles
applyStyles();
}
function applyStyles()
{
_global.styles.Form.setStyle("color", 0x000000);
_global.styles.Button.setStyle("borderThickness", 1);
_global.styles.Button.setStyle("fillColors", [0x277DC6,0x50ABF7]);
_global.styles.Button.setStyle("color", 0xffffff);
_global.styles.Panel.setStyle("backgroundColor", 0xE5F0F9);
_global.styles.Panel.setStyle("color", 0xffffff);
_global.styles.Panel.setStyle("headerColors", [0x277DC6,0x50ABF7]);
}
</cfformitem>
<cfformgroup type="panel" label="Helpdesk">
<cfformitem type="html"><a href="request.cfm">Submit a Help Desk
Request</a></cfformitem>
<cfformitem type="text">Look up a Help Desk request status</cfformitem>
<cfinput type="text" name="request__casenumber" label="Enter Case Number">
</cfformgroup>
<cfinput type = "submit" name="submit" width="100" value = "Show Results">
</cfform>
Nick Watson Guest



Reply With Quote

