I need a quality help!

My main movie is set on high quality and one of the movie clip I wanted to appear as an low quality graphic and I am putting this code:
onClipEvent (load) {
setProperty("_root.caption", _quality, “low”);
}
or
onClipEvent (load) {
this._quality=“low”;
}
Though it does change the clip into required state but it changes my whole movie in low quality that what I don’t want.

Please help me how can I solve this problem.:cyclops:

you can’t, _quality is a global setting for all the swf, including loaded content.

There’s anyother solution to that problem???

last thing i can think off is turning your movie to a gif and re-importing it…

—>>> look at this in homestarruner:
http://www.homestarrunner.com/sbemail51.html

I’ve dynamic text label coming up on that graphic.So both spoused to be in low quality state.Here is my code,

onClipEvent (enterFrame) {
if (_root.x == 1) {
this._quality = “low”;
this._alpha = 100;
} else {
this._alpha = 0;
}
}

what if I use IF and ELSE if alpha=100 n _quality=low n else keep quality=high?

would it work…let me check myself too;)
Thanks.
Explore the boundries!!!:stuck_out_tongue: