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








One Flash Overlaps A Other Flash Movie Which Doesn't React Anymore?


Hi there,

So i made an expandable banner which overlaps a flash map. But now the flash map doesn't reacts any more for the part that is being overlap by the banner.

see (telecombinatie.nl/zakelijk2.php) and then the right banner?

regards




ActionScript.org Forums > Flash General Questions > Other Flash General Questions
Posted on: 10-05-2007, 08:41 AM


View Complete Forum Thread with Replies

Sponsored Links:

One Flash Overlaps A Other Flash Movie Which Doesn't React Anymore?
Hi there,

So i made an expandable banner which overlaps a flash map. But now the flash map doesn't reacts any more for the part that is being overlap by the banner.

see (telecombinatie.nl/zakelijk2.php) and then the right banner?

View Replies !    View Related
Beginner Problem: My Flash Swf File Doesn't Redirect Anymore..
My website was accidentially deleted by my web hosting company...fortunately I was able to restore the main swf file which was the intro screen to my site. I didn't create the flash file nor do I have any Flash programming experience...(althought I am a programmer.) I don't have the swf sourcecode, but this file was working properly for several years.

The swf flash index page simply hosts the swf file movie, and then the site has always redirected to the main site homepage. Since I restored the site, the flash movie shows, but instead of redirecting to the main web page, it now hangs at the last frame of the movie. Can someone please let me know what I am missing? Thank you very much for your time...Mitch

View Replies !    View Related
Controller Doesn't Play Movie Anymore
I've been working on this fla for a few weeks now, and for some reason, I can't advance the movie now. I try using the return key and it only advances one frame. I tried using the controller and it still only advances one frame. I opened older versions of the fla and it has the same problem. Has anyone seen this happen before? Is it possible that I have something turned off? I need to advance the movie without burning a swf. Any help is appreciated. Thanks.

View Replies !    View Related
Flash Movie Overlaps Div-based Menu
Hi, folks. I'm running into a pretty serious problem to which I'm really, really hoping someone will know a solution.

We use a menu system on our site which is made up of layers. It provides for flyout-hierarchical menus, and up until now has caused me no grief.

However, now that I've embedded a flash movie onto a particular page the layers that comprise the flyout menu items are hidden beneath the Flash movie.

I've tried putting the object tag inside a div and setting the z-index of the div to 1 (and also to -1) but that didn't work.

Can anyone take a look and let me know if they have any ideas?

http://www.unbc.ca/test.html

Cheers and TIA,

Pablo

View Replies !    View Related
Creating A Flash Movie That Overlaps Part Of The Rest Of The Web Page When You Rollov
I am fairly new to flash and was wondering if someone could help me to find a tutorial or tell me how to design a flash movie that gets bigger and looks like it is coming off the stage. It overlaps some of the rest of the web page that is done in something other than flash. A lot of the movie trailers that are done in flash have this effect when you mouse over them. Any help would be greatly appreciated and I hope you can understand what i am asking in my question.

Thank you

View Replies !    View Related
My Javascript "open Popup Window" Doesn't Work In Flash 8 Anymore? HELP?
I have the Flash MX 2004 program but recently I downloaded the Flash 8 Professional Trial to see what it has to offer.

I saved a file I was working on to Flash 8. Now my javascript to open popup windows on my website don't work anymore when the button is clicked.

Only when I save it back to my earlier version of Flash MX 2004, do my open pop up windows javascript work again on my buttons. Has anyone had this problem beside me or is there some type of new security issue I'm overlooking?

View Replies !    View Related
Scrollbar Doesn't React To Textbox
Hi Guys!

i have a strange problem here which drives me absolutely nuts and stalls all my work progress at the moment...

in my movie the Scrollbar component just won't react to the according textbox. it just stays there where i put it, doesn't dock in or actually scroll text.

it works fine everwhere else, just NOT in this particular movie!

i've tried everything and am getting quite desperate. did anyone encouter similar problems before? what could be the reason for this strange behaviour?


i would be glad for any kind of help! if you want so check it out, you can find my movie here:

http://www.steinmannbob.ch/GuestBook/GuestBook.fla


