Question : Customize Outlook Today by Adding Public Calendar

User would like for our Public Calendar to be available on her Outlook Today screen.

It seems as though she had this feature available under older versions of Outlook.

We have recently moved from Office 2003 to Office 2007 and Google searches indicate this may have been a feature that was removed from Outlook.

Can anyone confirm or deny?

Answer : Customize Outlook Today by Adding Public Calendar

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