Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Does The Entire Library Get Published?



I was wondering if when I publish a Flash file to .swf, does it publish the entire contents of the Library or only what is used on the stage?

I have many 'temp' items in my Lib and was wondering if I needed to cleanout what isnt used.

Thanks
Rich



SitePoint > Design Your Site > Flash and Actionscript
Posted on: Dec 8, 2005, 17:44


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

When You Export To SWF Does Entire Library Go?
i have a quick question:

once u make a SWF, do all of your library items go into the SWF as well?

the real question is this:

will having alot of extra items in my FLA library make the SWF bigger in filesize?

(or will it only grab whats used into the SWF?)

hope that's clear enough to understand

thanx

z

XML Thumbnail Gallery Works When Published In As1, When Published In As2 It Fails
if anyone can help, I believe it's a scoping issue?????


//import mx.transitions.*;
//import mx.transitions.easing.*;

// Create a new XML object.
//var myPhoto:XML = new XML();
myPhoto = new XML();
myPhoto.ignoreWhite = true;
myPhoto.onLoad = function(success) {
if (success) {

trace("success");

var numimages = this.firstChild.childNodes.length;
spacing = 70;
j = 0;

for (i=0; i<numimages; i++) {
picHolder = this.firstChild.childNodes[i];
thumbHolder = thumbnails.createEmptyMovieClip("thumbnail"+i, i);
thumbLoader = thumbholder.createEmptyMovieClip("thumbnail_image" , 0);
thumbLoader.loadMovie(picHolder.attributes.thmb);
trace(picHolder.attributes.thmb);
thumbHolder.style = picHolder.attributes.style;
thumbHolder.designer = picHolder.attributes.designer;
thumbHolder.cost = picHolder.attributes.cost;
thumbHolder.main = picHolder.attributes.main;
thumbHolder.caption = picHolder.attributes.caption;

thumbLoader.main = loader.createEmptyMovieClip("main_image", 0);

/////// load movie /////////

/*var mcl_obj:Object = new Object();
mcl_obj.onLoadInit = function(loader:MovieClip) {

//image_src._alpha=0;
new Tween(loader, "_alpha", Strong.easeIn, 0, 100, .8, true);
};

var my_mcl:MovieClipLoader = new MovieClipLoader();
my_mcl.addListener(mcl_obj);
my_mcl.loadClip(picHolder.attributes.main);*/


////////// end ////////////

if (j == 4) {
y += 50;
x = 0;
j = 0;
}
thumbHolder._y = y;
thumbHolder._x = j*spacing;
j++;

thumbHolder.onRollover = function() {
roll.gotoAndPlay(2);
roll.startDrag(this);
roll.test_txt.text = this.caption;
};
thumbHolder.onRollout = function() {
roll.gotoAndStop(1);
roll.test_txt.text = " ";
};
thumbHolder.onRelease = function() {
roll.gotoAndStop(1);
loader.loadMovie(this.main);
style.htmlText = this.style;
designer.htmlText = this.designer;
cost.htmlText = this.cost;
};
}
}
};
myPhoto.load("xmlphoto.xml");

Sound Only Attaching From Preloader Library Not Main Movie Library
Hi guys, i've got my main movie with sounds used in classes attached from the library via attachSound. works fine when run on its own, but when run through a seperate preloader swf it only works when the sound is in the preloaders library.

Any help would be much appreciated.

Shared Library Problem (Library File Loads Twice)
What I'm trying to do:
Share a button in one Flash file for use in an imported Flash file.

The problem:
My first Flash file is loaded twice for some reason: once for the initial load, and again when the second, imported file calls on the shared library items.

The players:
FLA/SWF - <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">tour</span> (104k)
FLA/SWF - <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">main-entrance</span> (54k)
SWF - <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">loading</span> (5k, preloader)
BT - <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">travel-button</span>, with MC <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">travel-ani</span> inside the button

The details:
The preloader, <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">loading</span> loads 104k worth of data, all of <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">tour</span> shows up. It is sharing a button (see below) in its library, <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">travel-button</span>.
Within <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">tour</span>, <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">main-entrance</span> then loads. The preloader loads 54k worth of data, the entirety of <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">main-entrance</span>.

Here's where the problem occurs:
<span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">main-entrance</span> has loaded correctly; the preloader is in the first frame, so we know this to be true.
<span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">main-entrance</span> is completely loaded; the file is 54k, and 54k are shown to be loaded as seen in the preloader.
However, after loading, when <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">main-entrance</span> is to go to Frame 2, it chokes. It takes twice as long as <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">main-entrance</span> to load (therefore roughly 108k), before Frame 2 shows up.
After about 20 seconds on a 56k modem, everthing shows up and procedes normally, happily ever after.

