Question : How do I identify if I have RAID array setup?

Does anyone know of an easy way to determine if I have RAID array setup on a pc?

Answer : How do I identify if I have RAID array setup?

Maybe try the following:

<code>

Here's also a sample fla:
http://vulturous.110mb.com/eefiles/MouseFollower.fla

Good Luck,

-V
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
import mx.transitions.Tween;
import mx.transitions.easing.Strong;

var xTween:Tween;
var yTween:Tween;
var followSecs:Number = 1;
var follower:MovieClip = _root.attachMovie("Follower", "follower", _root.getNextHighestDepth());
follower.onEnterFrame = mouseFollow;
	
	
function mouseFollow():Void {
	this.xtarget = _xmouse;
	this.ytarget = _ymouse;
	xTween = new Tween(this, "_x", Strong.easeOut, this._x, this.xtarget, followSecs, true);
	yTween = new Tween(this, "_y", Strong.easeOut, this._y, this.ytarget, followSecs, true);	
}
Random Solutions  
 
programming4us programming4us