Is it possible to replace the Uploadify button (which is a graphic containing up/over/down states) with a simple CSS-styled button?
|
I was able to get away with something massively more simple. xhtml:
css:
javascript:
Probably a little easier, now that we have UPDATE I wrote this answer in July of 2010. It's now March of 2013. HTML5 supports multiple file-uploads. Don't use uploadify at all; I don't. |
|||||||||
|
|
I've been able to come up with a working solution to this. Here's the basic outline:
The flash object will shield the button underneath it from mouseover etc. events; so to get hover effects, you'll need to take a couple of additional steps:
Putting it all together: HTML
CSS
Javascript:
|
|||||||||||||
|
|
Why not just put a Wrapper around it like this:
Style it like this:
And use the following script:
Works for me ;) ... and of course you can just use background-images instead of the colors. |
|||
|
100% working example. Tested in Firefox, Chrome, Opera and IE6! HTML:
CSS:
JavaScript:
|
|||
|
|
|
reading your answers helped me to solve this one this way
HTML:
CSS:
JS
This way you're able to style your button, an keep the buttonText option available. I also had to mess a little bit with the .fla file to get the color and font for my button |
|||
|
|
|
A really simple way is to open the file with Flash You can then change the background colour of the symbol UploadBtn Save and publish the swf. |
|||
|
|
|
Evan was very close, but I needed to make some adjustments for it to work correctly. Here is what I ended up using: CSS:
You probably want to fine tune the height here because it does matter. Also, I aligned it from the top and left rather than left and right from the other example. I left a little styling in there as an example of how you can style the button wrapper. HTML:
The relative position is important for the absolute positioned button inside. JavaScript:
The width and height are very important as they determine the actual clickable region within the button div. I found that without these it's only clickable in a certain area. |
||||
|
|