What I'm pretty sure is causing the problem:
When <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">main-entrance</span> goes to display the shared button on Frame 2, I'm pretty sure it's loading <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">tour</span> again (104k), in order to get access to its shared library. (Even when I delete the large image so <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">main-entrance</span> is only mere bytes, it still acts like its loading about 104k.) This is obviously no good.

Therefore, the million-dollar question is:
Why is my shared library loading twice, when it's shared? In other words: How can I share the library items in <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">tour</span> so that they can be used in <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">main-entrance</span> without loading the first file all over again?

Symbol linkage:
<span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">travel-button</span> in <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">tour</span>:
[x]Export for runtime sharing
[x]Export in first frame
URL: tour.swf

<span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">travel-ani</span> in <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">tour</span> (<span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">travel-ani</span> is an animation that plays when the user rolls over <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">travel-button</span>):
[x]Export for runtime sharing
[x]Export in first frame
URL: tour.swf

<span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">travel-button</span> in <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">main-entrance</span>:
[x]Import for runtime sharing
URL: tour.swf

<span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">travel-ani</span> in <span style="font-family:'bitstream vera sans mono', 'courier new', courier, fixedsys; background-color:#ccc;">tour</span>:
[x]Import for runtime sharing
URL: tour.swf

Reference External Library Movieclip In Library With AS3
Hello, i am able to load at runtime a library asset in flash cs3. i do this by setting up its linkage property and setting its base class. for eg

Class: MyButton
Base: flash.display.MovieClip

then in my document class, say i had com.kofi.InitializeTemplate, my class looks like this

package com.kofi
{
import flash.display.MovieClip;
import MyButton;

public class InitializeTemplate extends MovieClip
{
var testButton:MyButton;

public function InitializeTemplate():void
{
trace("the button class has been called");
testButton = new MyButton();
addChild(testButton);
}
}
}

however, once i bring in an external library asset(which i have already exported and set it base class etc), i am unable to call this shared library asset with as3. anyone know what i am talking about?

Library Size / Library Optimization
I have a large .fla. My library appears to max out because I am using a lot of bitmap images (trying to create a 9/11 tribute) I convert many of the bitmaps to symbols to get tween / fading effects. Some questions:

1. Does my Flash 4.0 Library have a size limit per .fla ?
If so, is it measured in items (like every time I get close to 120 it seems I can not add anymore) or is it measured in size / KB?

2. Does a symbol require the bitmap? If I delete my JPG the corresponding symbol goes away, should it?

3. How can I get more bitmaps used in my movie? I have a ways to go, and I am fighting the apparent library limit a lot right now.

4. Any tips on how to use a lot of bitmaps? I realize this adds to my movie size.

Any other tips in general would be appreciated.

Thanks...

Asset Library - Any Way To Dynamically "read" All Linked Items Within A Library
I've been meaning to ask this question for some time - hope it makes sense.

Basically - I'm using an asset library for fonts and other items. When that asset swf loads, is there a way to burn through all available linked items within that applicationDomain library and have their class names returned? It almost most makes sense to me that this capability could be a bad thing. I'm not complaining here, because using this method of shared assets sure beats the AS2 systems - but, currently, its a two step process: 1) add item to library, set linkage and 2) declare reference to that item whether within the asset fla Document class, or some other manager class that will be used to retrieve assets.

This is in lew of a post I replied to earlier: http://www.kirupa.com/forum/showthread.php?p=2379337

Hyperlink Entire Swf?
Hi,

How do I make the entire surface area of the movie clickable/hyperlinked? I need to make the link dynamic also.

I saw someone used this successfully, but where and on what do I place the following action? ANd if I need to create a button for this...how do I create a transparent button?


on (press) {
getURL(link, "_blank");
}

In HTML
<param name="movie" value="link.swf?link=http://www.flashkit.com">

Thanks

Linking Entire Swf To A URL
Is there a way to link a URL to am entire .swf? I want to link a URL to a completed movie, to be able to click anywhere and at any time during playback.

Scaling An Entire .FLA
So, here's the problem:

I'm working on a project with multiple layers, many frames, many library items, etc. I started out with a size of 800 X 600 for the stage. Now that I've got a lot of it done, I'm thinking an overall size of 1024 X 768 would be better. Problem is, resizing all of my movie clips, pics, buttons, text, etc. is pretty easy... making everything line up as it did before is not. Is there a way to do this, or maybe a tool that can be used to do this?

I'd appreciate any help at all very much.

Thanks.
Chris

