Hey all,
I was wondering if anyone knows if it helps with file size to compress your CSS sheets before compiling the swf?
For HTML files, it compresses the bytes and makes a smaller file size, turning something like:
Code:
mx|HRule{
stroke-color: #5AA9FF;
stroke-width: 1;
}
into
Code:
mx|HRule{stroke-color:#5AA9FF;stroke-width:1;}
Does this make a difference or even matter, since Flash will compile its own swf anyway, does it do something like this automatically, or will this help build slightly smaller swf files?