Bogged Down On Layers (?)
Hello all,
I have a script on my buttons (4 buttons in total) that loads external MC onto the top level. I have some tweening going on so I have the effect of images sorta merging into each other. This can only be achieved by using levels since it does not unload the previous movie.
on (release) { loadMovieNum ("moviename.swf", ++_root.topDepth); }
But what I notice is that after clicking on any combination of buttons (like 10 times) the external swfs get bogged down, almost to a halt.
Is there anyway to eleviate the problem? Such as reseting the layer, unloading all the movies??
Thx in advance.
FlashKit > Flash Help > Flash ActionScript
Posted on: 04-23-2002, 12:58 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Program Gets Bogged Down With Only 4 Animations
I have 4 mcs of characters, each 60 frames long. My code is basically:
this.onEnterFrame {
a.play(); b.play() ...
}
However with just these 4 animations and nothing else, I can already 'feel' the program slowing down. I tried exporting the animations as swfs, and then importing them back in, but then they wouldn't play anymore. Anyone know what I can do to aleviate this?
[F8] Bogged Down With Syntax (XML And MovieClipLoader)
I'm playing around with xml to load text and images, i have a working flash file minus the xml and i'm trying to integrate the codes.
//using to load to center
var mclListener:Object = new Object();
mclListener.onLoadInit = function(img_mc:MovieClip):Void {
img_mc._x = (Stage.width - img_mc._width) / 2;
img_mc._y = (Stage.height - img_mc._height) / 2;
}
var myMCL:MovieClipLoader = new MovieClipLoader();
myMCL.addListener(mclListener);
myMCL.loadClip(imgUrl, img_mc);
//press button to load to center stage
menuBut1.onPress = function ()
{
var imgUrl:String = "images/Big_Daddy.png";
myMCL.loadClip(imgUrl, img_mc);
};
trying to add the working xml code to load the image part is too tricky for me!
//sample button code from my xml that works
function prevImage() {
if (p>0) {
p--;
img_mc._alpha = 0;
img_mc.loadMovie(image[p], 1);
desc_txt.text = description[p];
desc_txt2.text = description2[p];
img_mc._num();
}
}
//my attempt to integrate which fails
function prevImage() {
if (p>0) {
p--;
img_mc._alpha = 0;
//img_mc.loadMovie(image[p], 1);
var imgUrl:String = "(image[p], 1)";
myMCL.loadClip(imgUrl, img_mc);
desc_txt.text = description[p];
desc_txt2.text = description2[p];
img_mc_num();
}
}
i'm new to xml and movieClip loader class so i'm unsure what needs to be done?? All i want to do is get the xml to load to center stage.
cheers
rat
My Animation Gets Bogged Down, What Is Up With Processor Speeds?
It seems to me that my animation gets slow and bogged down when I have a couple elements going at once.
What causes this?
What are the ways around it?
So, even if the file is loaded, the animation might move slow if the computers processor speed isn't up to par?
Could you fill me in on the tips and tricks in dealing with this?
Thanks
Performance Of Flash Application Is Bogged Down Due To Vector Graphics Rendering
Hi All,
Overview of the application:-
-----------------------------
I have designed and developed a Flash application where in there are two functions exposed to its Activex container i.e. Dot Net application through External Interface.
These two functions are getting called after some time interval in millisecs.
One of them calls lineTo() function of graphics instance as attached sensor moves. Sensor connectivity is managed at Dot Net tier.
Now when the user moves this sensor fast and wierdly performance of the application is bogged down.
There is one button say "showDrawing" which displays this drawing.
My understanding/concerns/requirements:-
---------------------------------------------
1. When I stored all the sensor points in an internal data-structure (array) and join them (using lineTo()) at last, the performance is saved.
2.If a user clicks on this button we have to display the drawing until the button is clicked and further. So, clicking this button again slows down the application performance.
3. This application has essentially a call for real-time performance that means I can not hold back call to redraw().
My queries:-
--------------
1. I am still unsure about whether it was due to the graphics content or, graphics rendering of Flash Player (9 and upwards) or redraw() being called after each call to lineTo() function.
Please suggest.
Merging Layers Or Scanning Layers Into Image
Hello all. Been awhile since I've been to the FlashKit forums, but I'm learning something new.
Anyway, I've been programming in AS1 and AS2 for awhile and just recently started learning to do AS3. To start my learning progress I'm making a drawing program...
So far I just have draw and erase functions. Every time you "draw" it creates a new Shape object to draw on. This way if I want to add "Undo" I just go through and delete the new Shape object one by one. When you erase it creates a layer above the last draw area with a blend mode of "erase". So pretty simple.
The problem I have so far is that after drawing and erasing a bit it starts to get laggy as all the layers pile up on top of each other. When I add an undo function I will only have 10 steps of undo so to reduce overhead. But even without undo the extra layers are needed to be able to erase part of the drawing and then draw over where you erased.
So this brings me to my question. Is there a way in AS3 to merge together multiple layers or Shape objects? So after so many layers are created by drawing and erasing I can merge them into one flat one to reduce the processing needed.
I was thinking maybe I could do this though scanning the pixels on the clip contaning all the layers? I know I worked with saving images in Flash 8 before, but not sure how this works in AS3. I hear it's faster, hopefully fast enough to not have to wait 5 minutes every so many times you draw in my program.
And here's the code I have so far:
code:
var drawArray:Array=new Array();
var layerClip:MovieClip=new MovieClip();
var drawArea:Shape= new Shape();
this.addChild(layerClip);
layerClip.addChild(drawArea);
layerClip.blendMode=BlendMode.LAYER
drawArray.push(drawArea);
var drawLayer:int=0;
var prevX:int=0;
var prevY:int=0;
var erase:Boolean=false;
function runDraw(event:MouseEvent) {
drawArray[drawLayer].graphics.curveTo(prevX, prevY,(prevX+drawArray[drawLayer].mouseX)/2,(prevY+drawArray[drawLayer].mouseY)/2);
prevX=drawArray[drawLayer].mouseX;
prevY=drawArray[drawLayer].mouseY;
event.updateAfterEvent();
}
function startDraw(event:MouseEvent):void {
if (erase) {
drawArray[drawLayer].blendMode=BlendMode.ERASE
drawArray[drawLayer].graphics.lineStyle(6, 0x990000, .75);
}
else {
drawArray[drawLayer].graphics.lineStyle(2, 0x990000, .75);
}
drawArray[drawLayer].graphics.moveTo(drawArray[drawLayer].mouseX, drawArray[drawLayer].mouseY);
prevX=drawArea.mouseX;
prevY=drawArea.mouseY;
stage.addEventListener(MouseEvent.MOUSE_MOVE, runDraw);
}
function stopDraw(event:MouseEvent):void {
stage.removeEventListener(MouseEvent.MOUSE_MOVE, runDraw);
var drawArea:Shape= new Shape();
layerClip.addChild(drawArea);
drawArray.push(drawArea);
drawLayer++;
}
function toggleErase(event:MouseEvent):void {
if (erase) {
erase=false;
}
else {
erase=true;
}
}
stage.addEventListener(MouseEvent.MOUSE_DOWN, startDraw);
stage.addEventListener(MouseEvent.MOUSE_UP, stopDraw);
eraseBut.addEventListener(MouseEvent.CLICK, toggleErase);
Turn Selected Layers Into Guide Layers?
i had 3 layers selected... went to trash them and somehow the were turned into guide layers... this would be great if i could find out how it happened. rather than turning one at a time into a guide.
Anybody know how?
Importing AI Layers As Flash Layers
Is there a way to import Illustrator layers as Flash layers. Most of the time I export my Illustrator file as a swf then import it into flash. Then One by one I have copy an object...delete...then make a new layer and past it in place..
[F8] Layers ... Oh, GOOD LAWD, Layers
Greetings, Flash Gurus and Gurus-to-be,
i am mocking up a site, which can be found at HERE
The only links operational are Catering and King Cakes, and are only operational if you REFRESH the page. i know i am lacking a preloader, i have it built, but am not wasting time with it right now.
As you can see from the example, i have our little Butcher Guy off to the left, and for each "department" of our organization, i would like to dress him for the part. i want our butcher guy to fade in and out, and in the case of the King Cake page, i would like our logo and the Italian flag on the left to change into the traditional Mardi Gras colors in all their gaudy splendor.
My problem lies in the fact that my men seem to be piling up on one another, as does my Italian and Mardi Gras flags.
If i use "index.html" to load "Master.swf" (which is the initial, fade in page), and master.swf has inside of it, actionscript to load "MasterMardiGras.swf", (which is the King Cake page), how would i go about getting control and order in here?
Copies of the swf files are here:
http://img150.imageshack.us/my.php?image=loaderjw0.swf
http://img124.imageshack.us/my.php?image=masterqz4.swf
http://img145.imageshack.us/my.php?i...rdigrashh8.swf
http://img388.imageshack.us/my.php?i...ateringur4.swf
http://img125.imageshack.us/my.php?i...tercafety3.swf
Thanking you, i am, for your great, overflowing keg of knowledge!
Question About Controlling Layers From Other Layers
Is it possbile to create an action in a loaded movie in layer1 that will tell the movie in layer0 to go to a specific frame and start playing?
Another question I have is, can you load a movie into a container or layer and have it start, not at the begininning, but at a specific spot in the loaded movie's timeline?
Hidden Layers Vs Guide Layers
I often have things on a layer that I don't want to see while I'm working on another layer and frequently testing and tweaking and I used to just have those hidden in the timeline and they would publish. And if I didn't want a layer to publish, I'd make it a guide. In CS3 it seems that those hidden layers won't publish (though at times I've had them publish for me in certain files, but I don't know why).
Is there a setting I can choose to make hidden fields publish like they did prior to CS3?
Action Scripted Layers Always Act As Top Layers?
I used this snow effect from kirupa...
<A href="http://http://www.kirupa.com/developer/mx/snow.htm
However, the snow effect always acts like the top layer, ok what i mean is, i have 3 layers, (1)toplayer= a car, (2)middle= snow, (3)low= background.
I want to make the snow to be seen behind the car...i hope you understand what i mean , whenever i put the code from the link above it acts as the top layer and appears in front of everything.
Any help is appreciated...
Oh Layers..layers...I Hate Da Layers
HI!
so there is some hair on the floor, and some bald patches in my head...big deal!
anyways...at the moment my movie is kinda messy, but something is happening that really annoys me!
i have this mc that loads into a target..and then you click button2 and this loads mc2 into the target, ok fine!
BUT, what is buggin´me, is that when you click, say, button3, to load mc3...you see like whats underneat...on the very bottom layer...and i dont want that to happen....i want there to either be nothing...or atleast show the previously loaded mc...but not the very bottom.....
how can i solve this guys??
thanks very mucho! adios
Layers HELP
Hey. i want to make a button that hides layer 2, and one that shows layer 2. HOW DO I DO THIS (VERSION 4)
Layers
A small question, how can I alter the font of the Layer in the development environment, and make it smaller, so that I can display more layers on the screen?
Thanks in advance
Layers
Can I lets say. Load a layer (10) with a button on layer 5. and then on the layer 5 have a button that can control the scene, frame, etc. of the one that is loaded into 10.
Basically can i control one layer from another layer?
Thanks
Swf And Avi In Layers
I try to input a avi file into a html page, and a swf file would be the background. So I put the avi in a layer.
Now the problem is: when the html is loaded, the control bars of the avi windows media players can not show correctly. The border and buttons of it is gone.
Did any one knows how to solve? I`ve tried <img dynsrc=> and <embed src=>, and insert avi as a plugin.
Help With Layers
I've searched & searched and I can't find the answer to my problem:
Is there a way to place an instance of a Movie Clip onto a specific layer?
I have a swf file that loads another swf file into a specific target (cliptarget.loadMovie("clip.swf")). However, once that clip is loaded into its target, it doesn't work right. The clip runs fine on its own, and it appears to run fine when loaded into a level instead of a target mc (loadMovie("clip.swf", "_level5"), but I need the properties of the target mc to position the clip correctly.
I hope this is clear. Thanks.
-Glenn-
.swf's And Layers - Help
Hello all,
was wondering if anyone could give me a clue in regards to presenting swf's and layers on the same page. My problem is no mattter how high of a Z index I give to other layers on my page, the .swf always remains on top. The swf is in its own layer (Z index of 1), but just won't let itself be covered (by a drop down menu).
Thanks for any and all help.
I Need Some Help With Layers
I have 2 layers. One is a Movie Clip. And the other is the normal Animation. When I play the movie, The Movie Clip Covers my animation. Is there a way to make the movie clip stay behind while the animation stays in front?
Layers?
hey guys
how do I create a movie such as the animation on the amsterdam logo (stripes in motion) @ http://www.net-artdesign.com/amsterdamweb/
please help me with this...
thanx
Layers
I made a button in lots of layers and now I want to gather the button in one layer.
Is there an easier way to do this than copying and pasting every single layers objects?
Zava
How To Get My Layers Right?
I have 5 buttons that when moused over text for that buttons office location appears. The problem I'm having is that each one I mouse over has one side or two sides go behind the one next to it. I cannot space them apart any farther due to space constraints. How can I get this to work right? Is there a property I can set for "bring to front" when that button is moused over?
Thanks,
John
http://www.paltronics.com/InternationalButtons4.swf
Help With Layers
I want to do this what this person has done. I guess he typed the url for the first banner. But he created some other type javascript function for the next window that would appear so that when someone clicks on the new window the first url takes them to, a new layer, guessing, url shows to where he wants to take them to. Oh I don't know how to do this with the search index page I have. I don't know about object layers and additional javascript. I know I can click on my first image button and get the url.
But for the third url he used some javascript under the flash movie. Can anyone tell me exactly what this additional javascript is?
<script language="JavaScript">var PUpage="76001087"; var PUprop="geocities"; </script><script language="JavaScript" src="http://www.geocities.com/js_source/pu5geo.js"></script><script language="JavaScript" src="http://www.geocities.com/js_source/ygIELib9.js?v3"></script><script language="JavaScript">var yviContents='http://us.toto.geo.yahoo.com/toto?s=76001087&l=NE&b=1&t=1033039550';yviR='us';y fiEA(0);</script>
<!-- text above generated by server. PLEASE REMOVE -->
<HTML>
<HEAD>
<TITLE>secret2</TITLE>
</HEAD>
<BODY bgcolor="#000000">
<OL>
<LI>
<P ALIGN=Center>
<FONT COLOR="#00ff00"><BIG><BIG><BIG><BIG><BIG><B>THE
SECRET!</B></BIG></BIG></BIG></BIG></BIG></FONT>
</OL>
<OL>
<LI>
<!-- URL's used in the movie-->
<!-- text used in the movie-->
<!--(Opens new window) The Secret appears here 3. Now see what my secret
is! While you wait to surf on to next page... find out what my
secret is (takes only 20 sec or less to do) 2. Click on
one of the numbered links from 1- 20 on the popup window for
my secret to appear. 1. Click on the Banner Secret: make $.20 c per click
from your homepage! -->
<P ALIGN=Center>
<OBJECT classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0"
WIDTH=570 HEIGHT=500> <PARAM NAME=movie VALUE="secret2.swf">
<PARAM NAME=quality VALUE=best> <PARAM NAME=bgcolor VALUE=#000000>
<EMBED src="secret2.swf" quality=best bgcolor=#000000 WIDTH=570 HEIGHT=500
TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">
</OBJECT>
</OL>
<P>
<SCRIPT language="JavaScript1.2" type="text/javascript" src="http://pub45.bravenet.com/counter/code.php?id=354798&usernum=3837316521&grou pnum=45&cpv=1">
</SCRIPT> <noscript>
<A href="http://counter45.bravenet.com/index.php?id=354798&usernum=3837316521&cpv =1"
target="_top"><IMG src="http://counter45.bravenet.com/counter.php?id=354798&usernum=3837316521"
alt="Bravenet.com" border="0" /></A> </noscript>
<P ALIGN=Left>
</BODY></HTML>
<!-- text below generated by server. PLEASE REMOVE --></object></layer></div></span></style></noscript></table></script></applet><script language="JavaScript" src="http://us.i1.yimg.com/us.yimg.com/i/mc/mc.js"></script><script language="JavaScript" src="http://us.geocities.com/js_source/geov2.js"></script><script language="javascript">geovisit();</script><noscript><img src="http://visit.geocities.com/visit.gif?1033039550" border=0 width=1 height=1></noscript>
<IMG SRC="http://geo.yahoo.com/serv?s=76001087&t=1033039550" ALT=1 WIDTH=1 HEIGHT=1>
His website is this
http://www.geocities.com/secretbanner
My website is
http://people.txucom.net/kicker
I want the additional javascript to show the third button
when the second button's window, the search index page is clicked off, then the third button and the bonus icon.
Thanks
Help With Layers
This may help. Can I integrate the flash with the html in my index page. Can I make my entire flash movie as an object layer.
I'll come back with more questions later. Does anyone know of any good tutorials working with flash and building layers.
Layers
I am working on a movie, and as I use alot of differnet symbols I need many many layers. And that brings me to my question:
Does a movie run slower if I have too many layers in a scene? Or is the number of symbols shown at the same time the only thing that matters slows it up?
Layers Help.
sorry guys,
This is more of a DreamWeaver question then a flash one!
but,
How do you add a layer to a flashmovie.html in DRMX?
(my layers r always underneath it?
does anyone know?
Layers On A Map
Hi!
The project I'm working on is a simple map, with multiple overlays showing things like roads and subway lines. What I wish to do is have a Flash UI Checkbox activate or deactivate these layers immediately upon clicking.
What's odd is that there's no coherent reference or step-by-step on how to do this either in Flash MX's documentation, nor on FlashKit anywhere that I can see. This isn't a form that I'm going to email to anyone, and I don't want to weave it into an extensive corporate database backend. I just want the little map to have layers that flick on or off. *sigh* (background sound of escaping steam)
Could anyone help me with getting this running?
Charles
Layers
Ok... here's my problem,
i create a dynamic text zone like this:
createTextField("text",0,20,270,528,80);
text.multiline = true;
text.wordWrap = true;
text.selectable = false;
text.embedFonts = true ;
text.border = true;
text.autoSize = false;
text.text = _parent._level.content ;
text.setTextFormat(_parent._level0.fieldtextmforma t);
i want to place above the text an affect to make it appear ( for this i created a little blocmovie that i multiply and so on... )
problem is: the blocmovie stands "under" the text, ... how can i get it above the text?
thx for answers
Layers
My movie consists of different .swf'f loaded into empty MC's.
so I have my index.swf => I load biblioMC.swf into it => after that I load Characters into it, but this is where to problem starts... it won't load...
I made a Movieclipbutton which has a normal button embedded into it...
so what I did was... I added this AS to the button embedded in the MC
Code:
on (release){
loadMovie("", "emptyMC4");
loadMovie("Characters.swf", "_level3.emptyMC4");
}
I suspect it has something to do with the level but I can't figure it out...
can somebody help me? thx in advance...
PS: in the characters section I have another set of the same buttons which all have to load yet another .swf into the main movie... so it would be something like
index.swf => biblio.swf => characters.swf => Sam.swf
Layers
Is there any way you can merge layers in Flash MX. I know that in Photoshop you can take all of your layers and combine them into one layer. I have made several different layers that together they form one image. Just wondering!
THanks
Layers
I have a flash mx ditty that plays upon a first time visit to our site.
The problem is there is a DHTML menu that is supposed to appear over the area where the flash intro is.
The menu is appearing behind the flash image.
IS there a setting to have the flash ditty be on the bottom layer?
Thank you for any help you may have on this topic.
Just How Many Layers?
How many layers are too many layers in a movie? could someone give me an idea on just how many layers they have had in their movies? is there an overkill? i have around 35 right now, just in one scene, many of them makeup a characters design. is this too much? (i know the size of the project can vary the amount, but i just want to make sure this is fairly normal, and not overloading the system).
thanks again.
Layers On Top Of .swf
Hi all !
I have a javascript drop down menu on the top a webpage.
Just below is a .swf .
The problem is when I mouseover the menu. the layer appers below the .swf how do I bring on top of flash?
I don't want to use
<param name="wmode" value="transparent" >
because this wont work in netscape 4.7...
Any other solution/s... please help ...
flashprashi
Using Layers
Is it possible to have one layer looping itself while other layers keep doing other actions (possibly even bouncing around between frames inside their own layers)?
Layers...
hello. I have a movie clip that is duplicated, then another movie is loaded into it(loadMovie). Whenever I do this, the movie loses its depth with respect to the other layers. How can I control this movie clips layer? thanks in advance, dave
Layers
It might be really simple but, if I want to place one flash movie on top of one another in the same position in dreamweaver, how do I do it??
I put the flash movies into their own layers, so that I could position them properly and put them on top of one another, then I added behaviours to links so that when you press a particular link it players the right movie and hides the others.
But it doesnt work that way, it just plays one movie??
please help!!!!
Layers?
is it possible to embedd a flash movie behing html? i just want to add some alpha layer effects to the main content center of a html page can i do something like <td background="index.swf"> </td>? can i use a flash movie as a regular background image? thanks
Layers Help
If I made a character would I have to make a layer for each of its body parts that I want to move?? Ive been playing around with flash a bit and it seems that way.
Too Many Layers?
Hi all,
I'm having a problem that seems to be from too many layers. I'm trying to build up an image from 16 layers, like a mugshot with a separate layer for each facial feature. Each layer consists of a .gif image with transparency. The problem is, after the 12th layer, the first layer disappears. If I add another layer, the second one disappears, and so on. I thought you could have as many layers as you want. Help, Mr. Wizard!
Dave
Layers
I understand how to make them, and how the higher numbered layer goes in front of the lower. But how can I edit one layer while leaving the others alone? For instance I have a character standing against a background, how can I edit the character and leave the background alone?
Layers Help
Hi,
I've been working on an animated logo for my site. You can see the work I've done on the logo here. The problem is that the second eclipse (the smaller white circle that covers the small black moon) has to travel over top of the existing moon/eclipse to cover the smaller moon. What I would like is to have the eclipse simply come in from the right and cover the moon in the same way, just without having to cross over the big moon/eklipse. It sounds simple, but the way I have my layers setup is to have the small white eclipse's layer above the bigger moon layers, and no matter how I arrange the layers, I can't seem to efficiently get what I want.
I apoligize if I'm being confusing, but I think if you watch my animation you can understand what I'm talking about. If not, you can look at the .fla I attatched to my post or I can post pictures.
Thanks!
Layers
hi peeps!
i am having some difficulty with layers, and making my site work.
the thing is that i have a base mc, in that mc i got a target area (contents) and i load external swf´s in there. my problem is that when i click to load the next .swf, the target area and the contents do like a little flicker and reveal what is underneath the target area (which is another problem, i want whats underneath not to show!!!)
how can i do this? i am using mx 2004, if some1 has the time i can email my fla.
thanks!!!!!!
Layers?
ok i have this picture of a boot in a frig and i want to have this boot to be "highlighted" if you will when there is a mouse over or a click on the boot (which is also a link so when you click it you go to the boot page) i want it to have like a light blue filter, for lack of a better word, over it which i should be able to figure out. the what is hard is i want it too look like its freezing as the mouse clicks or goes over the image so the filtered color over the image kinda "flows" down the boot from top to bottom and then at the bottom some icicles grow how do i do that
.SWF Does Not Run Any Layers In Php
Good morning everybody an thank you for reading this!
All I want to do is to run a .swf in a phpnuke 7.0.
sounds easy, doesn´t it?
The Problem is:
My 1st.swf should load a 2nd.swf on frame 21 and stop then.
loadMovieNum("2nd.swf",4);
stop();
What it does:
It shows 1st.swf!
... and thats about it!
What it doesn´t:
It does not load "2nd.swf",4
(both files are in the same directory)
Everythings great on a normal HTML site.
Works wonderfully.
Here ist the code that I used in the php file:
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
if (!eregi("modules.php", $_SERVER['PHP_SELF'])) {
die ("You can't access this file directly...");
}
require_once("mainfile.php");
$module_name = basename(dirname(__FILE__));
//get_lang($module_name);
$pagetitle = "- $module_name";
include("header.php");
OpenTable();
?>
<div><object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
name="intro" width="800" height="500" align="absmiddle" id="1st">
<param name="movie" value="modules/test/1st.swf">
<param name="wmode" value="transparent">
<param name="quality" value="high"><param name="SCALE"
value="exactfit">
<embed src="modules/test/1st.swf" width="800" height="500"
align="absmiddle" quality="high"
pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" wmode="transparent"
scale="exactfit" name="intro"></embed></object></div>
<?php
CloseTable();
include("footer.php");
?>
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
I tried to post this in a nuke forum and was told to get away
from there, because it is flash´s fault.
No way. I don´t believe this.
It must be a phpnuke problem,
because it works as long as it doesnt run in php.
What have I done wrong so far?
Could you please give me a clou?
Thank you very much
Gustav
Help With Layers
I consider myself an intermediate/advanced Flash and web designer, but I'm having some trouble with a combination I'm using on my site. It seems that javascript pop-up windows appear behind (underneath) Macromedia Flash objects on the html page. Is this something that can be fixed in the <object> settings, in the Actionscript, or is there something else I'm missing? Here's what I'm talking about.
|