Resizing Entire Fla
Is there a way to resize the entire file. I have an fla i want resized from 800x600 to 1024 x 768 and have all contents scale accordingly?
The document settings just increases the stage size...

How To Use A Loader For The Entire App?
Hi guys,

I've figured out how to use a Loader to load external components into my flash cs3 app, but nevertheless my swf file is still way too large (3.5 Mb)

Therefore I'd like to create a progress bar that indicates the remaining time for my entire website (www.siebebosch.nl) to be loaded, but I have not a clue how to do this. I mean: you cannot apply a Loader onto the same SWF it is actually in, can you?

Can anyone give me a hint?

Thanks!
Siebe

Resize Entire FLA?
...if I select all the layers on the main timeline, and resize, It only affects the keyframes where the slider is. How can I resize EVERYTHING in one move.

also, is there a numeric resize, like "Image Size" in PS.

Exporting Entire
I have the same question as in
this message which is:
Hi,
Does anyone know how to export all the elements in the library of a flash file?

i.e. Get all of the jpg's in the library into individual files?

I was thinking something like using shared libraries- but didn't get very far.

I have to be able to get out huge amount of media from flash libraries, but it is extremely time comsuming to click export as image, then name the etc.

Even if there isn't a specifc way, does anyone know any shortcuts or tips on doing it faster? Or even is there any api's availble with Flash Remoting or anything like that?

The original message from the other author has clarification of what's needed.

It's not a commercial job, and I could really do with some help - a friend made an interactive wedding invite, saved it, and found it was 8Mb, because all the scanned pictures and MASSIVE! The buttons are only 150x300 for example, but the imported image is something daft like 1800x1600!

I said I did Flash a few years ago, so I downloaded the CS3 trial, he sent me the .fla file (all 20Mb of it!), and promptly went on pre-wedding holiday, and now I've found what the problem is I don't have the assets to resize and then relink!

Any help would be really appreciated - this apparently will do as my wedding present to them, so you'll be saving me from shopping hell too!

Going Through Entire XML Structure
Hi guys,

I made the following function to recurse through an XML file:

private function parseMenuData(menuData:XML):void{

for each(var menuItem:XML in menuData.elements()){

trace("-----------------------------------------------------------");
trace("Menuitem " + menuItem.@name + "has " + menuItem.children().length() + " children.");

if(menuItem.children().length() > 0){

parseMenuData(menuItem);

}else{
trace("No children here");
}

}
}

No where I am getting stuck is how to store the structure. So if menuItem.children().length() > 0 then I know that node has children. If my structure was only one level, it'd be easy to go through the whole list and store it into an array. I am sure I can use a multi-dimensional array but not sure how to load it all in there since I don't know how many levels deep the XML file is I am loading....

Does that make sense? Any pointers? I'm not asking someone to write code for me but just make help point me in the right direction that I need to go for my own code...

Thanks!

Why Won't The Entire Txt Doc Show Up?
I have a .txt file that is loaded into my flash file, but for some reason, it only will display the first 300 or so characters and then it won't display anymore.

I'm not sure what is the problem. Is it my scrollbar or the mask that I have over the mc?

I've already checked the properties of the .txt box and it looked fine.. I'm not sure what's wrong..

The Entire Array...
Hi everyone. Sorry if this is a noob question. I took a looong hiatus from Flash and now I find my memory to be fuzzy. This is a question regarding arrays.

Let's say I have an array like...

var soda:Array = ["coke","mountain dew","pepsi"]

Now later on I want to target that array with an if statement. For example...

if (input.text == soda[0]) {
output.text = "Soda isn't very good for you...";
}

This of course will mean if the input.text is "coke" the cautionary output.text will follow.

However I'd like to make it so where if input.text is ANYTHING in the array the following output.text will follow. I've tried using soda, soda[] and soda[i]. I just can't seem to remember what to do in this situation. Any assistance would be greatly appreciated.

Entire Site = Same URL
I'm building out a site and wish to
a) check for a version of flash. I'm currently using moock's api.
b)keep the entire site under the same URL heading.

how do I go about this? How do I check for a flash version and keep the flash section under the same URL throughout the entire site. Is there a best practice?

for an example, check out mr. pixelranger's site.

lame question but i'm baffled at this point. hope you can help out!

Swf As Entire Site
Two questions in one really. only using flash for about 8weeks and built my whole site with it and embedded the swf in a DW page for the homesite, it's app 4.5mb, ist question does this swf load progressively or does a viewer have to download the whole 4.5mb befor seeing anything?
2nd question, where are the rest of Lees tutorials please, I stumbled on a listing of them but was simply directed to his current listing on gotoandlearn.com
Wolfie

