# forceSmoothing=true does not work in browser, as2

**URL:** https://forum.kirupa.com/t/forcesmoothing-true-does-not-work-in-browser-as2/251785
**Category:** flash
**Created:** [February 12, 2008, 6:46pm UTC](https://forum.kirupa.com/t/forcesmoothing-true-does-not-work-in-browser-as2/251785 "2008-02-12T18:46:58Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Pottu](https://avatars.discourse-cdn.com/v4/letter/p/ccd318/32.png) [@Pottu](https://forum.kirupa.com/u/Pottu)
#### Post date: [February 12, 2008, 6:46pm UTC](https://forum.kirupa.com/t/forcesmoothing-true-does-not-work-in-browser-as2/251785/1 "2008-02-12T18:46:58Z")

</div>

Hi all, i hope some of you could help me.

Im using moviecliploader and on loadInit event im setting forceSmoothing=true.  
This seems to work as long as i keep wathing the movie by hitting +enter but as soon i watch the swf in browser the smoothiness is all gone. Also, shwn i trace the forceSmoothing property of the MC, it returns undefined.

```auto
	public function loadBitmapSmoothed(url:String, target:MovieClip) {

		var listener:Object = new Object();

		listener.onLoadInit = function(mc:MovieClip) {

			mc.forceSmoothing = true;

		};

		var loader:MovieClipLoader = new MovieClipLoader();
		loader.addListener(listener);
		loader.loadClip(url,target);
	}

```

I am using that inside a class where i generate thumbnails.

Someone pls?
