Skip to content

Commit

Permalink
minor changes, corrected index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
gka committed Aug 7, 2011
1 parent 1a7aa7a commit e93c5b0
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
Binary file modified bin/gettingstarted.swf
Binary file not shown.
7 changes: 4 additions & 3 deletions bin/index.html
@@ -1,7 +1,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>PureAS3</title>
<title>as3treemap demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="language" content="en" />
<meta name="description" content="" />
Expand All @@ -14,14 +14,15 @@
var params = {
menu: "false",
scale: "noScale",
align: "TL",
allowFullscreen: "true",
allowScriptAccess: "always",
bgcolor: "#FFFFFF"
bgcolor: "#000000"
};
var attributes = {
id:"PureAS3"
};
swfobject.embedSWF("PureAS3.swf", "altContent", "100%", "100%", "10.0.0", "expressInstall.swf", flashvars, params, attributes);
swfobject.embedSWF("gettingstarted.swf", "altContent", "100%", "100%", "10.0.0", "expressInstall.swf", flashvars, params, attributes);
</script>
<style type="text/css">
html, body { height:100%; overflow:hidden; }
Expand Down
2 changes: 1 addition & 1 deletion obj/examplesConfig.old
Expand Up @@ -18,9 +18,9 @@
</define>
<source-path append="true">
<path-element>Z:\Incubator\as3treemap-demo\src</path-element>
<path-element>Z:\Incubator\as3treemap-demo\lib\as3treemap</path-element>
<path-element>Z:\Incubator\as3treemap-demo\lib\as3corelib\src</path-element>
<path-element>Z:\Incubator\as3treemap-demo\lib\vis4.as\src</path-element>
<path-element>Z:\Incubator\as3treemap-demo\lib\as3treemap\src</path-element>
<path-element>\\psf\Home\Documents\www\moritz\sl\relbrowser</path-element>
<path-element>C:\Program Files\FlashDevelop\Library\AS3\classes</path-element>
</source-path>
Expand Down
4 changes: 2 additions & 2 deletions obj/examplesConfig.xml
Expand Up @@ -6,11 +6,11 @@
<compiler>
<define append="true">
<name>CONFIG::debug</name>
<value>true</value>
<value>false</value>
</define>
<define append="true">
<name>CONFIG::release</name>
<value>false</value>
<value>true</value>
</define>
<define append="true">
<name>CONFIG::timeStamp</name>
Expand Down
3 changes: 3 additions & 0 deletions src/GettingStarted.as
Expand Up @@ -25,6 +25,9 @@ package
var ldr:URLLoader = new URLLoader();
ldr.addEventListener(Event.COMPLETE, dataLoaded);
ldr.load(new URLRequest('flare.json'));

stage.align = "TL";
stage.scaleMode = "noScale";
}

protected function dataLoaded(e:Event):void
Expand Down
1 change: 0 additions & 1 deletion vis4.as
Submodule vis4.as deleted from 78072d

0 comments on commit e93c5b0

Please sign in to comment.