Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Quicktime 1

Status
Not open for further replies.

yogster

Technical User
May 11, 2005
2
0
0
GB
Hello there,
Do you know how i can take a quicktime movie i've imported into flash 4 and export it out as a swf ?
Everytime i export it it includes everything but the quicktime. Is it possible?

any help would be a great help.
cheers
 
Righty o
cheers for that, but whats the point in being able to import if you can't export?
thanks for the confirmation
 
If I recall correctly, it was to export as a QT movie (or Real Player...) with an added flashtrack, and not as a .swf.
Only from Flash MX on, can you actually embed a video in Flash and export it as a .swf.

Regards. Affiliate Program - Web Hosting - Web Design
After 25,000 posts, banned on FK, but proud not to have bowed down to them!
 
I'm trying to add different header icons for an accordion component. I have multiple movie clips with different skins in each one and I can't apply multiple skins to each child of the accordion. This is the code that I'm using but I need it applyied to different headers of the children
onClipEvent(initialize)
{
trueUpSkin = "LeftPanel0";
trueDownSkin = "LeftPanel0";
trueOverSkin = "LeftPanel0";
trueDisabledSkin = "LeftPanel0";
}

I used this code but it wouldn't work.
onClipEvent(initialize)
{
_parent.myAccord.getChildAt(0).trueUpSkin = "LeftPanel0";
_parent.myAccord.getChildAt(0).trueDownSkin = "LeftPanel0";
_parent.myAccord.getChildAt(0).trueOverSkin = "LeftPanel0";
_parent.myAccord.getChildAt(0).trueDisabledSkin = "LeftPanel0";

_parent.myAccord.getChildAt(1).trueUpSkin = "LeftPanel3";
_parent.myAccord.getChildAt(1).trueDownSkin = "LeftPanel2";
_parent.myAccord.getChildAt(1).trueOverSkin = "LeftPanel2";
_parent.myAccord.getChildAt(1).trueDisabledSkin = "LeftPanel2";
}
Any ideas??????
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top