|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: |
this.mcNewsLinks.alpha=0;
this.mcMinistriesLinks.alpha=0;
import fl.transitions.Tween;
import fl.transitions.easing.*;
mcNewsBanner.addEventListener(MouseEvent.MOUSE_OVER,gotoNews);
mcMinistriesHitBox.addEventListener(MouseEvent.MOUSE_OVER,gotoMinistries);
function gotoNews(event:MouseEvent):void {
ministriesBack();
var newsBWidth:Tween=new Tween(mcNewsBanner,"width",Strong.easeOut,mcNewsBanner.width,mcNewsBanner.width=800,3,true);
var newsBHeight:Tween=new Tween(mcNewsBanner,"height",Strong.easeOut,mcNewsBanner.height,mcNewsBanner.height=100,3,true);
var newsLAlpha:Tween=new Tween(mcNewsLinks,"alpha",Strong.easeIn,mcNewsLinks.alpha,mcNewsLinks.alpha=100,3,true);
}
function gotoMinistries(event:MouseEvent):void {
newsBack();
//Banner
var ministriesBWidth:Tween=new Tween(mcMinistriesBanner,"width",Strong.easeOut,mcMinistriesBanner.width,mcMinistriesBanner.width=800,3,true);
var ministriesBHeight:Tween=new Tween(mcMinistriesBanner,"height",Strong.easeOut,mcMinistriesBanner.height,mcMinistriesBanner.height=100,3,true);
//Picture
var ministriesPWidth:Tween=new Tween(mcMinistriesPictures,"width",Strong.easeOut,mcMinistriesPictures.width,mcMinistriesPictures.width=435,3,true);
var ministriesPHeight:Tween=new Tween(mcMinistriesPictures,"height",Strong.easeOut,mcMinistriesPictures.height,mcMinistriesPictures.height=96,3,true);
var ministriesPAlpha:Tween=new Tween(mcMinistriesPictures,"alpha",Strong.easeOut,mcMinistriesPictures.alpha,mcMinistriesPictures.alpha=.3,3,true);
var ministriesPPosition:Tween=new Tween(mcMinistriesPictures,"x",Strong.easeOut,mcMinistriesPictures.x,mcMinistriesPictures.x=580,3,true);
//Links
var ministriesLAlpha:Tween=new Tween(mcMinistriesLinks,"alpha",Strong.easeIn,mcMinistriesLinks.alpha,mcMinistriesLinks.alpha=100,3,true);
}
//Put banners back
function newsBack():void {
//Banner
var newsBWidth:Tween=new Tween(mcNewsBanner,"width",Strong.easeOut,mcNewsBanner.width,mcNewsBanner.width=672,3,true);
var newsBHeight:Tween=new Tween(mcNewsBanner,"height",Strong.easeOut,mcNewsBanner.height,mcNewsBanner.height=80,3,true);
//Links
var newsLAlpha:Tween=new Tween(mcNewsLinks,"alpha",Strong.easeOut,mcNewsLinks.alpha,mcNewsLinks.alpha=0,3,true);
}
function ministriesBack():void {
//Banners
var ministriesBWidth:Tween=new Tween(mcMinistriesBanner,"width",Strong.easeOut,mcMinistriesBanner.width,mcMinistriesBanner.width=672,3,true);
var ministriesBHeight:Tween=new Tween(mcMinistriesBanner,"height",Strong.easeOut,mcMinistriesBanner.height,mcMinistriesBanner.height=80,3,true);
//Links
var MinistriesLAlpha:Tween=new Tween(mcMinistriesLinks,"alpha",Strong.easeOut,mcMinistriesLinks.alpha,mcMinistriesLinks.alpha=0,3,true);
//Pictures
var ministriesPWidth:Tween=new Tween(mcMinistriesPictures,"width",Strong.easeOut,mcMinistriesPictures.width,mcMinistriesPictures.width=343.2,3,true);
var ministriesPHeight:Tween=new Tween(mcMinistriesPictures,"height",Strong.easeOut,mcMinistriesPictures.height,mcMinistriesPictures.height=80,3,true);
var ministriesPAlpha:Tween=new Tween(mcMinistriesPictures,"alpha",Strong.easeOut,mcMinistriesPictures.alpha,mcMinistriesPictures.alpha=100,3,true);
var ministriesPPosition:Tween=new Tween(mcMinistriesPictures,"x",Strong.easeOut,mcMinistriesPictures.x,mcMinistriesPictures.x=565,3,true);
}
|
Advertisement
| Hall of Fame |