Question : VMWare ESXi vs vSphere Essential ($495 Option)

Hi
I have 3 IBM 345 Servers (32 Bit Procs) each with 2 Procs running Free ESXi 3.5 Update 4. I am using OpenFiler on another IBM server with Hardware RAID5 for storage using NFS. I have couple of VM's on each server. My Question is "What do i get that i don't currently have with vSphere Essentials $495 version and why do i need it". These servers are NOT running anything mission critical. I would however like to have the option of creating servers from Templates just like u can do it in the Enterprise version of vSphere.
Any comments would be helpful.

Answer : VMWare ESXi vs vSphere Essential ($495 Option)

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