(it's supposed to be for this site:
http://www.steinmannbob.ch)

View Replies !    View Related
[F8] Button Doesn't Work Anymore
I've just upgraded to the CS3 version of Flash, and I discover that some of my earlier projects don't work that well anymore, particularly my buttons with events directly on them don't react!

For instance, this produce no result! Why is that? I've tried with different publishing settings!

on (release)
{
trace ("button pressed!");

}

I know that I can work around this by mybtn.onRelease = function()..., and so on - I just want to know why the good old way of placing the action on the button itself doesn't work anymore...

View Replies !    View Related
My Remoting Doesn't Work Anymore?
Hi all

I am having a big problem with my flash 8 right now. My remoting no longer works right. I've had some computer problems lately, and something has changed.

Now, my remoting doesn't work in the authoring environment. for example, the tutorial using talk.fla, talkback.php, and the remoting gateway, no longer works, but it used to.

when i run the .fla, the out put is
Calling returnString
Calling returnNumber
Calling returnArray
Error opening URL "http://localhost/amfphp/gateway.php"

that url is correct, if i place the string in my browser, it opens up the file ( and states "amfphp and this gateway are installed correctly. You may now connect to this gateway from Flash....")


my netconnection debugger shows
1. Connect- http://localhost/amfphp/gateway.php
2. Call - talkback.returnString(Flash Remoting is groovy);
3. Call - talkback.returnNumber(50);
4. Call - talkback.returnArray({foo:bar});

and thats it.

sSo, everything acts the exact same, no matter what gateway string I input in the .fla. It's as if, it doesn't matter, and just doesn't try or is blocked by something.

any ideas??

marrek

View Replies !    View Related
Why? Variable Doesn't Work Anymore?
Code:
function initBut(butName, releaseFunc, startPos, movie) {
trace(butName);
butName.onRollOver = function() {
_root.hare.gotoAndPlay(2);
_root.greyhound._x = startPos;
_root.greyhound.gotoAndPlay(2);
this.gotoAndStop("over");
};
butName.onRollOut = butName.onDragOut=function () {
this.gotoAndStop(1);
};
butName.releaseFunc = releaseFunc;
butName.gotoAndStop(1);
butName.onRelease = function() {
this.releaseFunc();
_root.initBut(_root.currentPos, _root.currentPosRollOver);
_root.currentPos = this;
_root.currentPosRollOver = this.releaseFunc;
//personalised bit
unloadMovie("stager");
_root.Barra._width = 0;
_root.Barra._visible = 1;
_root.BarraMoldura._visible = 1;
loadMovie(movie+".swf", "stager");
//----------------
delete this.onRollOver;
delete this.onRollOut;
delete this.onDragOut;
delete this.onRelease;
this.gotoAndStop("over");
};
}
function func1() {
trace("1 pressed");
_root.nowClicked = false;
}
function func2() {
trace("2 pressed");
_root.nowClicked = false;
}
function func3() {
trace("3 pressed");
_root.nowClicked = false;
}
function func4() {
trace("4 pressed");
_root.nowClicked = true;
}
function func5() {
trace("5 pressed");
_root.nowClicked = true;
}
initBut(but1, func1, 79, "home");
initBut(but2, func2, 198, "activate");
initBut(but3, func3, 257, "which");
initBut(but4, func4, 318, "user");
initBut(but5, func5, 378, "help");
Okay this is my code, found some of it on here to make a button not work and remain in on state until another button is pressed (that bit seems to work) however as you can see the variable to load the movie into the stager, works the first time, but then for some reason when it comes to be reclicked later (after another button has been pressed and it's available again) it works however it wont pass the variable from the final bit ie "home", "activate" etc

"Error opening URL ".swf" "

How come??? any ideas?

Thanks in advance...

View Replies !    View Related
Looping Doesn't Work Anymore
Hi please give me your thought's if possible i'm stuck at the moment.

I have made a scrollbar, "a year ago", which automaticly creates it'self (with duplicateMovie etc) after reading the number of thumbnail/buttons from a config.txt which i call with loadVarsText.

---eplaination---

In the root it reads in the number of thumbnail/buttons with a loadVarsText command.

Code:
loadVarsText = new loadVars();
loadVarsText.load("tekst/content.txt");
loadVarsText.onLoad = function (){
_root.aantal_showroom_keukens = this.aantal_showroom_keukens;
};
Then the scroller takes the number of thumbnail/buttons

Code:
this.scroll_thumbs.thumbs.buttons = [];
this.scroll_thumbs.thumbs.buttons.length=_root.aantal_showroom_keukens ;
After that the scroller generates the thumbnail/buttons
( I created 1 which call's it's button functions from the _root and it duplicates / the thing i'm stuck with is to let the button know which number he is, so he can load the good number of swf)

The script below is the script for creating/looping the thumbnails, but for somereason the last line gives: Left side of assignment operator must be variable or property.
Code:
thumb1_._visible = false;
for (i = 1; i <= buttons.length - 1; i++){
duplicateMovieClip("thumb1_", "thumb1_" + i, i);
eval("thumb1_" + i)._y = thumb1_._y + i * 40;
nummer = i;
loadMovie("small/small00" + nummer + ".jpg", "thumb1_" + i + ".holder_th");
eval("_root.thumbs.scroll_thumbs.thumb1_" + i + ".targ") = i;
}
This last line was working before, I think I mistakenly typed something which I oversee everytime.

I need the last line to parse the number "i" of the thumbnail button to the root.
So I can use that "i" number to load some swf when pushing the button.
At this moment I'm not getting any further...
I'm sure it's something stupid i'm doing :-)

Cheers if you someone help.

bassie

View Replies !    View Related
FSCommand With EXE Doesn't Work Anymore
Hi there!
I wonder if any of you has already tried this in FMX:

fscommand("exec", "myfile.exe");

It's not working!! It does in FL5 but not in MX, why?Have they changed anything?

Thank you for any hints!!
Marcos.

View Replies !    View Related
Flv Player (xml) Doesn't Work Anymore
Hello All,

I'm using Lee.. xml (flv payer tutorial) for playing my flv.
Everything used to work fine.. but suddenly i can't get it to
work anymore. When I'm online... it doesn't want to play the
flv (video's anymore)

what can I check??.. i'm sure the code is 100% correct as it worked before..
i'm thinking of some security setting or perhaps..got flashplayer 9 now installed!! it's driving me nuts!!

any suggestions?? what to check?

View Replies !    View Related
Flash Overlaps Menu - Help
hi, I have the following problem:
for navigation on my site I have horizontal javasript menu, with expanding sublevels. Just under the menu I have flash banners being rotated by phpAdsNew. So when the sublevels expand they are behind the flash banners (the banners overlap the menu)... I read about this a bit - the "z-index" property does not solve my problem, neither does exporting the banners in "wmode" with a transparent background, cause they're all done in swish...

so, if anyone knows how I can have the menu expand and be on top of the flash banner, then please kindly tell me how this can be fixed...

p.s. I posted this in a couple of forums and noone seems to know a solution - hope there is one though.

View Replies !    View Related
Why Flash Content Overlaps?
I am working on website. In that website I have inserted flash contents and also I have javascript dropdown menu above that.

When dropdown menu opens, Flash content overlaps it
and as a result dropdown menu hides.
Is there any way to prevent this problem??

View Replies !    View Related
Frame Rate Doesn't Work Anymore
frame rate doesn't work anymore
i though what happens if i plave 0 by the frame rate but the movie doesn't play ofcourse so i wanted to put it back but if i enter 5 and i want to play the movie i made it turns back to 0 please help a newbie!!!!!

View Replies !    View Related
My Preloader Doesn't Work Anymore In MX04.
Worked fine in MX but now in MX04 it just sits there and gives me a funny number in the percent text field when I test the movie. Here's my code on my MC.
code:
onClipEvent (enterFrame) {
loading = _parent.getBytesLoaded();
total = _parent.getBytesTotal();
percent -= (percent-((loading/total)*100))*.25;
per = int(percent);
percentage = per+"%";
loadBar._width = per;
if (percent>99) {
_parent.gotoAndStop(2);
}
}
I wanted to use the preloader component but the documentation explaining how to use it sucks, so I gave up on it. Lol. And now this, ahhhh.

View Replies !    View Related
Preloader Script Doesn't Work Anymore
Hi, I 've just switched to flash 8 and tried to preview one of the files I 've created in the earlier version. I 'm not sure if something's changed in action script. Here 's the troublemaking code:

onClipEvent (enterFrame) {
loading = _parent.getBytesLoaded();
total = _parent.getBytesTotal();
percent -= (percent-((loading/total)*100))*.25;
per = int(percent);
percentage = per+"%";
loadBar._width = per;
if (percent>99) {
_parent.gotoAndStop(2);
}
}

Anyone any idea? Thanks a lot in advance!

View Replies !    View Related
Logging In W/flash And Php/ Can't Make Flash React To Imported Variable.
Hello,
I am using this tutorial as a reference, and can't find out where I have gone wrong: http://www.flash-db.com/Ex1/
I have been trying to use flash as a front end to a php database. So far, I have succeeded in using flash to 1) register an account, which consists of username, password, and 2) succeeded in using flash to login to the database.
Unfortunately, I haven't been able to make flash respond to logging in to the database. I can successfully send variables from the login.php to input text boxes, but I cannot use those same variables inside an 'if' statement to cause profile.swf to load into _level1.
I am certain that the problem is with my actionscripting, and not with the php.

What is going on:
Inside index.swf is a MC at _root.login that contains the input text boxes, a dynamic text box (_root.login.lstatus) and a button which successfully passes username and password vars to login.php.
login.php successfully passes variables to flash via this code: echo "&login.lstatus=logged in!&go=1";

What I am trying to do:
I'm trying to use the var "go" to instigate the loading of profile.swf into _level1.

On frame 2 of index.swf (which is at _level0)

if (go ne "") {
loadMovieNum ("profile.swf", 1, "POST");
gotoAndStop (4);
} else {
gotoAndPlay (2);
}



Here are the .fla's available for dload. Please take a look at what is going on.

http://ncgn.steeped.net/index.fla
http://ncgn.steeped.net/profile.fla

The page in progress is at http://ncgn.steeped.net

View Replies !    View Related
Flash Menu Overlaps Content
i have an estore where the main menu is done in flash.. however even if the menu isn't expanded, the user will still not be able to click the content under the transparent flash.. this seems to be an error only in firefox.. any suggestions?

View Replies !    View Related
HEEELP.Link Doesn't Work Anymore After Drag
Hey ppl,

I'm seriously going crazy on this prob:

I have a MC called inlay with a button inside linking to an external web page. This MC is inside another MC called pages.

Additionally I have two buttons underneath the MC, one for enabling to drag the MC "pages" the other for disabling to drag the MC "pages".

Before using the enable/disable buttons the link inside the MC "inlay", which itself is inside the MC "pages", works perfectly, but after I clicked one of the buttons the link just doesnt work anymore.

I'm really going crazy!!!
here is the code i put into the 1st frame:


Code:
_root.butENABLE.onRelease = function() {
_root.pages.onPress = function() {
_root.pages.startDrag();
};
_root.pages.onRelease = function() {
_root.pages.stopDrag();
};
};
_root.butDISABLE.onRelease = function() {
_root.pages.onPress = function() {
_root.pages.stopDrag();
};
_root.pages.onRelease = function() {
_root.pages.stopDrag();
};
};
_root.pages.inlay.butLINK.onRelease = function() {
trace("link to url");
};
Please help me out!
Thanks a lot folks...

osinho

View Replies !    View Related
Okaaay... So My Rectangle Tool Doesn't Work Anymore.
Yeah. Whenever I select my rectangle tool in Flash MX (v6), it doesn't work. I click and drag to make a rectangle, and nothing happens. I've tried changing the stroke, changing the fill, nothing. I reset the panel set layout, nothing. I trashed all my preference files (I'm on a Mac, btw), nothing! What's up?!

View Replies !    View Related
Vista Gadget SWF Doesn't Want Policy File Anymore
We have developed a gadget application for Microsoft Vista one year ago,
gadget includes a swf file which loads data from our webserver,
so when client uses the gadget,
the address of swf is,
"file:///C:/Users/username/AppData/Lo...adgetSmall.swf"
so in regular,
if we don't prepare a policy file that gives permission from any swf that comes from any domain, the swf (so gadget) cannot load the data from our webserver,
in our tests that we made one year ago, we couldn't load data without using a policy file,
but one year later,
2 days before ,
when I was working I realized that policy file in the web server have been deleted 5 months ago (from iis log files, swf takes 404 when thet try to load policy file for 5 months),
I expect that gadgets should not work
but they are still working,
but how?
there is no policy file in our web server,
but the client swf,
which is in users' gadget file is able to load data from our servers,
In addition, the swf file that isused in gadget application doesnt work in a stand-alone application ( for example in a separate internet explorer, I got the following error in flash player logs

Warning: Failed to load policy file from http://xxx.xxx.xxx/crossdomain.xml
Error: Request for resource at http://xxx.xxx.xxxx/xxx/xxx.aspx by requestor from file:///C:/Users/xxx/AppData/Local/M...adgetSmall.swf is denied due to lack of policy file permissions.
)

I searched a lot, but I couldn't find anything,
yes there is no problem for me,
gadgets are working,
but only I'd like to learn, what have been changed, any comments will be appriciated..

View Replies !    View Related
[AS2] Path-Problem? Rollover Function Doesn't Work Anymore
Hi ppl,


I'm workin on this a while now and can't figure out whats wrong.
I think the path must be right but it is probably not. Hmmm.
The navi works now but the red (MC) button has a rollover effect wich doesn't work for some reason.

Can you take a look?

FLA

View Replies !    View Related
Drag Platform Help, After Mc Char Hits, It Works Or Doesn't Work Anymore
I am trying to start coding again, woohoo, so I am making a game.
Here is the link to the game.
I have the code on the platforms that you can drag. Char is the character mc.

ActionScript Code:
onClipEvent (mouseDown) {
    if (this.hitTest(_root._xmouse, _root._ymouse)) {
        this.startDrag();
    }
    if (this.hitTest(_root.char)) {
        this.stopDrag();
    }
}
onClipEvent (mouseUp) {
    if (this.hitTest(_root._xmouse, _root._ymouse)) {
        this.stopDrag();
    }
}

When the character lands on the platform the drag shouldn't work. Which it doesn't work, but sometimes one of the platforms cannot move anymore until the character hits it again. Just test it out and you will see my problem.

Maybe it isn't even the drag code. Maybe it is the character, here is the AS in the character.

ActionScript Code:
onClipEvent (load) {
    var platforms:Number = 5;
    var fall:Number = 0;
    var gravity:Number = 11;
    var speed:Number = 0;
    var maxSpeed:Number = 10;
    var jump:Boolean = true;
    var jumpSpeed:Number = 0;
    var jumpHeight:Number = 12;
}
onClipEvent (enterFrame) {
    _y += fall;
    fall<gravity ? fall++ : fall=gravity;
    _x += speed;
    if (Key.isDown(key.RIGHT)) {
        speed<maxSpeed ? speed++ : 0;
    } else if (Key.isDown(key.LEFT)) {
        speed>-maxSpeed ? speed-- : 0;
    } else {
        speed<0 ? speed++ : speed>0 ? speed-- : 0;
    }
    if (Key.isDown(key.UP) && !jump && fall<3) {
        jump = true;
    }
    if (jump) {
        if (jumpSpeed>0) {
            _y -= jumpSpeed;
            jumpSpeed--;
            fall = 0;
        } else {
            jump = false;
        }
    } else {
        jumpSpeed = 0;
        jumpSpeed = jumpHeight;
    }
    for (i=1; i<=platforms; i++) {
        var mc:MovieClip = _root["p"+i];
        if (hitTest(mc)) {
            if (_x<=mc._x-_width+speed) {
                _x = mc._x-_width;
                speed = 0;
            } else if (_x>=mc._x+mc._width+speed) {
                _x = mc._x+mc._width;
                speed = 0;
            } else if (_y<=mc._y-_height+fall) {
                _y = mc._y-_height;
                jump = false;
                fall = 0;
            } else if (_y>=mc._y+mc._height-jumpSpeed) {
                if (!jump) {
                    fall = jumpSpeed;
                } else {
                    _y = mc._y+mc._height;
                    fall = 2;
                }
                jumpSpeed = 0;
                jump = false;
            } else {
                if (_x<mc._x-_width+(mc._width/2)) {
                    _x = mc._x-_width;
                } else {
                    _x = mc._x+mc._width;
                }
            }
        }
    }
}

View Replies !    View Related
Allow Button In Flash Does Not React
Hi Everybody,

here is a problem I cannot solve right now, perhaps you can help us... on this page the "Allow" Button cannot be pressed, they don't react anyhow.
http://www.bloomstreet.net/pauke

I am glad for every idea....
Thanks & kind regards,

Henning

View Replies !    View Related
Movie Overlaps
Hi guys
my navigation system overlaps movies

i have attached a small(32kb) fla file....pls have a look and let me know how to do it pls.pls attach the sample fla as well.
if the attachment is big, mail it to me dimuth@jkcsworld.com

Thanks

Dimuth

View Replies !    View Related
Make Flash React On Multiple Keys At Once
hi,

how can i make my flash-movie react on multiple keys pressed at the same time. like move an object up and right with the keys <up> and <right> pressed at the same time? any ideas?

bye, stevie.

View Replies !    View Related
Wide Movie Clip On Stage And Overlaps
I have a world map graphic (double in-line) which runs over a sphere to give the impression of a rotating globe. This all works great. This is converted to a movie clip. When the clip is dropped on a bigger stage so that globe forms only part of the whole movie, the long horizontal map now appears on the stage instead of just in the bounds of the movie clip. This can be masked by blanking with slaps of the main stage background but this seems very crude. Short of multi-slicing the world map graphic, how else can the globe wrap-around be achieved? All contributions greatly received. TIA guys.

View Replies !    View Related
Flash CS4 Not Opening Anymore :(
Hello all, beforehand I thank you for your help. I use Windows Vista and I took all precautions and did scandisk/disk defrag/ and have numerous utilities to keep my computer clean so it can't be that...

I have been using Flash CS4 pretty regularly until about a week ago and i never had any real problems but now every time I open up Flash CS4 it gives me an error message and closes. It gives me the "Adobe Flash CS4 has stopped working" and that "Windows is checking for a solution to the problem", here is a screenshot: http://www.mediafire.com/imgbnc.php/...9d1fef9b4g.jpg

Does anyone know what is wrong? I hopefully want to avoid having to go through the reinstallation process and maybe someone could help? I again appreciate the help and hope everyone is well. [L=screenshot of error]http://www.mediafire.com/imgbnc.php/72821d3e935a89db809257ab9d1fef9b4g.jpg[/L]

View Replies !    View Related
Flash CS4 Not Opening Anymore...
Hello all, beforehand I thank you for your help. I use Windows Vista and I took all precautions and did scandisk/disk defrag/ and have numerous utilities to keep my computer clean so it can't be that...

I have been using Flash CS4 pretty regularly until about a week ago and i never had any real problems but now every time I open up Flash CS4 it gives me an error message and closes. It gives me the "Adobe Flash CS4 has stopped working" and that "Windows is checking for a solution to the problem", here is a screenshot: http://www.mediafire.com/imgbnc.php/...9d1fef9b4g.jpg

Does anyone know what is wrong? I hopefully want to avoid having to go through the reinstallation process and maybe someone could help? I again appreciate the help and hope everyone is well. [L=screenshot of error]http://www.mediafire.com/imgbnc.php/72821d3e935a89db809257ab9d1fef9b4g.jpg[/L]

View Replies !    View Related
Flash MX Bar Preloaders, Don't Work Anymore?
I remember when we used to work with Flash 4 (and the player) and we'd be implementing bar preloaders the preloader convieniently shows up from beginning to end; basically it worked as it should.

When i work with (try and create my own or even use already working files) with Flash MX the screen stays blank and stuck till it almost completels loading up the movies then carries on; in other words while it does load up it doesn't show the bar or anything. Is any one else facing such problems?

Does anyone know why this problem occurs.

Here's a Flash.com tutorial (that works) where u could test out a bar preloader: http://www.flashkit.com/tutorials/Ac...-689/index.php

Appreciate you guy's help!

Shams

View Replies !    View Related
No Sounds Playing Anymore In Flash
Hey guys,

I have a major problem. All of a sudden, I cant hear sounds anymore in flash. I've been working on a clip with audio in it, and I can't hear anything anymore! Also not in online flash videos.

When i open the sound file in windows media player though, it works just fine! I really don't understand what's the problem, but I need to have it fixed Can anyone help me?

View Replies !    View Related
Adobe Flash CS4 Won't Open Anymore :(
Hello all, beforehand I thank you for your help. I use Windows Vista and I took all precautions and did scandisk/disk defrag/ and have numerous utilities to keep my computer clean so it can't be that...

I have been using Flash CS4 pretty regularly until about a week ago and i never had any real problems but now every time I open up Flash CS4 it gives me an error message and closes. It gives me the "Adobe Flash CS4 has stopped working" and that "Windows is checking for a solution to the problem", here is a screenshot: http://www.mediafire.com/imgbnc.php/72821d3e935a89db809257ab9d1fef9b4g.jpg

Does anyone know what is wrong? I hopefully want to avoid having to go through the reinstallation process and maybe someone could help? I again appreciate the help and hope everyone is well. :)screenshot of error

View Replies !    View Related
Is A Pentium 3 Not Fast Enough For Flash Anymore?
I just wanted to reformat a Pentium 3 for use on the internet. The old Pentium 3 is a Dell Inspiron 8000 laptop.

I put on Windows 2000 with Firefox 3.1beta. The computer runs fine. However, when viewing most videos at YouTube the videos are constantly stuttering. The entire video has completely downloaded, it is just playback of the flash video is chocking the machine. The internet browser process maxes out the cpu.

To help resolve this issue, I have tried, IE6 - Safari - Chrome - K-Melon - Opera - Advant. On all these platforms, flash video causes the browser to max out the cpu. I even removed Flash 10 and installed Flash 7 - No change in performance.

So is a Pentium 3 not fast encough for Flash video at YouTube? Is there anything I can do?? Can I tell the flash player to use lower quality settings? I have not tried flash video on other sites.

View Replies !    View Related
Is Flash Designing Tool Anymore....?
I think with the release of as 3, flash is more diverted towards the OOP.

what do u think?

View Replies !    View Related
[CS3] Flash Movie Doesn't Get Refreshed On My Website - It Keeps The Old Movie
Hello

I need help - I have publish my flash movie on my index page. I made some changes (text, colors, movie clip) - when i upload the new version and refresh my website, it doesn't get refreshed. even if i change my settings in IE to automatically check new version of pages, or check on new IE restart, or whatever it keeps the old flash movie. I tried deleting my cookies, temporary files also. no change
It does my head in ..

anyone know what is causing this ? i'm using Flash CS3 and IE 6

Thanks in advance,

http://fetesvosjeux.*******.com is my website. You will probably see the new changes with grey background and movie dots but i still see the old one with black background and static dots

View Replies !    View Related
Flash Movie Doesn't Run
I got a problem when I surf a web site from a computer that run XP windows and IE 5.5, some flash movies don't run, but other yes.

I have surfed the same web site from other computers all the movies run well, I don't understand what happend.

Another question, how install automatically flash player in any computer that doesn't have install it.

Could you help me.

View Replies !    View Related
Stage.width && Stage.height Doesn't Work Anymore?
How do you get Stage.width and Stage.height in ActionScript 3.0

2.0 this works like a charm. I guess they may have moved this inside a deeper class or something.

thanks in advance.

View Replies !    View Related
Flash File Wont Open Anymore
Hi,
I really hope someone can help me.
I've got a .fla that for some reason will not open anymore!
The first time I tried to open it - it threw up a message "Failed to Open Document" - now it just doesn't do anything - nothing happens.
If doesn't work in either or MX 2004 Pro
If I can't recover it I've lost a shed load of work.
Any ideas!?

View Replies !    View Related
Flash ActiveX For IE6 Doesnt Work Anymore?
hi its a bit off topic but I dont know what to do
I was cleaning some prgrams on my comp and after that I cantplay flash movies on the webpages if I open them with IE6, however firefox works fine

I triet to instal player from Adobe homepage and it says installed successully but when i go to the page that has fllash movie it doent work well it works with flash versions 8 but those who are using flash 9 it doesnt work ...

Maybe my Macromedia Player still works but adobe Player doesnt?

I have disabled Adobe LM service but that was long time ago nd player was working fine...

any ideas?

Tnx!

View Replies !    View Related
Flash Movie Doesn't Play On Mac
I just finished this animated short and posted it, everyone else that doesn't have a mac can view it. But a mac user just checked it and said that it just doesn't load up.
The page with the animation is a pop up window.

The link is:

http://www.atnewground.org/
--the animation is on the right of the screen under the logo.

thanx
Ch33z

View Replies !    View Related
Flash Movie Doesn't Show In Ie
i posted this question yesterday but it's gone today! wierd....

anyway, my question was:

i made a splash page for my site and made an enter button with flash. i checked the page in firefox and it's working, but when i open it in ie, i can't see it

here's the flash movie:
http://freewebs.com/cybergene/splash.html

any idea why?

View Replies !    View Related
Flash Movie Doesn't Want To Play...
Ok, this is the first sort of anything flash I have created in like 4 years. I am making a banner and I have started to add in the motion tweens to fade the text in.

However, I also have some action script that displays the date and time, and I think that is what's stoping the movie from playing. I attached a screenshot - I thought if I just added a keyframe at the end of the timeline on the actionscript layer it would be fine. But what happens is when I play the movie the motion tween does not take place but the time function still runs.

View Replies !    View Related
Flash Movie Doesn't Work In IE
Please check and give your suggestion about this problem:
http://tucsonfreight.com (It's a Mambo website.)

It works well in FireFox, Opera but not working in IE.
Thanks,

View Replies !    View Related
Flash Movie Doesn't Run From 1st Frame
http://www.kirupa.com/developer/mx/p...transition.htm
I used this tutorial to make my flash movie. The main movie is 1.91MB in size and I've used the same technique and have uploaded the final product at:
http://www.systematixtechnocrates.com/AFTRA/intro.htm
but, the problem is that when once the preloader reaches 100% the main movie runs from frame no.250 or around and not from the 1st frame. Is it because the external movie is quite big in size?
When once the movie has been loaded fully, and we replay then the movie runs perfectly well. And, I don't face this problem when I publish and test it locally.

View Replies !    View Related
Flash Movie Doesn't Want To Play...
Ok, this is the first sort of anything flash I have created in like 4 years. I am making a banner and I have started to add in the motion tweens to fade the text in.

However, I also have some action script that displays the date and time, and I think that is what's stoping the movie from playing. I attached a screenshot - I thought if I just added a keyframe at the end of the timeline on the actionscript layer it would be fine. But what happens is when I play the movie the motion tween does not take place but the time function still runs.

Thanks for any help.

View Replies !    View Related
Flash CS3 Trial Version -> Dreamweaver 8 Won't Work Anymore
I recently installed the trial version of Flash CS3. It worked fine, but after the 30 day evaluation period, Dreamweaver 8, an app I've had installed for a few years now ceases to work. It loads up, then immediately crashes. Prior to that, both apps worked fine concurrently.

I uninstalled the Flash CS3 trial version. Still, Dreamweaver 8 crashes.
I found the CS3Clean Script, ran that, and Dreamweaver 8 still crashes.

I'm positive this has something to do with the 30 day evaluation period, because I was using Dreamweaver fine yesterday.

Any ideas on how I can fix this?

I've tried re-installing Dreamweaver along with the 8.0.2 update and still get the same results.
I have Flash 8 installed already, if that helps.

Thanks.





























Edited: 10/13/2007 at 01:40:51 PM by easymidget

View Replies !    View Related
Help Guys Code On Flash Mx Not Working Anymore On Mx 2004
Hi Guys, i think i need your help ok i have a button in flash when i click that button a pop up window will appear containing an animation, and that window should be the same size as the animation, i have a code before that i use, but now its not working on flash mx 2004.

heres the code i use before:

on (release) {
unloadMovieNum(3);
getURL("javascript:launchwin('teaser2.html' , 'newwindow' , 'height=400,width=550,left='+((screen.width-550)/2)+',top='+((screen.height-400)/2)+'')");
}

hope someone could fix this code for me, or maybe you have a more tighter code that i could use.

thanks in advance guys!! cheers!!!

View Replies !    View Related
Help Guys Code On Flash Mx Not Working Anymore On Mx 2004
Hi Guys, i think i need your help ok i have a button in flash when i click that button a pop up window will appear containing an animation, and that window should be the same size as the animation, i have a code before that i use, but now its not working on flash mx 2004.

heres the code i use before:

on (release) {
unloadMovieNum(3);
getURL("javascript:launchwin('teaser2.html' , 'newwindow' , 'height=400,width=550,left='+((screen.width-550)/2)+',top='+((screen.height-400)/2)+'')");
}

hope someone could fix this code for me, or maybe you have a more tighter code that i could use.

thanks in advance guys!! cheers!!!

View Replies !    View Related
Having The Main Movie React To A Swf Being Loaded...
On the main movie there is a menu that I want to trasform after the viewer selects an option. The menu should transform into a 'now loding' image and text until the other swf being loaded into an empty movieclip After the second file finishes its loading, the menu transforms from a loading screen into a new menu with text buttons only... Heh...Get the idea?

View Replies !    View Related
Copyright © 2005-08 www.BigResource.com, All rights reserved