diff --git a/AlivePDF/.actionScriptProperties b/.actionScriptProperties
similarity index 100%
rename from AlivePDF/.actionScriptProperties
rename to .actionScriptProperties
diff --git a/AlivePDF/.flexLibProperties b/.flexLibProperties
similarity index 100%
rename from AlivePDF/.flexLibProperties
rename to .flexLibProperties
diff --git a/AlivePDF/.project b/.project
similarity index 100%
rename from AlivePDF/.project
rename to .project
diff --git a/AlivePDF/.settings/org.eclipse.core.resources.prefs b/.settings/org.eclipse.core.resources.prefs
similarity index 100%
rename from AlivePDF/.settings/org.eclipse.core.resources.prefs
rename to .settings/org.eclipse.core.resources.prefs
diff --git a/AlivePDFTest/.actionScriptProperties b/AlivePDFTest/.actionScriptProperties
deleted file mode 100644
index 0663c08..0000000
--- a/AlivePDFTest/.actionScriptProperties
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AlivePDFTest/.flexProperties b/AlivePDFTest/.flexProperties
deleted file mode 100644
index eb94363..0000000
--- a/AlivePDFTest/.flexProperties
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git a/AlivePDFTest/.project b/AlivePDFTest/.project
deleted file mode 100644
index fb90c78..0000000
--- a/AlivePDFTest/.project
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
- AlivePDFTest
-
-
-
-
-
- com.adobe.flexbuilder.project.flexbuilder
-
-
-
-
-
- com.adobe.flexbuilder.project.flexnature
- com.adobe.flexbuilder.project.actionscriptnature
-
-
diff --git a/AlivePDFTest/.settings/org.eclipse.core.resources.prefs b/AlivePDFTest/.settings/org.eclipse.core.resources.prefs
deleted file mode 100644
index ef06cf4..0000000
--- a/AlivePDFTest/.settings/org.eclipse.core.resources.prefs
+++ /dev/null
@@ -1,3 +0,0 @@
-#Fri Jan 09 10:53:54 CET 2009
-eclipse.preferences.version=1
-encoding/=UTF-8
diff --git a/AlivePDFTest/html-template/AC_OETags.js b/AlivePDFTest/html-template/AC_OETags.js
deleted file mode 100644
index 9fec640..0000000
--- a/AlivePDFTest/html-template/AC_OETags.js
+++ /dev/null
@@ -1,278 +0,0 @@
-// Flash Player Version Detection - Rev 1.6
-// Detect Client Browser type
-// Copyright(c) 2005-2006 Adobe Macromedia Software, LLC. All rights reserved.
-var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
-var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
-var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
-
-function ControlVersion()
-{
- var version;
- var axo;
- var e;
-
- // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
-
- try {
- // version will be set for 7.X or greater players
- axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
- version = axo.GetVariable("$version");
- } catch (e) {
- }
-
- if (!version)
- {
- try {
- // version will be set for 6.X players only
- axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
-
- // installed player is some revision of 6.0
- // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
- // so we have to be careful.
-
- // default to the first public version
- version = "WIN 6,0,21,0";
-
- // throws if AllowScripAccess does not exist (introduced in 6.0r47)
- axo.AllowScriptAccess = "always";
-
- // safe to call for 6.0r47 or greater
- version = axo.GetVariable("$version");
-
- } catch (e) {
- }
- }
-
- if (!version)
- {
- try {
- // version will be set for 4.X or 5.X player
- axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
- version = axo.GetVariable("$version");
- } catch (e) {
- }
- }
-
- if (!version)
- {
- try {
- // version will be set for 3.X player
- axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
- version = "WIN 3,0,18,0";
- } catch (e) {
- }
- }
-
- if (!version)
- {
- try {
- // version will be set for 2.X player
- axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
- version = "WIN 2,0,0,11";
- } catch (e) {
- version = -1;
- }
- }
-
- return version;
-}
-
-// JavaScript helper required to detect Flash Player PlugIn version information
-function GetSwfVer(){
- // NS/Opera version >= 3 check for Flash plugin in plugin array
- var flashVer = -1;
-
- if (navigator.plugins != null && navigator.plugins.length > 0) {
- if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
- var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
- var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
- var descArray = flashDescription.split(" ");
- var tempArrayMajor = descArray[2].split(".");
- var versionMajor = tempArrayMajor[0];
- var versionMinor = tempArrayMajor[1];
- var versionRevision = descArray[3];
- if (versionRevision == "") {
- versionRevision = descArray[4];
- }
- if (versionRevision[0] == "d") {
- versionRevision = versionRevision.substring(1);
- } else if (versionRevision[0] == "r") {
- versionRevision = versionRevision.substring(1);
- if (versionRevision.indexOf("d") > 0) {
- versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
- }
- } else if (versionRevision[0] == "b") {
- versionRevision = versionRevision.substring(1);
- }
- var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
- }
- }
- // MSN/WebTV 2.6 supports Flash 4
- else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
- // WebTV 2.5 supports Flash 3
- else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
- // older WebTV supports Flash 2
- else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
- else if ( isIE && isWin && !isOpera ) {
- flashVer = ControlVersion();
- }
- return flashVer;
-}
-
-// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
-function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
-{
- versionStr = GetSwfVer();
- if (versionStr == -1 ) {
- return false;
- } else if (versionStr != 0) {
- if(isIE && isWin && !isOpera) {
- // Given "WIN 2,0,0,11"
- tempArray = versionStr.split(" "); // ["WIN", "2,0,0,11"]
- tempString = tempArray[1]; // "2,0,0,11"
- versionArray = tempString.split(","); // ['2', '0', '0', '11']
- } else {
- versionArray = versionStr.split(".");
- }
- var versionMajor = versionArray[0];
- var versionMinor = versionArray[1];
- var versionRevision = versionArray[2];
-
- // is the major.revision >= requested major.revision AND the minor version >= requested minor
- if (versionMajor > parseFloat(reqMajorVer)) {
- return true;
- } else if (versionMajor == parseFloat(reqMajorVer)) {
- if (versionMinor > parseFloat(reqMinorVer))
- return true;
- else if (versionMinor == parseFloat(reqMinorVer)) {
- if (versionRevision >= parseFloat(reqRevision))
- return true;
- }
- }
- return false;
- }
-}
-
-function AC_AddExtension(src, ext)
-{
- if (src.indexOf('?') != -1)
- return src.replace(/\?/, ext+'?');
- else
- return src + ext;
-}
-
-function AC_Generateobj(objAttrs, params, embedAttrs)
-{
- var str = '';
- if (isIE && isWin && !isOpera)
- {
- str += '';
- } else {
- str += '';
- }
-
- document.write(str);
-}
-
-function AC_FL_RunContent(){
- var ret =
- AC_GetArgs
- ( arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
- , "application/x-shockwave-flash"
- );
- AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
-}
-
-function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
- var ret = new Object();
- ret.embedAttrs = new Object();
- ret.params = new Object();
- ret.objAttrs = new Object();
- for (var i=0; i < args.length; i=i+2){
- var currArg = args[i].toLowerCase();
-
- switch (currArg){
- case "classid":
- break;
- case "pluginspage":
- ret.embedAttrs[args[i]] = args[i+1];
- break;
- case "src":
- case "movie":
- args[i+1] = AC_AddExtension(args[i+1], ext);
- ret.embedAttrs["src"] = args[i+1];
- ret.params[srcParamName] = args[i+1];
- break;
- case "onafterupdate":
- case "onbeforeupdate":
- case "onblur":
- case "oncellchange":
- case "onclick":
- case "ondblClick":
- case "ondrag":
- case "ondragend":
- case "ondragenter":
- case "ondragleave":
- case "ondragover":
- case "ondrop":
- case "onfinish":
- case "onfocus":
- case "onhelp":
- case "onmousedown":
- case "onmouseup":
- case "onmouseover":
- case "onmousemove":
- case "onmouseout":
- case "onkeypress":
- case "onkeydown":
- case "onkeyup":
- case "onload":
- case "onlosecapture":
- case "onpropertychange":
- case "onreadystatechange":
- case "onrowsdelete":
- case "onrowenter":
- case "onrowexit":
- case "onrowsinserted":
- case "onstart":
- case "onscroll":
- case "onbeforeeditfocus":
- case "onactivate":
- case "onbeforedeactivate":
- case "ondeactivate":
- case "type":
- case "codebase":
- ret.objAttrs[args[i]] = args[i+1];
- break;
- case "id":
- case "width":
- case "height":
- case "align":
- case "vspace":
- case "hspace":
- case "class":
- case "title":
- case "accesskey":
- case "name":
- case "tabindex":
- ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
- break;
- default:
- ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
- }
- }
- ret.objAttrs["classid"] = classid;
- if (mimeType) ret.embedAttrs["type"] = mimeType;
- return ret;
-}
-
-
diff --git a/AlivePDFTest/html-template/history/history.css b/AlivePDFTest/html-template/history/history.css
deleted file mode 100644
index 664ea26..0000000
--- a/AlivePDFTest/html-template/history/history.css
+++ /dev/null
@@ -1,6 +0,0 @@
-/* This CSS stylesheet defines styles used by required elements in a flex application page that supports browser history */
-
-#ie_historyFrame { width: 0px; height: 0px; display:none }
-#firefox_anchorDiv { width: 0px; height: 0px; display:none }
-#safari_formDiv { width: 0px; height: 0px; display:none }
-#safari_rememberDiv { width: 0px; height: 0px; display:none }
diff --git a/AlivePDFTest/html-template/history/history.js b/AlivePDFTest/html-template/history/history.js
deleted file mode 100644
index 8ba2d51..0000000
--- a/AlivePDFTest/html-template/history/history.js
+++ /dev/null
@@ -1,662 +0,0 @@
-BrowserHistoryUtils = {
- addEvent: function(elm, evType, fn, useCapture) {
- useCapture = useCapture || false;
- if (elm.addEventListener) {
- elm.addEventListener(evType, fn, useCapture);
- return true;
- }
- else if (elm.attachEvent) {
- var r = elm.attachEvent('on' + evType, fn);
- return r;
- }
- else {
- elm['on' + evType] = fn;
- }
- }
-}
-
-BrowserHistory = (function() {
- // type of browser
- var browser = {
- ie: false,
- firefox: false,
- safari: false,
- opera: false,
- version: -1
- };
-
- // if setDefaultURL has been called, our first clue
- // that the SWF is ready and listening
- //var swfReady = false;
-
- // the URL we'll send to the SWF once it is ready
- //var pendingURL = '';
-
- // Default app state URL to use when no fragment ID present
- var defaultHash = '';
-
- // Last-known app state URL
- var currentHref = document.location.href;
-
- // Initial URL (used only by IE)
- var initialHref = document.location.href;
-
- // Initial URL (used only by IE)
- var initialHash = document.location.hash;
-
- // History frame source URL prefix (used only by IE)
- var historyFrameSourcePrefix = 'history/historyFrame.html?';
-
- // History maintenance (used only by Safari)
- var currentHistoryLength = -1;
-
- var historyHash = [];
-
- var initialState = createState(initialHref, initialHref + '#' + initialHash, initialHash);
-
- var backStack = [];
- var forwardStack = [];
-
- var currentObjectId = null;
-
- //UserAgent detection
- var useragent = navigator.userAgent.toLowerCase();
-
- if (useragent.indexOf("opera") != -1) {
- browser.opera = true;
- } else if (useragent.indexOf("msie") != -1) {
- browser.ie = true;
- browser.version = parseFloat(useragent.substring(useragent.indexOf('msie') + 4));
- } else if (useragent.indexOf("safari") != -1) {
- browser.safari = true;
- browser.version = parseFloat(useragent.substring(useragent.indexOf('safari') + 7));
- } else if (useragent.indexOf("gecko") != -1) {
- browser.firefox = true;
- }
-
- if (browser.ie == true && browser.version == 7) {
- window["_ie_firstload"] = false;
- }
-
- // Accessor functions for obtaining specific elements of the page.
- function getHistoryFrame()
- {
- return document.getElementById('ie_historyFrame');
- }
-
- function getAnchorElement()
- {
- return document.getElementById('firefox_anchorDiv');
- }
-
- function getFormElement()
- {
- return document.getElementById('safari_formDiv');
- }
-
- function getRememberElement()
- {
- return document.getElementById("safari_remember_field");
- }
-
- // Get the Flash player object for performing ExternalInterface callbacks.
- // Updated for changes to SWFObject2.
- function getPlayer(id) {
- if (id && document.getElementById(id)) {
- var r = document.getElementById(id);
- if (typeof r.SetVariable != "undefined") {
- return r;
- }
- else {
- var o = r.getElementsByTagName("object");
- var e = r.getElementsByTagName("embed");
- if (o.length > 0 && typeof o[0].SetVariable != "undefined") {
- return o[0];
- }
- else if (e.length > 0 && typeof e[0].SetVariable != "undefined") {
- return e[0];
- }
- }
- }
- else {
- var o = document.getElementsByTagName("object");
- var e = document.getElementsByTagName("embed");
- if (e.length > 0 && typeof e[0].SetVariable != "undefined") {
- return e[0];
- }
- else if (o.length > 0 && typeof o[0].SetVariable != "undefined") {
- return o[0];
- }
- else if (o.length > 1 && typeof o[1].SetVariable != "undefined") {
- return o[1];
- }
- }
- return undefined;
- }
-
- function getPlayers() {
- var players = [];
- if (players.length == 0) {
- var tmp = document.getElementsByTagName('object');
- players = tmp;
- }
-
- if (players.length == 0 || players[0].object == null) {
- var tmp = document.getElementsByTagName('embed');
- players = tmp;
- }
- return players;
- }
-
- function getIframeHash() {
- var doc = getHistoryFrame().contentWindow.document;
- var hash = String(doc.location.search);
- if (hash.length == 1 && hash.charAt(0) == "?") {
- hash = "";
- }
- else if (hash.length >= 2 && hash.charAt(0) == "?") {
- hash = hash.substring(1);
- }
- return hash;
- }
-
- /* Get the current location hash excluding the '#' symbol. */
- function getHash() {
- // It would be nice if we could use document.location.hash here,
- // but it's faulty sometimes.
- var idx = document.location.href.indexOf('#');
- return (idx >= 0) ? document.location.href.substr(idx+1) : '';
- }
-
- /* Get the current location hash excluding the '#' symbol. */
- function setHash(hash) {
- // It would be nice if we could use document.location.hash here,
- // but it's faulty sometimes.
- if (hash == '') hash = '#'
- document.location.hash = hash;
- }
-
- function createState(baseUrl, newUrl, flexAppUrl) {
- return { 'baseUrl': baseUrl, 'newUrl': newUrl, 'flexAppUrl': flexAppUrl, 'title': null };
- }
-
- /* Add a history entry to the browser.
- * baseUrl: the portion of the location prior to the '#'
- * newUrl: the entire new URL, including '#' and following fragment
- * flexAppUrl: the portion of the location following the '#' only
- */
- function addHistoryEntry(baseUrl, newUrl, flexAppUrl) {
-
- //delete all the history entries
- forwardStack = [];
-
- if (browser.ie) {
- //Check to see if we are being asked to do a navigate for the first
- //history entry, and if so ignore, because it's coming from the creation
- //of the history iframe
- if (flexAppUrl == defaultHash && document.location.href == initialHref && window['_ie_firstload']) {
- currentHref = initialHref;
- return;
- }
- if ((!flexAppUrl || flexAppUrl == defaultHash) && window['_ie_firstload']) {
- newUrl = baseUrl + '#' + defaultHash;
- flexAppUrl = defaultHash;
- } else {
- // for IE, tell the history frame to go somewhere without a '#'
- // in order to get this entry into the browser history.
- getHistoryFrame().src = historyFrameSourcePrefix + flexAppUrl;
- }
- setHash(flexAppUrl);
- } else {
-
- //ADR
- if (backStack.length == 0 && initialState.flexAppUrl == flexAppUrl) {
- initialState = createState(baseUrl, newUrl, flexAppUrl);
- } else if(backStack.length > 0 && backStack[backStack.length - 1].flexAppUrl == flexAppUrl) {
- backStack[backStack.length - 1] = createState(baseUrl, newUrl, flexAppUrl);
- }
-
- if (browser.safari) {
- // for Safari, submit a form whose action points to the desired URL
- if (browser.version <= 419.3) {
- var file = window.location.pathname.toString();
- file = file.substring(file.lastIndexOf("/")+1);
- getFormElement().innerHTML = '';
- //get the current elements and add them to the form
- var qs = window.location.search.substring(1);
- var qs_arr = qs.split("&");
- for (var i = 0; i < qs_arr.length; i++) {
- var tmp = qs_arr[i].split("=");
- var elem = document.createElement("input");
- elem.type = "hidden";
- elem.name = tmp[0];
- elem.value = tmp[1];
- document.forms.historyForm.appendChild(elem);
- }
- document.forms.historyForm.submit();
- } else {
- top.location.hash = flexAppUrl;
- }
- // We also have to maintain the history by hand for Safari
- historyHash[history.length] = flexAppUrl;
- _storeStates();
- } else {
- // Otherwise, write an anchor into the page and tell the browser to go there
- addAnchor(flexAppUrl);
- setHash(flexAppUrl);
- }
- }
- backStack.push(createState(baseUrl, newUrl, flexAppUrl));
- }
-
- function _storeStates() {
- if (browser.safari) {
- getRememberElement().value = historyHash.join(",");
- }
- }
-
- function handleBackButton() {
- //The "current" page is always at the top of the history stack.
- var current = backStack.pop();
- if (!current) { return; }
- var last = backStack[backStack.length - 1];
- if (!last && backStack.length == 0){
- last = initialState;
- }
- forwardStack.push(current);
- }
-
- function handleForwardButton() {
- //summary: private method. Do not call this directly.
-
- var last = forwardStack.pop();
- if (!last) { return; }
- backStack.push(last);
- }
-
- function handleArbitraryUrl() {
- //delete all the history entries
- forwardStack = [];
- }
-
- /* Called periodically to poll to see if we need to detect navigation that has occurred */
- function checkForUrlChange() {
-
- if (browser.ie) {
- if (currentHref != document.location.href && currentHref + '#' != document.location.href) {
- //This occurs when the user has navigated to a specific URL
- //within the app, and didn't use browser back/forward
- //IE seems to have a bug where it stops updating the URL it
- //shows the end-user at this point, but programatically it
- //appears to be correct. Do a full app reload to get around
- //this issue.
- if (browser.version < 7) {
- currentHref = document.location.href;
- document.location.reload();
- } else {
- if (getHash() != getIframeHash()) {
- // this.iframe.src = this.blankURL + hash;
- var sourceToSet = historyFrameSourcePrefix + getHash();
- getHistoryFrame().src = sourceToSet;
- }
- }
- }
- }
-
- if (browser.safari) {
- // For Safari, we have to check to see if history.length changed.
- if (currentHistoryLength >= 0 && history.length != currentHistoryLength) {
- //alert("did change: " + history.length + ", " + historyHash.length + "|" + historyHash[history.length] + "|>" + historyHash.join("|"));
- // If it did change, then we have to look the old state up
- // in our hand-maintained array since document.location.hash
- // won't have changed, then call back into BrowserManager.
- currentHistoryLength = history.length;
- var flexAppUrl = historyHash[currentHistoryLength];
- if (flexAppUrl == '') {
- //flexAppUrl = defaultHash;
- }
- //ADR: to fix multiple
- if (typeof BrowserHistory_multiple != "undefined" && BrowserHistory_multiple == true) {
- var pl = getPlayers();
- for (var i = 0; i < pl.length; i++) {
- pl[i].browserURLChange(flexAppUrl);
- }
- } else {
- getPlayer().browserURLChange(flexAppUrl);
- }
- _storeStates();
- }
- }
- if (browser.firefox) {
- if (currentHref != document.location.href) {
- var bsl = backStack.length;
-
- var urlActions = {
- back: false,
- forward: false,
- set: false
- }
-
- if ((window.location.hash == initialHash || window.location.href == initialHref) && (bsl == 1)) {
- urlActions.back = true;
- // FIXME: could this ever be a forward button?
- // we can't clear it because we still need to check for forwards. Ugg.
- // clearInterval(this.locationTimer);
- handleBackButton();
- }
-
- // first check to see if we could have gone forward. We always halt on
- // a no-hash item.
- if (forwardStack.length > 0) {
- if (forwardStack[forwardStack.length-1].flexAppUrl == getHash()) {
- urlActions.forward = true;
- handleForwardButton();
- }
- }
-
- // ok, that didn't work, try someplace back in the history stack
- if ((bsl >= 2) && (backStack[bsl - 2])) {
- if (backStack[bsl - 2].flexAppUrl == getHash()) {
- urlActions.back = true;
- handleBackButton();
- }
- }
-
- if (!urlActions.back && !urlActions.forward) {
- var foundInStacks = {
- back: -1,
- forward: -1
- }
-
- for (var i = 0; i < backStack.length; i++) {
- if (backStack[i].flexAppUrl == getHash() && i != (bsl - 2)) {
- arbitraryUrl = true;
- foundInStacks.back = i;
- }
- }
- for (var i = 0; i < forwardStack.length; i++) {
- if (forwardStack[i].flexAppUrl == getHash() && i != (bsl - 2)) {
- arbitraryUrl = true;
- foundInStacks.forward = i;
- }
- }
- handleArbitraryUrl();
- }
-
- // Firefox changed; do a callback into BrowserManager to tell it.
- currentHref = document.location.href;
- var flexAppUrl = getHash();
- if (flexAppUrl == '') {
- //flexAppUrl = defaultHash;
- }
- //ADR: to fix multiple
- if (typeof BrowserHistory_multiple != "undefined" && BrowserHistory_multiple == true) {
- var pl = getPlayers();
- for (var i = 0; i < pl.length; i++) {
- pl[i].browserURLChange(flexAppUrl);
- }
- } else {
- getPlayer().browserURLChange(flexAppUrl);
- }
- }
- }
- //setTimeout(checkForUrlChange, 50);
- }
-
- /* Write an anchor into the page to legitimize it as a URL for Firefox et al. */
- function addAnchor(flexAppUrl)
- {
- if (document.getElementsByName(flexAppUrl).length == 0) {
- getAnchorElement().innerHTML += "" + flexAppUrl + "";
- }
- }
-
- var _initialize = function () {
- if (browser.ie)
- {
- var scripts = document.getElementsByTagName('script');
- for (var i = 0, s; s = scripts[i]; i++) {
- if (s.src.indexOf("history.js") > -1) {
- var iframe_location = (new String(s.src)).replace("history.js", "historyFrame.html");
- }
- }
- historyFrameSourcePrefix = iframe_location + "?";
- var src = historyFrameSourcePrefix;
-
- var iframe = document.createElement("iframe");
- iframe.id = 'ie_historyFrame';
- iframe.name = 'ie_historyFrame';
- //iframe.src = historyFrameSourcePrefix;
- try {
- document.body.appendChild(iframe);
- } catch(e) {
- setTimeout(function() {
- document.body.appendChild(iframe);
- }, 0);
- }
- }
-
- if (browser.safari)
- {
- var rememberDiv = document.createElement("div");
- rememberDiv.id = 'safari_rememberDiv';
- document.body.appendChild(rememberDiv);
- rememberDiv.innerHTML = '';
-
- var formDiv = document.createElement("div");
- formDiv.id = 'safari_formDiv';
- document.body.appendChild(formDiv);
-
- var reloader_content = document.createElement('div');
- reloader_content.id = 'safarireloader';
- var scripts = document.getElementsByTagName('script');
- for (var i = 0, s; s = scripts[i]; i++) {
- if (s.src.indexOf("history.js") > -1) {
- html = (new String(s.src)).replace(".js", ".html");
- }
- }
- reloader_content.innerHTML = '';
- document.body.appendChild(reloader_content);
- reloader_content.style.position = 'absolute';
- reloader_content.style.left = reloader_content.style.top = '-9999px';
- iframe = reloader_content.getElementsByTagName('iframe')[0];
-
- if (document.getElementById("safari_remember_field").value != "" ) {
- historyHash = document.getElementById("safari_remember_field").value.split(",");
- }
-
- }
-
- if (browser.firefox)
- {
- var anchorDiv = document.createElement("div");
- anchorDiv.id = 'firefox_anchorDiv';
- document.body.appendChild(anchorDiv);
- }
-
- //setTimeout(checkForUrlChange, 50);
- }
-
- return {
- historyHash: historyHash,
- backStack: function() { return backStack; },
- forwardStack: function() { return forwardStack },
- getPlayer: getPlayer,
- initialize: function(src) {
- _initialize(src);
- },
- setURL: function(url) {
- document.location.href = url;
- },
- getURL: function() {
- return document.location.href;
- },
- getTitle: function() {
- return document.title;
- },
- setTitle: function(title) {
- try {
- backStack[backStack.length - 1].title = title;
- } catch(e) { }
- //if on safari, set the title to be the empty string.
- if (browser.safari) {
- if (title == "") {
- try {
- var tmp = window.location.href.toString();
- title = tmp.substring((tmp.lastIndexOf("/")+1), tmp.lastIndexOf("#"));
- } catch(e) {
- title = "";
- }
- }
- }
- document.title = title;
- },
- setDefaultURL: function(def)
- {
- defaultHash = def;
- def = getHash();
- //trailing ? is important else an extra frame gets added to the history
- //when navigating back to the first page. Alternatively could check
- //in history frame navigation to compare # and ?.
- if (browser.ie)
- {
- window['_ie_firstload'] = true;
- var sourceToSet = historyFrameSourcePrefix + def;
- var func = function() {
- getHistoryFrame().src = sourceToSet;
- window.location.replace("#" + def);
- setInterval(checkForUrlChange, 50);
- }
- try {
- func();
- } catch(e) {
- window.setTimeout(function() { func(); }, 0);
- }
- }
-
- if (browser.safari)
- {
- currentHistoryLength = history.length;
- if (historyHash.length == 0) {
- historyHash[currentHistoryLength] = def;
- var newloc = "#" + def;
- window.location.replace(newloc);
- } else {
- //alert(historyHash[historyHash.length-1]);
- }
- //setHash(def);
- setInterval(checkForUrlChange, 50);
- }
-
-
- if (browser.firefox || browser.opera)
- {
- var reg = new RegExp("#" + def + "$");
- if (window.location.toString().match(reg)) {
- } else {
- var newloc ="#" + def;
- window.location.replace(newloc);
- }
- setInterval(checkForUrlChange, 50);
- //setHash(def);
- }
-
- },
-
- /* Set the current browser URL; called from inside BrowserManager to propagate
- * the application state out to the container.
- */
- setBrowserURL: function(flexAppUrl, objectId) {
- if (browser.ie && typeof objectId != "undefined") {
- currentObjectId = objectId;
- }
- //fromIframe = fromIframe || false;
- //fromFlex = fromFlex || false;
- //alert("setBrowserURL: " + flexAppUrl);
- //flexAppUrl = (flexAppUrl == "") ? defaultHash : flexAppUrl ;
-
- var pos = document.location.href.indexOf('#');
- var baseUrl = pos != -1 ? document.location.href.substr(0, pos) : document.location.href;
- var newUrl = baseUrl + '#' + flexAppUrl;
-
- if (document.location.href != newUrl && document.location.href + '#' != newUrl) {
- currentHref = newUrl;
- addHistoryEntry(baseUrl, newUrl, flexAppUrl);
- currentHistoryLength = history.length;
- }
-
- return false;
- },
-
- browserURLChange: function(flexAppUrl) {
- var objectId = null;
- if (browser.ie && currentObjectId != null) {
- objectId = currentObjectId;
- }
- pendingURL = '';
-
- if (typeof BrowserHistory_multiple != "undefined" && BrowserHistory_multiple == true) {
- var pl = getPlayers();
- for (var i = 0; i < pl.length; i++) {
- try {
- pl[i].browserURLChange(flexAppUrl);
- } catch(e) { }
- }
- } else {
- try {
- getPlayer(objectId).browserURLChange(flexAppUrl);
- } catch(e) { }
- }
-
- currentObjectId = null;
- }
-
- }
-
-})();
-
-// Initialization
-
-// Automated unit testing and other diagnostics
-
-function setURL(url)
-{
- document.location.href = url;
-}
-
-function backButton()
-{
- history.back();
-}
-
-function forwardButton()
-{
- history.forward();
-}
-
-function goForwardOrBackInHistory(step)
-{
- history.go(step);
-}
-
-//BrowserHistoryUtils.addEvent(window, "load", function() { BrowserHistory.initialize(); });
-(function(i) {
- var u =navigator.userAgent;var e=/*@cc_on!@*/false;
- var st = setTimeout;
- if(/webkit/i.test(u)){
- st(function(){
- var dr=document.readyState;
- if(dr=="loaded"||dr=="complete"){i()}
- else{st(arguments.callee,10);}},10);
- } else if((/mozilla/i.test(u)&&!/(compati)/.test(u)) || (/opera/i.test(u))){
- document.addEventListener("DOMContentLoaded",i,false);
- } else if(e){
- (function(){
- var t=document.createElement('doc:rdy');
- try{t.doScroll('left');
- i();t=null;
- }catch(e){st(arguments.callee,0);}})();
- } else{
- window.onload=i;
- }
-})( function() {BrowserHistory.initialize();} );
diff --git a/AlivePDFTest/html-template/history/historyFrame.html b/AlivePDFTest/html-template/history/historyFrame.html
deleted file mode 100644
index aebb8d8..0000000
--- a/AlivePDFTest/html-template/history/historyFrame.html
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
- Hidden frame for Browser History support.
-
-
diff --git a/AlivePDFTest/html-template/index.template.html b/AlivePDFTest/html-template/index.template.html
deleted file mode 100644
index a8b3b64..0000000
--- a/AlivePDFTest/html-template/index.template.html
+++ /dev/null
@@ -1,121 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-${title}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AlivePDFTest/html-template/playerProductInstall.swf b/AlivePDFTest/html-template/playerProductInstall.swf
deleted file mode 100644
index bdc3437..0000000
Binary files a/AlivePDFTest/html-template/playerProductInstall.swf and /dev/null differ
diff --git a/AlivePDFTest/libs/FlexUnit.swc b/AlivePDFTest/libs/FlexUnit.swc
deleted file mode 100644
index b4be965..0000000
Binary files a/AlivePDFTest/libs/FlexUnit.swc and /dev/null differ
diff --git a/AlivePDFTest/src/AlivePDFTest.mxml b/AlivePDFTest/src/AlivePDFTest.mxml
deleted file mode 100644
index bcd294c..0000000
--- a/AlivePDFTest/src/AlivePDFTest.mxml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
diff --git a/AlivePDFTest/src/org/alivepdf/AllTests.as b/AlivePDFTest/src/org/alivepdf/AllTests.as
deleted file mode 100644
index baf35bb..0000000
--- a/AlivePDFTest/src/org/alivepdf/AllTests.as
+++ /dev/null
@@ -1,12 +0,0 @@
-package org.alivepdf
-{
- import flexunit.framework.TestSuite;
-
- public class AllTests extends TestSuite
- {
- public function AllTests(param:Object=null)
- {
- addTestSuite( TestHtml );
- }
- }
-}
\ No newline at end of file
diff --git a/AlivePDF/all_flex.xml b/all_flex.xml
similarity index 100%
rename from AlivePDF/all_flex.xml
rename to all_flex.xml
diff --git a/AlivePDF/libs/FlexUnit.swc b/libs/FlexUnit.swc
similarity index 100%
rename from AlivePDF/libs/FlexUnit.swc
rename to libs/FlexUnit.swc
diff --git a/AlivePDF/pom.xml b/pom.xml
similarity index 100%
rename from AlivePDF/pom.xml
rename to pom.xml
diff --git a/AlivePDF/src/main/flex/org/alivepdf/annotations/AnnotationHighlight.as b/src/main/flex/org/alivepdf/annotations/AnnotationHighlight.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/annotations/AnnotationHighlight.as
rename to src/main/flex/org/alivepdf/annotations/AnnotationHighlight.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/annotations/AttachFileStyle.as b/src/main/flex/org/alivepdf/annotations/AttachFileStyle.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/annotations/AttachFileStyle.as
rename to src/main/flex/org/alivepdf/annotations/AttachFileStyle.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/annotations/StampStyle.as b/src/main/flex/org/alivepdf/annotations/StampStyle.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/annotations/StampStyle.as
rename to src/main/flex/org/alivepdf/annotations/StampStyle.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/cells/CellVO.as b/src/main/flex/org/alivepdf/cells/CellVO.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/cells/CellVO.as
rename to src/main/flex/org/alivepdf/cells/CellVO.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/colors/CMYKColor.as b/src/main/flex/org/alivepdf/colors/CMYKColor.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/colors/CMYKColor.as
rename to src/main/flex/org/alivepdf/colors/CMYKColor.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/colors/Color.as b/src/main/flex/org/alivepdf/colors/Color.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/colors/Color.as
rename to src/main/flex/org/alivepdf/colors/Color.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/colors/GrayColor.as b/src/main/flex/org/alivepdf/colors/GrayColor.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/colors/GrayColor.as
rename to src/main/flex/org/alivepdf/colors/GrayColor.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/colors/IColor.as b/src/main/flex/org/alivepdf/colors/IColor.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/colors/IColor.as
rename to src/main/flex/org/alivepdf/colors/IColor.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/colors/RGBColor.as b/src/main/flex/org/alivepdf/colors/RGBColor.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/colors/RGBColor.as
rename to src/main/flex/org/alivepdf/colors/RGBColor.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/data/Grid.as b/src/main/flex/org/alivepdf/data/Grid.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/data/Grid.as
rename to src/main/flex/org/alivepdf/data/Grid.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/display/Display.as b/src/main/flex/org/alivepdf/display/Display.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/display/Display.as
rename to src/main/flex/org/alivepdf/display/Display.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/display/PageMode.as b/src/main/flex/org/alivepdf/display/PageMode.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/display/PageMode.as
rename to src/main/flex/org/alivepdf/display/PageMode.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/drawing/Blend.as b/src/main/flex/org/alivepdf/drawing/Blend.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/drawing/Blend.as
rename to src/main/flex/org/alivepdf/drawing/Blend.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/drawing/Caps.as b/src/main/flex/org/alivepdf/drawing/Caps.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/drawing/Caps.as
rename to src/main/flex/org/alivepdf/drawing/Caps.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/drawing/DashedLine.as b/src/main/flex/org/alivepdf/drawing/DashedLine.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/drawing/DashedLine.as
rename to src/main/flex/org/alivepdf/drawing/DashedLine.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/drawing/Joint.as b/src/main/flex/org/alivepdf/drawing/Joint.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/drawing/Joint.as
rename to src/main/flex/org/alivepdf/drawing/Joint.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/drawing/WindingRule.as b/src/main/flex/org/alivepdf/drawing/WindingRule.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/drawing/WindingRule.as
rename to src/main/flex/org/alivepdf/drawing/WindingRule.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/encoding/Base64.as b/src/main/flex/org/alivepdf/encoding/Base64.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/encoding/Base64.as
rename to src/main/flex/org/alivepdf/encoding/Base64.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/encoding/JPEGEncoder.as b/src/main/flex/org/alivepdf/encoding/JPEGEncoder.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/encoding/JPEGEncoder.as
rename to src/main/flex/org/alivepdf/encoding/JPEGEncoder.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/encoding/PNGEncoder.as b/src/main/flex/org/alivepdf/encoding/PNGEncoder.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/encoding/PNGEncoder.as
rename to src/main/flex/org/alivepdf/encoding/PNGEncoder.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/events/PageEvent.as b/src/main/flex/org/alivepdf/events/PageEvent.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/events/PageEvent.as
rename to src/main/flex/org/alivepdf/events/PageEvent.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/events/PagingEvent.as b/src/main/flex/org/alivepdf/events/PagingEvent.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/events/PagingEvent.as
rename to src/main/flex/org/alivepdf/events/PagingEvent.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/events/ProcessingEvent.as b/src/main/flex/org/alivepdf/events/ProcessingEvent.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/events/ProcessingEvent.as
rename to src/main/flex/org/alivepdf/events/ProcessingEvent.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/fonts/CoreFonts.as b/src/main/flex/org/alivepdf/fonts/CoreFonts.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/fonts/CoreFonts.as
rename to src/main/flex/org/alivepdf/fonts/CoreFonts.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/fonts/FontFamily.as b/src/main/flex/org/alivepdf/fonts/FontFamily.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/fonts/FontFamily.as
rename to src/main/flex/org/alivepdf/fonts/FontFamily.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/fonts/Style.as b/src/main/flex/org/alivepdf/fonts/Style.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/fonts/Style.as
rename to src/main/flex/org/alivepdf/fonts/Style.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/html/HTMLTag.as b/src/main/flex/org/alivepdf/html/HTMLTag.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/html/HTMLTag.as
rename to src/main/flex/org/alivepdf/html/HTMLTag.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/images/GIFImage.as b/src/main/flex/org/alivepdf/images/GIFImage.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/images/GIFImage.as
rename to src/main/flex/org/alivepdf/images/GIFImage.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/images/IImage.as b/src/main/flex/org/alivepdf/images/IImage.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/images/IImage.as
rename to src/main/flex/org/alivepdf/images/IImage.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/images/ImageFormat.as b/src/main/flex/org/alivepdf/images/ImageFormat.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/images/ImageFormat.as
rename to src/main/flex/org/alivepdf/images/ImageFormat.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/images/ImageHeader.as b/src/main/flex/org/alivepdf/images/ImageHeader.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/images/ImageHeader.as
rename to src/main/flex/org/alivepdf/images/ImageHeader.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/images/JPEGImage.as b/src/main/flex/org/alivepdf/images/JPEGImage.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/images/JPEGImage.as
rename to src/main/flex/org/alivepdf/images/JPEGImage.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/images/PDFImage.as b/src/main/flex/org/alivepdf/images/PDFImage.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/images/PDFImage.as
rename to src/main/flex/org/alivepdf/images/PDFImage.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/images/PNGImage.as b/src/main/flex/org/alivepdf/images/PNGImage.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/images/PNGImage.as
rename to src/main/flex/org/alivepdf/images/PNGImage.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/images/ResizeMode.as b/src/main/flex/org/alivepdf/images/ResizeMode.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/images/ResizeMode.as
rename to src/main/flex/org/alivepdf/images/ResizeMode.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/layout/Format.as b/src/main/flex/org/alivepdf/layout/Format.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/layout/Format.as
rename to src/main/flex/org/alivepdf/layout/Format.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/layout/Layout.as b/src/main/flex/org/alivepdf/layout/Layout.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/layout/Layout.as
rename to src/main/flex/org/alivepdf/layout/Layout.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/layout/Orientation.as b/src/main/flex/org/alivepdf/layout/Orientation.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/layout/Orientation.as
rename to src/main/flex/org/alivepdf/layout/Orientation.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/layout/Size.as b/src/main/flex/org/alivepdf/layout/Size.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/layout/Size.as
rename to src/main/flex/org/alivepdf/layout/Size.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/layout/Unit.as b/src/main/flex/org/alivepdf/layout/Unit.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/layout/Unit.as
rename to src/main/flex/org/alivepdf/layout/Unit.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/metrics/FontMetrics.as b/src/main/flex/org/alivepdf/metrics/FontMetrics.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/metrics/FontMetrics.as
rename to src/main/flex/org/alivepdf/metrics/FontMetrics.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/pages/Page.as b/src/main/flex/org/alivepdf/pages/Page.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/pages/Page.as
rename to src/main/flex/org/alivepdf/pages/Page.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/pdf/PDF.as b/src/main/flex/org/alivepdf/pdf/PDF.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/pdf/PDF.as
rename to src/main/flex/org/alivepdf/pdf/PDF.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/saving/Download.as b/src/main/flex/org/alivepdf/saving/Download.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/saving/Download.as
rename to src/main/flex/org/alivepdf/saving/Download.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/saving/Method.as b/src/main/flex/org/alivepdf/saving/Method.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/saving/Method.as
rename to src/main/flex/org/alivepdf/saving/Method.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/tools/sprintf.as b/src/main/flex/org/alivepdf/tools/sprintf.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/tools/sprintf.as
rename to src/main/flex/org/alivepdf/tools/sprintf.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/transitions/Dimension.as b/src/main/flex/org/alivepdf/transitions/Dimension.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/transitions/Dimension.as
rename to src/main/flex/org/alivepdf/transitions/Dimension.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/transitions/MotionDirection.as b/src/main/flex/org/alivepdf/transitions/MotionDirection.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/transitions/MotionDirection.as
rename to src/main/flex/org/alivepdf/transitions/MotionDirection.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/transitions/Transition.as b/src/main/flex/org/alivepdf/transitions/Transition.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/transitions/Transition.as
rename to src/main/flex/org/alivepdf/transitions/Transition.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/transitions/TransitionDirection.as b/src/main/flex/org/alivepdf/transitions/TransitionDirection.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/transitions/TransitionDirection.as
rename to src/main/flex/org/alivepdf/transitions/TransitionDirection.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/viewing/CenterWindow.as b/src/main/flex/org/alivepdf/viewing/CenterWindow.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/viewing/CenterWindow.as
rename to src/main/flex/org/alivepdf/viewing/CenterWindow.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/viewing/Direction.as b/src/main/flex/org/alivepdf/viewing/Direction.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/viewing/Direction.as
rename to src/main/flex/org/alivepdf/viewing/Direction.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/viewing/FitWindow.as b/src/main/flex/org/alivepdf/viewing/FitWindow.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/viewing/FitWindow.as
rename to src/main/flex/org/alivepdf/viewing/FitWindow.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/viewing/MenuBar.as b/src/main/flex/org/alivepdf/viewing/MenuBar.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/viewing/MenuBar.as
rename to src/main/flex/org/alivepdf/viewing/MenuBar.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/viewing/Title.as b/src/main/flex/org/alivepdf/viewing/Title.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/viewing/Title.as
rename to src/main/flex/org/alivepdf/viewing/Title.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/viewing/ToolBar.as b/src/main/flex/org/alivepdf/viewing/ToolBar.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/viewing/ToolBar.as
rename to src/main/flex/org/alivepdf/viewing/ToolBar.as
diff --git a/AlivePDF/src/main/flex/org/alivepdf/viewing/WindowUI.as b/src/main/flex/org/alivepdf/viewing/WindowUI.as
similarity index 100%
rename from AlivePDF/src/main/flex/org/alivepdf/viewing/WindowUI.as
rename to src/main/flex/org/alivepdf/viewing/WindowUI.as
diff --git a/AlivePDF/src/test/flex/org/alivepdf/TestHtml.as b/src/test/flex/org/alivepdf/TestHtml.as
similarity index 100%
rename from AlivePDF/src/test/flex/org/alivepdf/TestHtml.as
rename to src/test/flex/org/alivepdf/TestHtml.as