Started 1 week, 6 days ago (2009-11-17 21:38:00)
by roger.oblivion
Hello zenkert, Flash uses the Green
Halo Theme by default. I find this very annoying myself. The good news is that you can disable it and get rid of it for good.
Use this code on the swf that contains your ScrollPane:
Code:
_root.myScrollPane.setStyle("themeColor", "none");
As an option you can also disable it for all the components in your movie like this:
Code:...
Started 6 days, 10 hours ago (2009-11-24 21:04:00)
by zenkert
Flashter.
Had a similar problem with the ScrollPane.
http://www.
actionscript.org/forums/s....php3?t=223 016
Check my thread it has several solutions.
Maybe one of them can help you.
The last answer solved it all.
zenkert
Started 3 weeks, 5 days ago (2009-11-04 22:28:00)
by sugarengine
Everytime you touch it, you are adding items to list with that Event Change listener.
You need to just do that once when you first make it, not everytime it is clicked on.
There must be some kind of initializing function that is only called once.
I think
Started 3 days, 20 hours ago (2009-11-27 10:49:00)
by GiCmo
The blue border added is caused by the TextField inside the numericStepper.
So you need to disable mouseEvents from the textField inside.
To do that use: NS.mouseChildren = false; which
disables mouseEvents for everything NS contains as a child.
This goes to any future movieClip or Sprite you will create which you will want to disable its mouseEvents. Always think of the ...
Started 1 week, 1 day ago (2009-11-22 15:12:00)
by DiscipleX
When you use the FLVPlayback component with a skin, a seperate
SWF file is generated that you will need to keep with your original sample.swf file. If that SWF file isn't there, the skin won't show up.
That's why it shows up locally for you, but not when you just view 'sample.swf' on another computer.
Started 1 week ago (2009-11-23 14:10:00)
by Navarone
output error
When I am testing my movie in flash (CS3) I get an error in the output window. Can someone explain what is going on here?
VideoError: 1005: Invalid xml: URL: "videos/Dave Boushey Video Reel_1Mb.mp4" No
root node found; if url is for an flv it must have .flv extension and take no parameters
at fl.video::SMILManager/http...
Started 6 days, 13 hours ago (2009-11-24 18:09:00)
by zanshin
I've created a AdvancedDataGrid component (for reuse). I'm creating columns based on an input file. How can I had a
checkbox to a column in addDataGridExcludeColumn().
ActionScript Code:
default :
addDataGridExcludeColumn ( "Exclude" ) ;
addDataGridTextColumn ( "Name" ) ;
addDataGridTextColumn ( "SSN" ) ;...
Started 1 week, 1 day ago (2009-11-23 02:02:00)
by loadlearn
Welcome.
__________________
Nothing that is worth knowing can be taught. -
Oscar Wilde
Started 5 days, 4 hours ago (2009-11-26 03:10:00)
by codeman22
It should be...
ActionScript Code:
myComboBox. selectedIndex = 0 ;
Hope this helps
codeman22
Started 3 days, 15 hours ago (2009-11-27 16:10:00)
by Mazoonist
There may or may not be a way to do this from the inside. There is a way to cheat it from the outside. It requires
flash player 10 to get the new "cursor" property of the Mouse class. So here's what I did:
1. Drew a rectangle on a separate layer above the FLVPlayback component the same size as the playPauseButton. I used a fill color with alpha set to 0, and no stroke. Then converted the ...