SCALE AN ENTIRE SWF?
Guys I'm in a real bind, I just finished a project an realized that it is too big! Is there any way to scale my entire fla 80% without pixelation?

PLEASE HELP!!!!
thanks

kambiz

Scrolling Through An Entire Movie
I want to be able to have a scroll bar at the bottom of a movie that will allow me to click and drag the movie and in turn move to the corresponding location with the number of frames in the movie determing where to go...

I know that there are lots of text scrollers out there - but simply want to move through an entire movie.

Any suggestions?

Cheers,
Shawn

Scrolling An Entire Movie
I'm looking to do something similar to Boies, Schiller, and Flexner LLP's website (at http://www.boies-schiller.com).

I don't care about have the logo in the background at all, I just need to figure out how I can scroll the whole movie like they do.

Thanks!

Movie Entire Window?
Ok, I know this is really simple but Ive been working for a very long time and my mind is blank. What is the html code to make the entire window screen my flash movie? Thanks in advance.

Fading In/out Entire Scenes.
Hey people.

I've searched for threads with directly relating topics but I couldn't find any, some came close and some didn't work. I simply want to know how I can fade an entire scene with multiple layers out to introduce a new scene with a new style of website. I get the idea that you fade one swf out and one swf in, but how do you fade them? I can't seem to reduce the alpha for everything, the background for example wont fade. I want to fade it completely into black or white... Any suggestions? Thanks.

Best regards,

KD.

Scaling An Entire Movie...
Problem: I designed my movie at 800x600. I have large elements that are being tweened large to small and also changing alpha setting. I want to scale the movie down to a 640x480 movie established resolution to increase performance and to minimize the size of the browser window needed (I'm new to flash and I didn't know better... /grin)...



Question: What can I do? Here's a link, you may have other suggestions for this movie (also note that this file is incomplete).

http://www.trevorhunt.us

Best Way To Build An Entire Site?
What "exactly" would be the best way to build an entire site? Went to tutorials but they were a little vague.

Should I have each page be it's own .swf or what? And how about all the hyperlinks to & back from the other .swf's ??? ie. home page to products and then back to home page?

Bigtime nooB question I know but....Any help would be greatly appreciated..


Thx for your time

Regards

Ezekiel

Entire Webiste Theory
Hi there:


1) What is the rule of thumb when building an entire website with flash.

I desperately need your help!! I can't find this information anywhere?

