How do I get Dreamweaver to deploy syntax highlighting for full script CFC's?
- by Mel
Is there a way to get Dreamweaver CS4 to use syntax highlighting when writing full script CFCs? If the document type is .cfc and they syntax is fullscript, there is no syntax highlighting; the code will be in black text...
For example, the following block of code will appear without syntax highlighting:
component extends="whatever" output="false" {
public void foo() {
}
}
While the tag equivalent would be highlighted normally:
<cfcomponent extends="whatever" output="false">
<cffunction name="foo" returnType="void" access="public">
</cffunction>
</cfcomponent>