Templates allow novices to create their own floor or Web based exhibits. Universal Modules allow more advanced developers to combine, branch, and write their own modules that can act as building blocks for new Exhibits.
The Magnifier Viewer is a stand-alone media viewing application with a built-in magnification tool. It can use any combination of the following modules: Key Viewer, Flickr Viewer, Image Viewer, YouTube Viewer, and GMap Viewer. This template is based on prior work by Chris Gerber and David Heath.
Total Activity: 273
Downloads: 43
Article Views: 82
Shared: 0
Tweets: 0
Uploads: 21
Comments: 127
Favorites: 0
Likes: 0
Emails: 0
The Magnifier Viewer is a stand-alone media viewing application with a built-in magnification tool. It can use any combination of the following modules: Key Viewer, Flickr Viewer, Image Viewer, YouTube Viewer, and GMap Viewer. This template is based on prior work by Chris Gerber and David Heath.
Colletion viewer with magnifier tool.
package {
import flash.display.StageAlign;
import flash.display.StageDisplayState;
import flash.display.StageScaleMode;
import id.core.Application;
import id.core.ApplicationGlobals;
import id.template.MagnifierViewer;
import id.managers.FontManager; FontManager;
public class Main extends Application {
public function Main() {
settingsPath = "library/settings/Application.xml";
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.displayState = StageDisplayState.FULL_SCREEN;
stage.align = StageAlign.TOP_LEFT;
}
override protected function initialize():void {
stage.frameRate = ApplicationGlobals.dataManager.data.Template.FrameRate;
var magnifierViewer:MagnifierViewer = new MagnifierViewer();
addChild(magnifierViewer);
}
}
}
| Name | Description | Notes |
|---|---|---|
| color | The magnifier's color | ex: "silver" or "brass" |
| shape | The magnifier's shape | ex: "square" or "oval" |
| style | The magnifier's style | ex: "handles" or "nohandles" |
| Name | Superclass | Notes |
|---|---|---|