***Is it wise to have a shell_like.fla with just the template design/look/feel of the site that does loadmovie calls to each individual movie (kind of where everything gets loaded into and this is how you load or unload movies and control the whole thing???...or HOW is it supposed to be done?

I sure wish I had a .fla with this so I could learn by it.

THAT IS MY HUGE QUESTION!!

I'd really appreciate it!!

Thanks,
Andrea
andreafowler@aol.com

Resizing Entire Movie
I'm sure there is a simple way to do this but I can not remember. I have a movie at 600x400 and I need to resize it to 800x600 for it to be loaded into another movie and fit size. I've tried selecting all frames and modifying but it seems to only modify the first instance of each symbol. Can anyone help?
Thank you

Anyway To Pause Entire Movie?
i've got a rather complex movie that loads an external swf and allows users to modify values (fonts, colors, alphas, etc.). the way i have achieved this is by having a number of looping controller clips. when the user is just about done, i have a preview button that loads the finished version of what they've done in a new explorer window but on a slower computer, this feature lags hard. is there anyway, short of stopping every single looping movieclip, to pause the movie so the lag does not happen?

Thanks.

Resize Entire FLA File?
Hello,
my fla file was created in 640 by 480, but i now need to resize it to 450 x 275. How is this done all at once without having to manually rescale every layer. I try to resize by selecting all layers and it only rescales the bottom one.
thanks
jay

Entire Flash Site
can anyone help me??
im creating a school project, and my presentation is a website.
Its to be all flash and stuff.
I'm firmillar with html & im pretty good, but i don't know how to make the site. I downloaded a .pdf file, with how 2 use a bg, and make buttons, which is done, but what else should i do, to create a sucsessful website??
also if anyone knows, i want to make it so i can have a button, and when u click on it, it enlarges and a video turns on, inside... anyone know how??
later
James

Can I Download An Entire Site?
I want to download a complete site, but i don't know how to.
is it possible with mac?

* Thanks!

Resizing An Entire Movie.
Is there an easy way to scale an entire movie down to a smaller size without having to actually go and rescale all of the objects/graphics in the library?

Thanks in advance.

Covering The Entire Page
Hi everyone...

i tried to make a letterhead for a company, and i used flash mx to create it, so that i can make animations later on..

anyway, time for my big deal...

i want to print a frame, and i want it to cover the entire paper print, but no matter what i do, i can't get it to cover the entire page..

there's always a white space on the left, right, top and bottom of the page when i check it out on print preview.

*gasp* help!

I Just Wanted To Thank The Entire Community
I just wanted to say thank you to everyone here that puts their time aside to help the folks that post here for help.

I am very new to Flash MX (owned for 2 months) and, with the help of this community have made leaps and bounds in understanding alot of the new components and its working relationships with AC.

A whole hearted thank you

¬_¬ Entire Game F*cked Up
well, the entire egine of the game works.
But whenever you crash, well...the whole game is having trouble restarting. I can put ANYWHERE an
if(something){
gotoAndPlay("menu",1);
gotoAndStop("menu",1);
nextFrame();
play();
}
NOTHING FREAKIN WORKS >=(
please somebody try fixing my game
Help. File attached. See if you could fix it!
Pretty advanced actionscripters ONLY! If it's too messy tell me. I'll rewrite the engine.

Entire Website In Flash? How
Hello, on this website http://www.dseonline.org/main.htm once you click on any section of the menu, it loads a section. Im wondering how do they make it call that section once you click that section on the menu.

Also how do they keep the template from not changing when you click a part on the menu?

Does anyone know what I mean or understand the structure of this flash website?

Thanks

Best Way To Mask Entire Scene…?
Hi there,

I want to do a sort of transition in which my scene is revealed. What is the easiest way to mask the entire scene? I was hopeful with placing all my scene's elements in a folder but as I learned– folders cannot be masked.


Any ideas?


Thanks!

Entire Websites In Flash
Im looking for a few good links on creating entire websites using flash, from the ground up. Any help would be, well, helpful, thanks =)

Entire Flash Websites
When creating a flash website should you build the entire website in one .fla? I thought it would be easier that way. OR should they be seperate .swf files and links should be play movies? I noticed from viewing other web pages that they have a pre-loader and that loads the entire web page so there is no waiting(well only at the beginning). Just wanted to know the best course of action.

Pre-loading Images, Not Entire Swf
hi,

can anybody help me with this issue... i have a webpage im making and it displays quite a few images for a portfolio.. well, the swf is 752 kb ! becuase the images are included in that one big load. how can i make a smaller load just for the home page, and then seperate loads for each section with an image ?

ive quickly uploaded the page to www.calme.co.nz so you can see what i mean. but i can also send the fla if required.

any help greatly appreciated.

thanks

Entire Site Preloader
well i have a question =)

is there a preloader that can preload all my site before its downloaded the site isnt done entirely in flash theres both the regular html with images and flash and music so is there a way i could get a preloader that would load all that, if ya how would i do it

Is There A Way To Resize The Entire Move?
Is there a way to resize the entire movie (.swf file) using actionscript 2?

Is There A Way To Resize The Entire Move?
Is there a way to resize the entire movie (.swf file) using actionscript 2?

Transfer An Entire Layer?
Is there a way I can transfer an entire layer from one Flash document to another? Obviously, I'm new at this.....

Grabing The Value Of The Entire URL Then Parsing It. Please Help
Hi,

I'm very new to Flash so please bear with me!
Two part question:

I need to grab the value of everything that is in the URL and store it in a variable.

I then need to parse that variable and store it in another variable like this:

(Var containing everything in the URL)
OriginalVar = http://www.blahblah.com/page1/whatver/....html

(Parsed Var)
ParsedVar = http://www.blahblah.com/page1/

I appreciate your help ahead of time! I'm kinda in a time crunch here!!
Take care,
Paul

Entire Web Page Will Not Display
Just starting out and need help. I downloaded a template and after updating only the index page, I uploaded to my test site.
The problem is that the entire page will not display, only the flash file displays - and only on some of the pages.
http://www.coast2coastbusiness.com/nextstep/index.html does NOT work.
http://www.coast2coastbusiness.com/n...p/index-4.html WORKS!
I even copied the html code from the "good" page, created a new page, uploaded but it will also not work.

Anyone have any suggestions?

Need To Rotate My Entire Swf 180 Degrees?
Whats the easiest way to do this?

Resizing The Entire Flashmovie
I'm building a image gallery in flash. The images and thumbnails are loaded from a xml document. It has a large image and rows of thumbnails underneath.
Underneath the flash movie is some html content.
Is there a way to resize the dimensions of the entire flashmovie? So that it doesn't matter how much rows of thumbnails are presented to align the html content right under the thumbnails...

thanks

Copyright © 2005-08 www.BigResource.com, All rights reserved