Add

AS3 Resizing SWF + SWFObject + JavaScript Tweener


Came across this cool javascript that tweens a bunch of objects. Javascript Motion Tweener

Here's an example

In the swf:

stage.align = StageAlign.TOP_LEFT;
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.addEventListener(Event.RESIZE, resizeHandler);
 
var openState:Boolean = true;
var closedSize:String = "200";
var openSize:String = "400";
 
var bg:Shape = new Shape();
bg.graphics.beginFill(0x454545, 1);
bg.graphics.drawRect(0, 0, 400, 400);
addChild(bg);
 
var bg2:Shape = new Shape();
bg2.graphics.beginFill(0x666666, 1);
bg2.graphics.drawRect(0, 0, 400, 20);
addChild(bg2);
 
var btn:Sprite = new Sprite();
addChild(btn);
btn.x = 10;
btn.y = 400-26;
btn.graphics.beginFill(0xCCCCCC, 1);
btn.graphics.drawRect(0, 0, 100, 16);
btn.buttonMode = true;
btn.useHandCursor = true;
btn.mouseEnabled = true;
btn.addEventListener(MouseEvent.CLICK, resizeClickHandler);
 
var label:TextField = new TextField();
label.autoSize = TextFieldAutoSize.CENTER;
label.selectable = false;
label.mouseEnabled = false;
label.defaultTextFormat = new TextFormat("Arial", 11, 0x454545);
label.x = 50;
label.htmlText = "RESIZE";
btn.addChild(label);
 
 
 
 
 
 
function resizeClickHandler(event:MouseEvent):void {
	try {
		navigateToURL(new URLRequest("javascript:setHeight("+ ((openState) ? openSize : closedSize) + "," + ((openState) ? closedSize : openSize) +");"),'_self');
		openState = !openState;
	} catch (e:SecurityError) {
		var alert:TextField = new TextField();
		alert.autoSize = TextFieldAutoSize.RIGHT;
		alert.selectable = false;
		alert.mouseEnabled = false;
		alert.defaultTextFormat = new TextFormat("Arial", 11, 0xFFFFFF);
		alert.x = 390;
		alert.htmlText = e.toString();
		addChild(alert);
	}
}
 
function resizeHandler(event:Event):void {
	bg.width = stage.stageWidth;
	bg.height = stage.stageHeight;
	btn.y = stage.stageHeight - 26;
}

And in the html:

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>resize test</title>
<script type="text/javascript" src="swfobject.js"></script>
<script language="javascript" src="Tween.js"></script>
<script language="javascript" src="Sequence.js"></script>
</head>
<body bgcolor="#ffffff">
 
 
 
<script type="text/javascript">
	// <![CDATA[
		function setHeight(start,end) { 
			t1 = new Sequence();
			t1.addChild(new Tween(document.getElementById('flashPulse').style, 'height', Tween.strongEaseOut, start, end, 0.5, 'px'));
			t1.start();
		} 
	// ]]>
</script>
 
<div id="flashPulse" style="width:400px; height:400px;">
 
</div>
 
<br>
Some Text
 
<script type="text/javascript">
	// <![CDATA[
	var so = new SWFObject("resize.swf", "pulseMovie", "100%", "100%", "9.0.0", "#000000");
	so.addParam("salign", "LT"); 
    so.addParam("scale", "noscale")
    so.addParam("AllowScriptAccess", "always");
	so.write("flashPulse");
	// ]]>
</script>
 
</body>
</html>

I have yet to fully test this on a windows machine so let me know if there are any problems.


Resize SWF Source Code

The Discussion

