725. File Comparison Report

Produced on Mon May 12 13:06:57 2008 UTC. This report uses XHTML and CSS2, and is best viewed with a reasonably standards compliant browser such as the latest version of Firefox or Internet Explorer. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

725.1 Files compared

# Location File Last Modified
1 Dolphin-v.6.0.5\templates\tmpl_uni\images\logo_as bxImage.as Mon Jan 7 04:44:06 2008 UTC
2 Mon May 12 13:06:57 2008 UTC

725.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 0 0
Changed 0 0
Inserted 0 0
Removed 1 40

725.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

725.4 Active regular expressions

No regular expressions were active.

725.5 Comparison detail

1   import mx. transition s.*;    
2   import mx. transition s.easing.N one;    
3      
4   class logo _as.bxImag e extends  MovieClip    
5   {    
6       privat e var    
7           mc Holder:Mov ieClip,    
8           bL oaded:Bool ean = fals e;    
9               
10       functi on bxImage ()    
11       {    
12           th is._visibl e = false;    
13       }    
14           
15       functi on init(sU rl:String)    
16       {    
17           va r mclListe ner:Object  = new Obj ect(), oSe lf:Object  = this;    
18           mc lListener. onLoadInit  = functio n(mc:Movie Clip)    
19           {    
20                var widt h = Stage. width, hei ght = Stag e.height;    
21                mc._xsca le = mc._y scale = Ma th.min(wid th * 100 /  mc._width , height *  100 / mc. _height);    
22                mc._x =  (width - m c._width)  / 2;    
23                mc._y =  (height -  mc._height ) / 2;    
24                oSelf.bL oaded = tr ue;    
25                oSelf.on Loading();    
26           }    
27               
28           va r mcLoader :MovieClip Loader = n ew MovieCl ipLoader() ;    
29           mc Loader.add Listener(m clListener );    
30           mc Loader.loa dClip(sUrl , mcHolder );    
31       }    
32           
33       functi on onLoadi ng(){}    
34           
35       functi on show(bM ode:Boolea n)    
36       {    
37           if (bMode) th is.swapDep ths(_paren t.getNextH ighestDept h());    
38           Tr ansitionMa nager.star t(this, {t ype: Fade,  direction : bMode ?  Transition .IN : Tran sition.OUT , duration : 1, easin g: None.ea seNone});    
39       }    
40   }