# Falling Snow Tutorial

**URL:** https://forum.kirupa.com/t/falling-snow-tutorial/169720
**Category:** Uncategorized
**Created:** [November 18, 2005, 6:54pm UTC](https://forum.kirupa.com/t/falling-snow-tutorial/169720 "2005-11-18T18:54:12Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![mattyshack](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/mattyshack/32/1559_2.png) [@mattyshack](https://forum.kirupa.com/u/mattyshack)
#### Post date: [November 18, 2005, 6:54pm UTC](https://forum.kirupa.com/t/falling-snow-tutorial/169720/1 "2005-11-18T18:54:12Z")

</div>

So I was using this Falling Snow tutroial provided by Kirupa: [http://www.kirupa.com/developer/mx2004/snow.htm](http://www.kirupa.com/developer/mx2004/snow.htm)

The Flash MX 2004 version was not working for me on an export to Flash 7 and higher. It works in Flash 6 though. So anyway, I figured what I needed was the OOP version of the file that calls the action script in an external file. I have it working just fine now, but my question is, how do I have this .swf file located in one folder, while calling the external .as files from another folder? Here is the AS in the main fla

```auto
var s:Snow=new Snow(100,_root,120,600,0);

this.onEnterFrame=function() {
	s.setWind((_xmouse/50)-4);
}

```

How do I alter this to reference the Snow.as in a different folder/url?