see what everyone is saying

  • Alfonso M July 23rd, 2008 at 10:44 am #1

    when I submitted this post I got an error, so I'm not sure if this will be a repeat? anyway thank you for the code! I've been looking for something like this for a while! thanks!
    one question! why do I get and error when running your code?
    SecurityError: Error #2051? hopefully you can help! thanks again!

  • djdonovan July 23rd, 2008 at 6:22 pm #2

    FYI, stage.stageWidth and stage.stageHeight in IE6 don't work.

    You might need to change the security permission in the html embedding of the swf. Without seeing the code, that's my best guess.

  • [...] solution was already given on http://blog.hydrotik.com/2007/09/27/as3-resizing-swf-swfobject-javascript-tweener/, and hes got all credits on this, but there wasnt a flex adaptation. Althogh it shouldnt be [...]

  • Gabriela Trindade Perry August 13th, 2008 at 6:32 am #4

    Hi.
    I wrote a post on my blog pointing to this page, and wrote also a small flex app with your code (as and html and javascript).
    Thought youd like to know :)
    Great app!

  • djdonovan August 13th, 2008 at 6:59 am #5

    Thanks Gabriela!

  • djdonovan August 13th, 2008 at 6:59 am #6

    I should redo this with Go and HydroTween. lol

  • Jeremy August 19th, 2008 at 12:39 pm #7

    i d'loaded the src files for this, but it seems if i republish the .fla all i see on the html page is a black square… no button, no gray background, nothing.

    anyone have any ideas why that may be happening?

  • djdonovan August 19th, 2008 at 1:23 pm #8

    Try re-downloading the link. I fixed an error. I would also check to see if you have strict error checking on.

  • [...] 所以就變的看起來這麼複雜了 首先還是拜一下GOOGLE 擲出了這篇AS3 Resizing SWF + SWFObject + JavaScript Tweener 一看簡直完美^^ 趕緊下載Javascript Motion [...]

  • Richard January 9th, 2009 at 8:55 am #10

    Hi there,

    I uploaded your files to my server to test them.

    http://www.fruitfuldesignstudio.com/resize/resize.html

    When you click your resize button, it changes from its large to small size, but when you click the button to take it back to the large size it jumps. Would you kow why this is happening. I've been viewing it on firefox v2 and Camino 1.6.4.

  • Richard January 9th, 2009 at 8:58 am #11

    When i view your example on the same 2 browsers, it works fine. Are the files for download the same as the ones that you're previwing?

  • djdonovan January 12th, 2009 at 4:02 pm #12

    There are some issues in some browsers with the width and height properties on the stage object. Check out the link above from Gabriela.

Respond

get in on the action.

* Required

bottega veneta deep coffee pocket bag deep weight loss pills bingo and game casino gambling online virtual how to win at slots versace deep coffee venus bag women does viagra work online bingo uk discount drugstore where to get viagra or cialis diazepam cheap without rx bingo and slots does cialis really work bingo gaming chanel yellow shoulder bag bingo for cash slot machine buy meds online without presciption lancel pearl premier flirt prada white shoulder bag prescriptions pain killers without a prescription viagra product information cialis generic levitra viagra cialis male enhancement online gambling offers manolo blahnik beige hangisi valium indications anya hindmarch beige hobo how does diazepam work who has the cheapest cialis price for tramadol levitra website price for generic viagra top anti depressants pharmacy zolpidem marc jacobs antique gold keylock messenger bag pill for acne casino gambling buy carisoprodol cheap create poker website zyban tablet jimmy choo purple wells shoes valtrex medication counseling for erectile dysfunction hey bingo louis vuitton patent beige sandals louis vuitton monogram idylle pink tote power bingo slot games gucci black evening bag xanax fedex oral jelly viagra new casino slots discount erectile dysfunction medication christian louboutin white ambrosina pumps poker machine games buy no phentermine prescription high stakes poker buy tory burch golden reva ballerina flats casino locations roulette casinos play online casinos bingo and slots viagra effect on women louis vuitton damier graphite keepall bandouliere marc jacobs royal blue keylock shoulder bag play roulette online casino mania online buy compazine buy gucci black trainers online casinos en internet how to win slots christian louboutin blush barcelona sandals prescription diet drugs us only mobile casino games natural clomid buy overseas viagra online casino canada online xanax fedex norvasc generic erectile dysfunction products zoloft canada uk viagra supplier casino bonus tory burch deep blue tory logo rain boots poker for money prescription drugs online adipex no prescription needed pharmacies geniune cialis no prescription ambien dosing how do muscle relaxants work valentino beige snakeskin clutch what is tadalafil ativan dosages sales viagra ysl white muse bag cialis to buy online gambling strategy cheapest phentermine pills christian dior biege medium saddle handbag alprazolam brand cheap viagra new zealand low cost adipex bally patent patent red jana tote ambien pharmacy manolo blahnik bow booties what is viagra used for dosage viagra new diet pill fda approved play slots online now cialis best price las vegas bingo cialis generic tabs versace purple venita bow satchel chloe patent purple cyndi tote fendi apricot snake peekaboo handbag discount lipitor prescription ambien ambien 10mg poker us levitra free samples do meridia phentermine work the same order celine black shoulder bag louis vuitton patent black sandals over the counter medication cheap 37 5 phentermine safe effective diet pills loewe white handbag dolce gabbana black trainers buying phentermine alprazolam generic for xanax ativan 2mg prada beige fairy l bag generic cialis canadian diet phentermine viagra online cheap europe cialis platinum play bingo levitra info prescription drugs migraines levitra alternative phentermine ingredient how does cialis work louis vuitton damier azure canvas galliera gm order amoxicillin new arthritis and psoriasis drug lipitor online pharmacy professional blackjack how does cialis ultram ingredients