Flash Crashes IE
on http://www.sporta.be I placed a dynamic Flash-navigation which causes problems on older pc's. The error: "error in flash.ocx" occures and crashes Internet Explorer. This problem only happens the second time any page on the site is loaded.
Does anyone know what causes this problem ? Or somekind of a solution for it ?
I already tried the search function, but couldn't find any solid solution.
I use flash mx.
FlashKit > Flash Help > Flash ActionScript
Posted on: 09-07-2004, 04:37 AM
View Complete Forum Thread with Replies
Sponsored Links:
Flash Crashes?
i have a button that opens up another browser window with a html file, but it crashes the flash movie that calls it. the actionscript for the button is:
getURL ("javascript:window.open('GuestDJ.html','PopUp','h eight=450,width=500,top='+((screen.height/2)-225)+',left='+((screen.width/2)-250)+',toolbar=no,scrollbars=no,resizable=no,menub ar=no')");
weird thing is, it seems to work fine on macs but crashes on PCs. The original flash file that calls this turns white and displays <object>. What gives...
the site is http://www.soundexpress.net/
View Replies !
View Related
IE Crashes (flash.ocx)
Hi.
I've been doing a banner with a video streaming. I've made several banners before with the same streamin-code, but now, after a while playing the banner, IE reports an error with flash.ocx.
Banner URL: http://www.bacardiaward.dk/stream/banner712x201.html
Screenshot:
Streaming code:
Code:
// Create a NetConnection object
var netConn:NetConnection = new NetConnection();
// Create a local streaming connection
netConn.connect(null);
// Create a NetStream object and define an onStatus() function
var bnetStream:NetStream = new NetStream(netConn);
bnetStream.onStatus = function(infoObject) {
status_txt.text += "Status (NetStream)" + newline;
status_txt.text += "Level: "+infoObject.level + newline;
status_txt.text += "Code: "+infoObject.code + newline;
};
// Attach the NetStream video feed to the Video object
ba_video.attachVideo(bnetStream);
// Set the buffer time
bnetStream.setBufferTime(5);
// Begin playing the FLV file
bnetStream.play("MY URL");
View Replies !
View Related
Flash Crashes
i am experiencing this automatic flash crash:
if i run this code on frame 1 everything is ok(this is a simple function that scale a clip):
ActionScript Code:
function one(){
clip.scaleX+=.01
clip.scaleY+=.01
var _timer=setTimeout(one,1)
trace(_timer)
if (_timer==135){
clearTimeout(_timer)
}
}
one()
if i make a keyframe at frame 15 for example and cut and paste this code , flash will crash, anyone have an idea why?
View Replies !
View Related
Flash 8 Crashes On 10.4.9
Ever since I got my G5, Flash crashes frequently especially on larger files. I've decreased the history cache down to 20 but it still crashes. It happens more when publishing but at other irrelevant times as well. I've searched the archives here and see other folks with similar issues but have to find a solution. I make my living with Flash and really need to find a solution. Any help is greatly appreciated. Thank you.
View Replies !
View Related
Odd Crashes In Flash.
OK. Here's the story. I'm an amateur flash developer and i'm working on a project involving 3 scenes. Scene 1 = "Hall, Scene 2 = "Kitchen" and Scene 3 = "Garage". All is well and good. However, whenever i try to change the scene to "Kitchen" the entire program crashes. Wtf?
As well as that, it won't let me test the movie. Whenever i try, the progress bar goes to the end, but nothing happens. However, when i just test the scene, the scene works fine. This works with both "Hall" and "garage".
Another point to make is when the whole project is viewed using internet explorer/firefox (it will let me export the file as a .swf) it will let me navigate from the hall to the kitchen (and vice versa), but not from the kitchen to the garage. It just doesn't do anything. Doesn't crash. Nothing.
Please assist, any help would be very much appreciated, thanks.
View Replies !
View Related
XML Crashes Flash 8
Dear Kirupa,
The subject is pretty much the jits of the problem. I'm very new to xml and just trying to modify a tutorial i found here.
http://www.kirupa.com/developer/mx2004/thumbnails3.htm
As i work on it Flash 8 would crash. It would happen anywhere from 2-5min intervals after loading the files. I started a new file from scratch and it crashes. I worked on the file on another comp and it crashes. I've tried changing the publish settings to flash player 7,8 or actionscript 1.0,2.0, still crash. I saved the document as a MX2004 fla, still crash (and ran really slow).
So my best guess is that the actionscript has something to do with the crashing (since it crashed on other computer's flash).
Am I missing something here?
Do I have to use Flash MX 2004 for this to work?
Thx for reading!
View Replies !
View Related
Loop Crashes Flash...
hiya,
I have a lil prob concerning a loop function i made, that will fade in/out some images that are passed to the function. This fade has to be done over a set amount of milliseconds ( var nDelay).. but so far I've accomplished either showing or hiding the pics instantly, or flash crashes because the loop tends to go into an infinite state..
Can someone shed some light on my error?
Code:
function fade(item){
/*
Loop through the pics to see wich one is visible
and fade it out.
for ease of use and editing,
we wil set a variable containing the amount
of increase/decrease in Alphachanneling that will
occur per cycle.
In effect. the higher the value, the faster the fade
will be. It's set to 10 by defaut
So while looping, with every loop, the alpha value
will change by 10%.
*/
var nFade=10;
/*
Next, we need a variable that will determine how long
each cycle takes.. var represents millisecs
*/
var nDelay=500;
/*
Create an Array holding al the image items
*/
var objArr;
objArr=[];
objArr[0]=_root.picture1;
objArr[1]=_root.picture2;
objArr[2]=_root.picture3;
// First make all visible pics fade away
var i=0;
while(i<objArr.length+1){
if(objArr[ i ]!=item){ // we dont want to effect the item that was passed to the function
tellTarget(objArr[ i ]);
if(objArr[ i ]._visible==true){ // if it is visible, the fade the item out.
while(objArr[ i ]._alpha>0){ // Loop until item._alpha = 0
/*
This is the looping spot..
As long as this goes on, the fade is active
update An existing var containing millisec value
since last passed second
*/
sTimer=oTimer.getMilliseconds();
// If the millisec count is larger or equal to nDelay
// then the delay has passed, and we can change the items
// alpha channel value
if(parseInt(sTimer)>=nDelay){
objArr[ i ]._alpha=objArr[ i ]._alpha-nFade;
}
}
objArr[ i ]._visible=false;
}
}
i++;
}
// Now make the pic that was passed to the funtion visible.
item._visible=true;
while(item._alpha<100){ // loop until item._alpha=100
sTimer=oTimer.getMilliseconds();
if(parseInt(sTimer)>=nDelay){
item._alpha=item._alpha+nFade;
}
}
}
hope someone can help me with this..
ps: The sTimer is a var in the same MC as the function, and it updates automaticly, because I have set the onClipEvent(enterFrame) for the MC where it resides in..
the function appears to crash on the while(item._alpha<100){} part..
thanks lots in advance, Jim
[Edited by [RotA]Defiance on 10-14-2001 at 03:36 PM]
View Replies !
View Related
Smartclip Crashes Flash
Building an elaborate smartclip with gui, and dynamic functionality. The gui works fine by itself, as does the smartclip without it. Put the 2 together, and "down goes Frasier!" Sometimes I get an error message (failed memory), sometimes Flash just quits. Anybody know what may be happening? Any bugs/pitfalls with the "xch" movie clip technique?
thanks.
View Replies !
View Related
Flash MX - Crashes Comp
Greetings,
Need help here...
I'm working with Flash MX on:
- OS: Win XP Pro SP1
- CPU: PIII 1.1 Ghz
- Memory: 600MB ++ (640 shared for VGA 32MB)
- Motherboard: ASUS TUSI-M
- VGA: Onboard (SIS 630ET AGP)
- etc. etc...
Now...Flash crashes at random times, it crashes the whole system that i had to reboot it...when editing, clicking, moving, even playing flash in IE...everything that has Flash in it crashes my comp.
Working in other computers with flash MX meets no trouble at all.
I have a hunch, could it be possible that the ONBOARD VGA is causing all of this?
But perhaps a corrupt Flash file in system32...
Anybody can give any clue? or answers?
Thanks.
BANZAI!
mbokjamu
View Replies !
View Related
Flash CS3 Crashes On Publish
I am having a problem with Flash at work. Any time I try and publish a file, whether its a .swf, .exe, or whatever, Flash crashes and closes. I am running Windows Vista x32, and Flash CS3. Any file, as long as it is saved and publishing a copy of the file with the same name, does this. The only way I can get around it is publishing from an Untitled document that hasn't been saved yet....even then all I get is a preview, not an actual published file.
The files I am working with publish fine on other machines. I have contacted Adobe and all I got was "reinstall," and "run a clean install." I reinstalled 3 times, and have run CS3clean twice along with more reinstalls (once each using each separate level of cleaning.) None of it worked; I still get the same issue. Also, I cannot open the ActionScript tab without flash crashing; the only workaround is to open an untitled document, open the AS tab THERE, and THEN open an already existing document. From there though I can't check my syntax or auto-format.
Anyone heard anything like this before? Is it an issue with Vista? What can I do? It is a brand new machine at work, just set up 2 weeks ago. What's the deal?
View Replies !
View Related
Video Crashes Flash
Hi,
I've been working a lot with video files in Flash8. But unfortunately flash crashes very often. I figured out what cause it is. The imported video files become 100% tranparent/invisible on stage. When I compile and play my swf in flash, flash crashes completely. The strange thing about this is that when I open my .fla and then export for the first time, everything goes fine. When I change something in my fla and export again, it ALWAYS crashes. So everytime I change something in my fla, I have to reload the swf in order to make a succesfull export. Is this problem known or is it just my PC? ... I guess I could import the video files again but that's not a real solution. I have like 5 video files, each of them cropped and trimmed.
View Replies !
View Related
Buffering Bar Crashes Flash CS3
Trying to wrap up a video project for a client and the last step is adding a buffering bar to the FLVs we're progressively downloading. The problem is, every time I add the Buffering Bar component to the stage (both in the existing document and a blank text document), Flash CS3 decides to crash-o-rama as soon as the actions window gets opened. Is this a widespread problem? Is there a fix? Any feedback would be appreciated!
Thanks!
Brent
View Replies !
View Related
FLA Suddenly Crashes Flash 8
Hi there
I have been working on a project in Flash 8 on a mac
All of a sudden it crashed the app, and refuses to open without crashing FLASH each time i try........
All other FLA's on file work fine.
Is someone able to help me by opening the FLA, maybe in Flash CS, and save as a FLASH 8 and email me back????
i am tearing my hair out.
Thanks in advance J
ustin
View Replies !
View Related
Flash Crashes And Disappears
Recently my open Flash 8 intermittently and suddenly disappears, blips out. Gone, as if it never was. It's not even a proper crash. No warning, no hanging, no logging. It relaunces fine, but any unsaved work is gone.
It only happens with Flash, and it happens whether I'm working with Flash at the moment, or if it's in the background. In any given day it can happen several times or not at all.
I'm using Windows XP, latest upgrade.
I've tried uninstalling and reinstalling Flash. The company where I work wants to fix it by rebuilding my computer from scratch, but I'm hoping for a less nuclear option. I hate transcending my attachments.
I have a hunch it's a conflict with another app. I suspected SE|PY for awhile, but it happened once when SE|PY wasn't launched.
View Replies !
View Related
Flash 8 Crashes And Quits
Downloaded and installed Flash 8, then started a new project.
Imported a .flv and tried to look at the parameters, it crashed.
Opened it again, selected WIndow/Movie Explorer and it crashed.
Tried an old .flv file (not VP6 codec) and it did the same thing.
Trashed prefs, did the same thing.
Unistalled and reinstalled, did the same thing.
Don't know what to do now.
View Replies !
View Related
Flash 8 Crashes At Start
I just downloaded Flash 8 and when I try to run it shows the loading screen, gets to Initializing Fonts, and then there is a windows error saying:
"Flash 8 has encountered a problem and needs to close. We are sorry for the inconvenience."
In the Data Report:
"Error Signature
AppName: flash.exe AppVer: 8.0.0.478 ModName: unknown
ModVer: 0.0.0.0 Offset: 0000b7a4"
I don't know what to do, someone help me. =/
View Replies !
View Related
Flash 8 Crashes On Start OSX 10.4.8
Anyone know how to get so much as an acknowledgement from Adobe for bugs?
I paid shitloads for this software and can't even get a "We will look into it".
In the vain hope that someone else has a clue here is the relevant bit of the crash log:
Translated Code Information:
Rosetta Version: 17.15
Args: /Applications/Macromedia Flash 8/Flash 8.app/Contents/MacOS/Flash -psn_0_10747905
Exception: EXC_BAD_ACCESS (0x0001)
Thread 0: Crashed (0xb7fffa00, 0xb80a510c)
0xa07ea0cc: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : ___CFStringTransformNameMap + 0x33b8
0x00af3964: /Applications/Macromedia Flash 8/Flash 8.app/Contents/MacOS/Flash : __Z14GetProcAddressP11HINSTANCE__PKc + 0x20
0x00a26a34: /Applications/Macromedia Flash 8/Flash 8.app/Contents/MacOS/Flash : __Z15FWOleInitializev + 0xb4
0x00568900: /Applications/Macromedia Flash 8/Flash 8.app/Contents/MacOS/Flash : __ZN10CSketchApp12InitInstanceEv + 0x430
0x00adc324: /Applications/Macromedia Flash 8/Flash 8.app/Contents/MacOS/Flash : __ZN8CRealApp10InitializeEv + 0x2e8
0x00adc4b8: /Applications/Macromedia Flash 8/Flash 8.app/Contents/MacOS/Flash : __ZN8CRealApp3RunEv + 0xb8
0x00ae12dc: /Applications/Macromedia Flash 8/Flash 8.app/Contents/MacOS/Flash : __ZN11CWinAppImpl3RunEv + 0x48
0x00ae0ef8: /Applications/Macromedia Flash 8/Flash 8.app/Contents/MacOS/Flash : _main + 0x9c
0x004594f8: /Applications/Macromedia Flash 8/Flash 8.app/Contents/MacOS/Flash : __start + 0x1cc
0x00459328: /Applications/Macromedia Flash 8/Flash 8.app/Contents/MacOS/Flash : start + 0x30
0x58faffbf: No symbol
PPC Thread State
srr0: 0x00000000srr1: 0x00000000 vrsave: 0x00000000
cr: 0xXXXXXXXXxer: 0x00000000 lr: 0x00b5f84cctr: 0x00000001
r00: 0x00af3964 r01: 0xbfffdb10 r02: 0x00090000 r03: 0x00000000
r04: 0x00095540 r05: 0xbfffb940 r06: 0x1a2f1af2 r07: 0x00000007
r08: 0x00000001 r09: 0x00cf1650 r10: 0xa00068c0 r11: 0x22000022
r12: 0x900068ac r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
r16: 0x00000000 r17: 0x02131d00 r18: 0x00000000 r19: 0x00000000
r20: 0x179ce000 r21: 0x002d1fa8 r22: 0x0011b668 r23: 0x002c61c8
r24: 0x02823aa8 r25: 0xc7026020 r26: 0x00095540 r27: 0x002c0f28
r28: 0x002c0f68 r29: 0x0212bb80 r30: 0x00000000 r31: 0x00b5f84c
Model: MacBookPro1,2, BootROM MBP12.0061.B00, 2 processors, Intel Core Duo, 2.16 GHz, 2 GB
Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 256 MB
Memory Module: BANK 0/DIMM0, 1 GB, DDR2 SDRAM, 667 MHz
Memory Module: BANK 1/DIMM1, 1 GB, DDR2 SDRAM, 667 MHz
AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x86), 0.1.27
Bluetooth: Version 1.7.9f12, 2 service, 1 devices, 1 incoming serial ports
Network Service: AirPort, AirPort, en1
Serial ATA Device: ST910021AS, 93.16 GB
Parallel ATA Device: MATSHITADVD-R UJ-846
USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500 mA
USB Device: Apple Internal Keyboard / Trackpad, Apple Computer, Up to 12 Mb/sec, 500 mA
USB Device: IR Receiver, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA
USB Device: Bluetooth HCI, Up to 12 Mb/sec, 500 mA
View Replies !
View Related
Flash Crashes Dsl Modem
I have mozilla firefox installed on a windows xp computer and on a linux fedora core 6 computer. Both have the latest flash player plugin. Every time I open a web page with flash content my Actiontec dsl modem crashes and has to be reset. I am since I don't have a spare modem I am not sure how to tell if the problem is with Flash or with the modem.
Any suggestions would be appreciated.
View Replies !
View Related
Flash 9 Crashes Regularly
Flash Player 9 for Linux Seg Faults every time a window/tab running Flash 9 closes. This behavior is consistent, regular and reproducible. This has been a long standing problem after version 7. Version 8 (which was development only) and now version 9 continue to exhibit the same behavior. There are many reports of similar crashes in the Flash Player Forum.
Adobe is curiously silent. Do they even read these forums or do they use them as "honey pots" to attract bug reports and ignore them? Adobe has a very serious problem and it is time for them to get serious.
View Replies !
View Related
Flash 8 Crashes On Startup
I just got flash 8 and when i start it up, it does 'Reading fonts' and then crashes with 'Program has caused an unknown error and will now be closed by Windows'.
I thought this may be caused by a corrupt font but I have used software to check my fonts and none are corrupt.
Dr Watson log reports Exception number: c0000005 (access violation)
Can anybody help me get Flash 8 working?
View Replies !
View Related
Flash CS3 Crashes On Save --- PLS HELP
Hi all,
My first post. I have installed cs3 web design premium on Vista Ultimate and have had no problem working all the cs3 programs. In flash I try and save my work but it crashes the system. Could someone tell me where I might want to look for an answer. Tried everywhere online but can't find something. This is killing me as I need this working for my job. Thanks a lot.
Matt.
View Replies !
View Related
Flash Exe Randomly Crashes
I have a flash application that is published as an .exe file that is running on a dedicated windows xp machine 24/7. The problem is that it is crashing randomly (most of the time days between crashing). It seems to be when the application is idle as well and I don't get any sort of errors when it crashes, it just goes back to the windows desktop. Does anyone have any ideas how I can debug this? It doesn't seem like flash applications keep log files or am I wrong.
View Replies !
View Related
Flash Crashes PXE-Server
ello!
We use RedHat-PXE-Server Intel PXE daemon, PXE-2.0 Beta-1 (build 001). When we startet using PXE for setup new machines, we use dhcp-relay to diffrent machines (DHCP-Server and DHCP-Proxy ie. PXE-Server) At least 5 times a day some machines send out a dhcp-packet for searching an fms server and this packet crashes the pxe-server, because i think this packet is malformed. The DHCP-Server has no problem with this packet, but the pxe-server. This problem is seen on flash 8 and above. The contents of this packets can be viewd with tcpdump or ethereal/wireshark and it says:
Adobe Flash Proxy Auto-Discovery
+ktag=fpadreq;timestamp=28649419;zone=0;uri=rtmp://213.200.107.231:80/ondemand?_fcs_vhost=cp31165.edgefcs.net
How can i prevent the Flashplayer from creating those packets? We do not use any Edge or FMS or similar.
View Replies !
View Related
Flash CS3 Crashes When Publishing
Hi. I recently moved to Flash CS3, I run Windows 2003 x64 on my machine, works like a charm...
But I am having problems with Flash. Everytime I publish, Flash just closes. It saves, and publishes, but closes. Without any kind of notice.
Any idea?
View Replies !
View Related
Flash Crashes When Loading
I installed flash 8 on my computer and when I load the program it doesn't fully load. It crashes before it fully opens. I have tried reinstalling the program and it still doesn't work. I have also tried going under another user on my computer and it still won't open. I have also tried uninstallining the program and reinstalling my older mx version and that wont open either.
I really need some help.
I have tried researching this problem and I am very surprised to hear that no one else has this problem because there is no information out there for there for this problem.
View Replies !
View Related
Flash 8 Crashes When Using Actionscript
Hi there,
When using actionscripts my flash crashes often, a bug report is also registred in the Windows XP event viewer. It always happens when using actionscripts. Other actions never generated this bug.
Event Type: Error
Event Source: Application Error
Event Category: None
Event ID: 1000
Date: 8/7/2007
Time: 7:23:10 AM
User: N/A
Computer: 45PLF1J
Description:
Faulting application flash.exe, version 8.0.0.478, faulting module flash.exe, version 8.0.0.478, fault address 0x00002448.
For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
Data:
0000: 41 70 70 6c 69 63 61 74 Applicat
0008: 69 6f 6e 20 46 61 69 6c ion Fail
0010: 75 72 65 20 20 66 6c 61 ure fla
0018: 73 68 2e 65 78 65 20 38 sh.exe 8
0020: 2e 30 2e 30 2e 34 37 38 .0.0.478
0028: 20 69 6e 20 66 6c 61 73 in flas
0030: 68 2e 65 78 65 20 38 2e h.exe 8.
0038: 30 2e 30 2e 34 37 38 20 0.0.478
0040: 61 74 20 6f 66 66 73 65 at offse
0048: 74 20 30 30 30 30 32 34 t 000024
0050: 34 38 0d 0a 48..
Has anyone experienced or perhaps has a solution to this really annoying problem?
T.i.a.
View Replies !
View Related
Flash 9 Crashes My Browser
I have an Intel-based iMac running Mac OSX 10.4.4. Ever since updated my browsers for Flash Player 9, anytime I visit a website using flash, my browser crashes instantly. It's happened with both Firefox and Safari. I know it's the Flash Player because when I uninstall it, I can visit those pages without crashing. But not having Flash makes websites really boring and I cannot watch any YouTube clips. Any ideas on how to solve this problem?
View Replies !
View Related
Flash 9 Install Crashes IE6
I am having great problems with flash crashing ie6 on my Windows 2000 machine. I have tried uninstalling using the adobe uninstaller, re-installing, etc.. I cannot even get the player installed now since even the flash installer now crashes my browser.
A site that consistently causes the problem is www.go2bethany.com. I would contact them to see what it is that is loading, but I cannot get their home page loaded to get their contact information. Not sure I would get a response in any case.
Here is the (somewat badly worded) error message I get before I have only one choice - to shut down the browser.
SysFader: iexplore.exe - Application Error
===================================
The exception Illegal Instruction
An attempt was made to execute an illegal instruction
<<address of instruction given here >>
Click OK to terminate the program
Help!
View Replies !
View Related
Flash Crashes EVERYTIME
I am dead in the water. Flash CS 3 9.0 crashes 100% of the time after running a SWF. This happens using ANY SWF, even one that contains only the single line
trace("hello world");
I am using Mac OS X 10.5.5. This problem seems to have started after I installed Flex Builder 3 Pro Edition. I am not using Flex at the moment though, I am trying to use the Flash IDE. The odd thing is even if I run the simplest SWF outside of the IDE (by double clicking it in the Finder) I get a similar error.
I need both Flash and Flex on this machine. All was well just a few days ago. I am on a tight deadline and need to resolve this. The problem APPEARS to be some problem with the Flash Player itself, although Flex does not seem to crash. I paid a lot of money for these two applications and I need to figure this out quickly! All help appreciated.
The OS is reporting the following. The machine is having no other problems and no other applications crash. It's high end MacBook Pro with 4GB RAM and 2.5GHz Intel Core 2 Duo with 320 GB HD.
The error "The application Flash CS 3 has quit unexpectedly"
Process: Adobe Flash CS3 [827]
Path: /Applications/Adobe Flash CS3/Adobe Flash CS3.app/Contents/MacOS/Adobe Flash CS3
Identifier: com.adobe.flash-9.0-en_us
Version: 9.0.0.494 (9.0.0)
Code Type: X86 (Native)
Parent Process: launchd [65]
Date/Time: 2008-09-25 10:06:57.143 -0400
OS Version: Mac OS X 10.5.5 (9F33)
Report Version: 6
Exception Type: EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000014
Crashed Thread: 0
View Replies !
View Related
Flash Crashes EVERYTIME
I am dead in the water. Flash CS 3 9.0 crashes 100% of the time after running a SWF. This happens using ANY SWF, even one that contains only the single line
trace("hello world");
I am using Mac OS X 10.5.5. This problem seems to have started after I installed Flex Builder 3 Pro Edition. I am not using Flex at the moment though, I am trying to use the Flash IDE. The odd thing is even if I run the simplest SWF outside of the IDE (by double clicking it in the Finder) I get a similar error.
I need both Flash and Flex on this machine. All was well just a few days ago. I am on a tight deadline and need to resolve this. The problem APPEARS to be some problem with the Flash Player itself, although Flex does not seem to crash. I paid a lot of money for these two applications and I need to figure this out quickly! All help appreciated.
The OS is reporting the following. The machine is having no other problems and no other applications crash. It's high end MacBook Pro with 4GB RAM and 2.5GHz Intel Core 2 Duo with 320 GB HD.
The error "The application Flash CS 3 has quit unexpectedly"
Process: Adobe Flash CS3 [827]
Path: /Applications/Adobe Flash CS3/Adobe Flash CS3.app/Contents/MacOS/Adobe Flash CS3
Identifier: com.adobe.flash-9.0-en_us
Version: 9.0.0.494 (9.0.0)
Code Type: X86 (Native)
Parent Process: launchd [65]
Date/Time: 2008-09-25 10:06:57.143 -0400
OS Version: Mac OS X 10.5.5 (9F33)
Report Version: 6
Exception Type: EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000014
Crashed Thread: 0
View Replies !
View Related
Flash Crashes EVERYTIME
I am dead in the water. Flash CS 3 9.0 crashes 100% of the time after running a SWF. This happens using ANY SWF, even one that contains only the single line
trace("hello world");
I am using Mac OS X 10.5.5. This problem seems to have started after I installed Flex Builder 3 Pro Edition. I am not using Flex at the moment though, I am trying to use the Flash IDE. The odd thing is even if I run the simplest SWF outside of the IDE (by double clicking it in the Finder) I get a similar error.
I need both Flash and Flex on this machine. All was well just a few days ago. I am on a tight deadline and need to resolve this. The problem APPEARS to be some problem with the Flash Player itself, although Flex does not seem to crash. I paid a lot of money for these two applications and I need to figure this out quickly! All help appreciated.
The OS is reporting the following. The machine is having no other problems and no other applications crash. It's high end MacBook Pro with 4GB RAM and 2.5GHz Intel Core 2 Duo with 320 GB HD.
The error "The application Flash CS 3 has quit unexpectedly"
Process: Adobe Flash CS3 [827]
Path: /Applications/Adobe Flash CS3/Adobe Flash CS3.app/Contents/MacOS/Adobe Flash CS3
Identifier: com.adobe.flash-9.0-en_us
Version: 9.0.0.494 (9.0.0)
Code Type: X86 (Native)
Parent Process: launchd [65]
Date/Time: 2008-09-25 10:06:57.143 -0400
OS Version: Mac OS X 10.5.5 (9F33)
Report Version: 6
Exception Type: EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000014
Crashed Thread: 0
View Replies !
View Related
Flash CS4 Constant Crashes
Flash CS4 crashes on me all the time. I'm kind of surprised that there's no FAQ on Flash here which could help alleviate some of the most common problems.
I don't know what to tell you:
Windows Vista ultimate, up to date.
Quad core Intel Q6600
4GB of clean RAM
All I have to do is try to open up an older .fla file; crash. Most often just moving the playhead is enough to crash. I've had about 50(!) crashes over the last two hours, doing nothing out of the ordinary (working with tweens). I've killed my AV and any other unnecessary process, to no avail.
Some trick I need to know about before trashing this mudgiant?
TIA
Mathias
View Replies !
View Related
Flash Cs3 Crashes When I Try To Publish
Hello,
my flash cs3 is crashing every time I try to publish a file, why? I run vista business 32 bit
I didn't have problems until today,using flash cs3 for the last month
here is what the os says:
Problem Event Name:BEX
Application Name:Flash.exe
Application Version:9.0.0.494
Application Timestamp:46015140
Fault Module Name:Flash.exe
Fault Module Version:9.0.0.494
Fault Module Timestamp:46015140
Exception Offset:00c5958f
Exception Code:c000000d
Exception Data:00000000
OS Version:6.0.6001.2.1.0.256.6
Locale ID:1033
Additional Information 1:bd02
Additional Information 2:b71b5bf9ea5ff08d6fffcb887aba95ff
Additional Information 3:1fd9
Additional Information 4:0053c83f18f91bf1d56eaad6275e8c5b
Hint:
If I save the same .fla in another folder, flash cs3 doesn't crash when publishing. why? this looks that is happening in the root of the folder
Edited: 01/22/2009 at 04:16:18 PM by I Love Doing Websites
View Replies !
View Related
Script Crashes Flash
Hello all,
I am having problems with the attatched script. I have an if statement in a loop that keeps crashing flash. If I takw out the if statement it works. So I replaced the if statement with something I knew was true and it still crashed the Flash Authouring system. see attached code. NOTICE: The if statement " if ((1+2) == (2+1)) " is surely true. Thanks for any help I can get!!!
-- Kevin
Attach Code
while (p<=(patParagraph.length-1)) {
trace("The Copied p = "+p);
trace("patParagraph = "+(patParagraph.length-1));
paragraph = patParagraph[p];
trace("paragraph = "+paragraph.childNodes);
eval("_root.graphicChart_mc"+k+".patEd_mc.patEdRegion"+(b-lastRegion)+".paragraph_TX"+p).autoSize = true;
eval("_root.graphicChart_mc"+k+".patEd_mc.patEdRegion"+(b-lastRegion)+".paragraph_TX"+p)._visible = true;
eval("_root.graphicChart_mc"+k+".patEd_mc.patEdRegion"+(b-lastRegion)+".paragraph_TX"+p).text = paragraph.childNodes;
trace("The Text Is: "+eval("_root.graphicChart_mc"+k+".patEd_mc.patEdRegion"+(b-lastRegion)+".paragraph_TX"+p).text);
if ((1+2) == (2+1)) {
trace("This is true");
}
p++;
}
View Replies !
View Related
Flash Player Crashes - Please, HELP
Hello,
I have been working on a flash project for quite some time now, and I am approaching its due date. However, a major problem keeps ocurring - the flash player crashes when a certain actionscript function is executed. I have been struggling with it for a very long time, and am getting desperate to find out why it crashes before my deadline passes.
The applet crashes when a certain function is called, but not every time it is called. The crashing seems to be random - at least, I cannot find any pattern at all related to when it crashes.
Here is the code that I think is causing the problem. - the setUnitManagement() function is called directly before the applet stops.
Are there any known reasons for the flash player to crash? Any script or built-in actionscript function that could possibly cause this problem?
Please help! I am very stressed to get this fixed A.S.A.P.!
View Replies !
View Related
Flash Player Crashes
Help.
We've been doing livecasts for about a year now and recently started running into a problem. Whenever we switch to the DV camera using the Firewire input (on a Powerbook or MacBook Pro), the first thing that happens is that we fail to get a video connection. The next thing that happens, typically in under 10 seconds, is that the browser crashes. (Firefox, Safari, whatever.) Anyone else been through this or have any idea what could be going on? Thanks.
View Replies !
View Related
Flash Crashes PXE-Server
Hello!
We use RedHat-PXE-Server Intel PXE daemon, PXE-2.0 Beta-1 (build 001). When we startet using PXE for setup new machines, we use dhcp-relay to diffrent machines (DHCP-Server and DHCP-Proxy ie. PXE-Server) At least 5 times a day some machines send out a dhcp-packet for searching an fms server and this packet crashes the pxe-server, because i think this packet is malformed. The DHCP-Server has no problem with this packet, but the pxe-server. This problem is seen on flash 8 and above. The contents of this packets can be viewd with tcpdump or ethereal/wireshark and it says:
Adobe Flash Proxy Auto-Discovery
+ktag=fpadreq;timestamp=28649419;zone=0;uri=rtmp://213.200.107.231:80/ondemand?_fcs_vhost=cp31165.edgefcs.net
How can i prevent the Flashplayer from creating those packets? We do not use any Edge or FMS or what the hell else.
View Replies !
View Related
Trace() Crashes Flash CS3
Hi!
I have a nested for-next loop running in Flash AS3. The loop is functioning correctly.
But, when I add any trace() inside the loop to track variables, it crashes Flash CS3 (shuts down).
Has anyone else experienced this?
I am on Macintosh OSX. Flash seems to be crash-happy. I am still in my 30-day trial period, and not even sure I'll buy it. Seems to be quite buggy.
TIA
View Replies !
View Related
Known Flash Buggs, Crashes?
Hello!
Im currently working on my personal portfolio flash site at www.quackpack.se still under heavy construcion and I have run into some problems.
I donīt know if they are generated because I use SlideShowPRO gallery?.. But if I click on my link "Bildgalleri" then I will se my different links to my flash gallerys.. all stuff are loaded into an empty MC and it works..
but at home when clicking back and forward IE crashes and says there is some error.. and here on my work It crashes the same second i enter the BildGalleri link...
what could be wrong? are there any know problems with loading stuff into an empty MovieClip etc? this is driving me crazy
View Replies !
View Related
Flash Detection Crashes IE
I'm using a version of the official Macromedia Flash detection script provided in Flash Professional 8 which seems to work on most browsers but crashes in Internet Explorer.
Just wanted any help or comment if something stands out in the code. I've put up a version of the page for comment:
http://www.pacraig.com/detect.htm
The script should result in 1 of 3 things:
1. Flash 8+ installed: "Click to load swf content."
2. Flash 7 or lower, or no flash installed: "Follow installation instructions here..."
3. Flash undetectable or JavaScript not enabled: "Javascript required to detect flash."
Cheers
View Replies !
View Related
Known Flash Buggs, Crashes?
Hello!
Im currently working on my personal portfolio flash site at www.quackpack.se still under heavy construcion and I have run into some problems.
I donīt know if they are generated because I use SlideShowPRO gallery?.. But if I click on my link "Bildgalleri" then I will se my different links to my flash gallerys.. all stuff are loaded into an empty MC and it works..
but at home when clicking back and forward IE crashes and says there is some error.. and here on my work It crashes the same second i enter the BildGalleri link...
what could be wrong? are there any know problems with loading stuff into an empty MovieClip etc? this is driving me crazy
View Replies !
View Related
Flash Crashes System
Hello,
I would like to ask your attention for the following problem.
It seems to be the case that whenever I run a flashmovie in internet explorer or Firebird (those are the only browsers I tested in so far) and I scroll content inside the flash movie with a flash based scroller, that my entire system freezes up (reboot required).
A good example of a guaranteed freeze is browsing the flash exchange section of www.macromedia.com
The freeze doesnt always happen instantly. Sometimes after a few minutes and sometimes sooner.
Has anyone ever experienced the same?
System specs:
Windows XP
P3 600Mhz
256 RAM
GEforce FX Geforce FX 5200 (with latest drivers)
flash player 7.0.19.0
View Replies !
View Related
Flash 5 Crashes With Every Undo
Hello..
I wish I had something to contribute before I posted here with a problem, but since that is not so, I hope that someone can find it in their heart to help me out.
Every time I hit ctrl+z, flash 5 crashes on me, and when I restart the program and try to get in my file again, it will often crash several times attempting to open the project. I've tried rebooting, and that hasn't helped. Do I need to reinstall Flash?
View Replies !
View Related
Flash, Crashes? **fixed**
so i posted this on kirupa.com but nobody answered, so i'm trying here, hopefully i'll get some responses.
i'm working on this flash project and every time i try to test it, flash just closes. it didn't use to do this, but now it does. i dont know if it's a flash issue or not. something tells me that it's the code i have in it. the only reason i'm stuck is because the same code worked in the morning and stopped working in the afternoon. another reason is that no debugging window pops up to tell me that the code is not right. so the biggest problem is that i dont know what's not working! has anybody had this happen to them? does anybody have any idea what could trigger this? i'll post the code if anybody wants to see it, but like i said, it was working fine this morning. also, i tried to open other projects and they worked fine...so please, HELP ME!
thanks in advance!
View Replies !
View Related
Ie6 Crashes When The Mousepointer Leaves The Flash Movie Area. [Flash Player 8]
Not sure if this is the right area for this thread, but i'm not sure where it fits in...
I have a draggable map program that uses LoadVars.load to send location messages back to the server.
After a user saves a location, thereby triggering the load() method, and then moves their mouse pointer outside the area of the .swf movie on the html page, the browser crashes.
I haven't been able to replicate it on any other computer except this users', which is using Flash Player 8, and IE6. Of course the only user of this side of the app, is this user, so im forced to find an answer.
Anyone else run into this, or have any wisdom to impart on me?
View Replies !
View Related
Wacom Tablet Crashes Flash MX
I'm wondering if anyone else has experienced this. Flash MX is crashing about every 10 minutes (or more often) and I've traced it to my USB Wacom tablet (mouse and drawing tablet).
I'm running:
Windows 2000 (service pack 2)
700 Mhz
256 MB Ram
I've downloaded the latest Wacom drivers.
When it crashes, it's a hard crash -forcing me to restart my PC. All is well if I remove Wacom's "tablet.exe" from memory and use a normal mouse. Afterwhich, I can work all day without a crash in Flash MX.
Any ideas? Thanks.
View Replies !
View Related
|