Font Causing Flash Crash On One Machine Only?
Mar 21, 2012
I have an issue whereby a new font (FFF Forward variant) installed on some machines works perfectly in flash (cs5.5) but on one machine causes an instant crash when the Type Tool is used.I know the font is the core of the problem but am unsure why it works on some flash installations (same versions) and not others?
I have tried every conceivable way of uninstalling/installing the font (even cmd prompt and safe mode!)I have flushed preferences files (obv inc typesupport folder)I have re-installed flash!I have even tried copying the prefs files from one of the working installations to the troublesome machine.I have run font verification and repair tools (nexus font, font creator, font val, font doctor, font lab...)No joy, still crashing
View 1 Replies
Similar Posts:
Aug 6, 2009
I've got a flex-based swf, which is loading an AS 2-based swf and then, negotiating further activity via a LocalConnection. From time to time, the AS 2-swf can request that the flex-based swf load a movie. I've arranged this via on(release){} functions. The AS 2-swf, I'm making in Swish Max. In Swish, when I set the on (release) on a text field, (to invoke .send() on my localconnection), it works splendidly. However, when I attempt to perform the same calls for an on(release) attached to a movieclip, it actually causes the Flash player, and even the browser plugin to crash. In fact, the browser (IE) crashes as well. I checked the debug trace that ie asked me to send to microsoft at the last IE crash, and i noticed a StackOverflow exception embedded deep in the trace, but I couldn't determine its source.
View 5 Replies
Mar 10, 2010
adding this in my class (i name it CGame)
Code:
var ns = new mysound();
ns.play(0,1);
makes flash cs4 crash. But not if it added to timeline/stage.I tried making new class with different name, then adding the code, and it works.So it just fails on CGame.
View 1 Replies
May 26, 2009
I have a couple of static functions (one shown below) that can be called from multiple instances; there is a problem because of a shared object I am using.
My tracing shows that the application is in this function or the converse function addRec when my application is crashing.
[Code]....
In another class I have this statement where I set the value of some date in my shared object. I have to comment the following lone of code out in order for the application not to crash after a short while:
so.data.rArray = currentRecs; // the culprit I see the first trace in the removeRec function but then nothing. I expect to see the second trace indicating that the array of current recordings taking place (currentRecs) has been cut back by one.
Originally my function was not static and my application crashed very quickly. By making the function static the situation improved insofar as it took longer for the application to crash. Flash seems to be very particular about the way it handles shared objects.
View 5 Replies
Jan 31, 2004
I have a couple of static functions (one shown below) that can be called from multiple instances; there is a problem because of a shared object I am using.My tracing shows that the application is in this function or the converse function addRec when my application is crashing.
public static var currentRecs:Array;
private static function removeRec(recName:String) { trace("Removing record "+ recName + " from currentRecs"); for (var item in currentRecs) { if (currentRecs[item] == recName) { currentRecs.splice(item, 1); trace("Finished recording " + recName + " currentRecs = " + currentRecs.length); } } }
In another class I have this statement where I set the value of some date in my shared object. I have to comment the following lone of code out in order for the application not to crash after a short while:
so.data.rArray = currentRecs;// the culprit I see the first trace in the removeRec function but then nothing. I expect to see the second trace indicating that the array of current recordings taking place (currentRecs) has been cut back by one.
Originally my function was not static and my application crashed very quickly. By making the function static the situation improved insofar as it took longer for the application to crash.Flash seems to be very particular about the way it handles shared objects.
View 1 Replies
Apr 24, 2009
Environment: I am using Flash CS3 and targettting my application for Flash Player 9, I have installed Flash Player 10 on my machine. I am getting a flash player 10b.ocx error, which causes into crash of the browser. I am loading a bunch of images in this application. (20-30 at a time). using Loader class.
I have three questions: Is it the flash player error causing the browser to crash or something in my code is wrong?what possibly can go wrong in AS3 code to cause this error if it is not a flash player error?What could be the possible resolution for the same?
View 11 Replies
May 16, 2011
I'm currently using the FileReference class to allow users of my program to save and load files from their PC. I'm currently trying to get the save function to work (I'll do load later) and it all seems to be working perfectly but while testing it (locally) it crashes Flash Player every time it saves.
The code is pretty simple just now (this is contained in an event handler which triggers when the save button is pressed):
var levelData:String = GetLevelData();var outputFileName:String = "NewLevel.txt";
saveFile = new FileReference();
saveFile.addEventListener(Event.COMPLETE, SaveCompleteHandler);
saveFile.addEventListener(IOErrorEvent.IO_ERROR, SaveIOErrorHandler);
saveFile.save(levelData, outputFileName);
And it all works fine - the NewLevel.txt file appears where I want it to and contains the correct data. But as soon as this has completed Flash Player quits and I get the 'Flash Player Quit Unexpectadly' message. There are no errors in the output from my code. The SaveCompleteHandler function has been called and the SaveIOErrorHandler function has not.
Could this be a bug in Flash player? I'm using a Mac and have encountered a few bugs with the Mac version so I wouldn't be surprised if this was another one.
View 1 Replies
Sep 14, 2011
I've written an html page that is using some javascript to hide and display a flash movie object. It all works fine until I try to exit from the tab, and when that happens the entire browser will crash with not so much as an error text box.
Flash Code
if(ExternalInterface.available)
ExternalInterface.call('hideTimeline');
Javascript code
function showTimelineFirstPlay()
{
var timeline = document.createElement('span');
[Code].....
View 1 Replies
Jun 6, 2010
Brand new PC, Windows 7, worked fine for couple of days until I installed Flash Player 10 Active X - now the operating system continually crashes around after 5 mins each time I reboot.Error message"problem starting C:ProgramFiles(x86)NOSingetPlus_Helper.dllthe specified module could not be found"Having search the web, which suggested a possible problem with Flash Player 10 installation, I removed this downloaded this file: uninstall_flash_player.exe and ran to uninsall), but Adobe Download Manager is still in the list - trying to uninstall the DLM just gives the same error message as above.
View 3 Replies
Apr 6, 2010
I have the fonts embedded (Yet it still prompts me saying missing fonts every time I open flash, but not the fonts that aren't resizing correctly)
I have a function that takes in a textfield, resizes the font to fit the text box, works fine on my local machine, does NOT work on other machines.
why this doesn't work? here is the function
function fontSizeChanger(dtb,myWidth)
{
dtb.embedFonts = true;
var myFormat:TextFormat = dtb.getTextFormat();
[Code].....
View 8 Replies
Feb 7, 2011
I'm trying to embed a font in my project by using url("font.ttf") rather than local("Font Name"), but it doesn't seem to pick it up. The font in question is called "Gotham Bold". When i view the details of the font, the font weight is regular, however when i use local("Gotham Bold") in the css i have to specify fontWeight: bold or else it wont pick it up. But when I use url("folderGotham-Bold.ttf"), and specify fontWeight: bold, it says that font weight is not found for that TTF. If i remove the fontweight, there's no errors, but the font is not applied to the text.
View 2 Replies
Oct 1, 2009
I have imported a font into the Flash library in an FLA file this way in the New font symbol dialog box:
[Code]....
I'd like to assign this font to a TextFormat instance, but as you can see, something is wrong or missing. But what?
View 3 Replies
Mar 23, 2011
In my application I'm using a custom embedded font for English (Helvetica New) which does not contain characters (glyphs) for chinese unicode range. In the application, wherver chinese characters are avaiable they are not displayed (suppressed) since they are missing in the custom embedded font. How can I make the flash player to use a fallback system font for the missing characters? And the fallback should be for the missing characters alone. For the Engligh characters it should use the embedded font.
View 1 Replies
Oct 5, 2010
I am working on a as3 project in which the user select a font from Combo Box and that font SWF should be loaded Dynamically and then i need to change the font of the Dynamic text field.
I have swf font files downloaded from [URL]
My question is that how can i load the font swf dynamically from server and add them to the library and how can i use that swf to change the font of dynamic text field.
if there are embedded fonts in library the i can access them using this- --
var fontList:Array = Font.enumerateFonts();
for( var i:int=0; i<fontList.length; i++ )
{
trace( "font: " + fontList[ i ].fontName );
}
But How to use dynamically loaded Font swf as a font type.
View 1 Replies
Feb 9, 2011
I have a swf A, which contains no font.If I download into it the swf F1, which contains few characters of Arial, then I'll have the arial font embed into A, no problem with that.But if, then, I download the swf F2, which contains other characters of Arial into swf A, will I be able to use all the embed characters font, only the F2, or only the F1 ?I'd like to have a link to somewhere where this is explained, even in very technical terms : I wasn't able to find one.
EDIT : After few tests, it seems that the player replace the loaded font... How can I merge them, then ?
View 1 Replies
Jul 19, 2009
Is it possible to embed a font in Flash and have it displayed as though it was a device font? In other words, can embedded fonts be aliased?Using the bitmap-text option doesn't work, Flash tends to screw up a lot of the character spacing. I haven't found any pixel fonts that mimic Arial, Verdana and Tahoma accurately. Setting the stage quality to low does alias the fonts but they become fragmented.Using device fonts is an option but, as far as I understand, some browsers/operating systems will take it upon themselves to anti-alias the text.
View 6 Replies
Apr 15, 2010
I have one particular FLA that is crashing every time I try to compile (after switching to Snow Leopard). Flash just stalls and I am forced to use "Force Quit"... I have no idea what could be causing this and I cannot find any crash report. Where on the system does Flash put crash logs?
View 1 Replies
Jun 15, 2007
Installed Flash CS3 for the first month and everything was working ok. But mayhem kicks in the last couple of days when i tried to publish my document. it just keep crashing. i tried creating a new document with just one line of text and it still crash upon publishing. I uninstall the program, run winCS3Clean and install the program, THRICE, but the problem just wouldnt go away. this is very frustrating.
View 14 Replies
Jun 16, 2009
Flash CS4 is crashing every time I attempt to import a collection of jpegs to the library.I've tried small groups (crashes eventually), running in obselete compatibility modes...This seems common (though no fix I've seen actually works) - is there an appliccable FAQ?
View 3 Replies
Mar 25, 2011
Does it happen to anyone else when you edit anything in the preferences window that Flash CS5 crashes? I've reinstalled the program as well.. any tips I can try?
View 2 Replies
Apr 12, 2010
I have a project I'm trying to compile with alchemy. It will compile .o and .a files, but when trying to create a .swc, it will fail. It appears to crash with this error:
g++ -swc -o mylib.swc my-flex-interface.cpp mylib.a
Cannot yet select: 0x279c810: ch,flag = AVM2ISD::CALL - A call instruction 0x279c7a0, 0x29c4350
0 llc 0x00636dfe _ZNSt8_Rb_treeIN4llvm3sys4PathES2_St9_IdentityIS2_ESt4lessIS2_ESaIS2_EE13insert_uniqueERKS2_ + 6078
1 llc 0x006373a2 .....
View 1 Replies
May 8, 2009
I have decompiled CS3 fla's and I am trying to publish them as CS4 files. I have Flash CS4 installed on my computer. Some of my files will publish but not all of them will. It is getting rather frustrating trying to publish these files while all I have changed is the text. Although as you must know, the text is now a graphic(from the Flash Decompiler), so I am now trying to publish the new file and it crashes. It does save as an fla but will not before a swf.
I know the message boards keep saying to uninstall Flash CS4 and re-install CS3 but this is not an option for me.
View 2 Replies
Jan 21, 2011
Is it possible to let flash crash without taking cs5 down with it?
View 1 Replies
Nov 19, 2010
Long story short, I'm having my SWFs packaged by a 3rd party projector wrapper. That wrapper's "quit/exit" functionality appears to be broken. So I figured, why not just force a crash when I want to exit (triggered by user input)?
View 1 Replies
May 2, 2010
I am new to as3 although i have a little bit of knowledge of as2, which i think is being more of a hindrance than a help, so be gentle my flash movie compiles without any errors and also debugs without errors, but when I play swf file and move over the assets it frequently crashes the program running the swf, be it Flash itself or a browser.the FLA is very large but here is the code and a link to the swf.[code]
View 1 Replies
Jun 28, 2010
Today one of our artists started experiencing a crash in Flash CS4 Professional when scrolling the workspace around in one of his .fla files. All he has to do is hold down the spacebar and scroll around with the mouse; or use the scrollbars to scroll around. It has crashed about 10 times in the last hour, and we copied the file over to another machine and saw the crash there as well. We've only seen it occur with one particular file.
The machines are both Intel Core i7 machines with 8GB of RAM and two different video cards, one running Windows 7 and the other running Vista; and the crashes cause the Adobe "let me report this crash to the mothership" dialog box, so I don't think it's video card driver related; I think it's just a bug in Flash Professional. We're running version 10.0.2 with no updates available to Flash Professional when choosing "Updates..." from menu.
View 4 Replies
Jul 31, 2010
opening included templates in Flash CS5 and then telling the program to test the movie within the environment shows Flash trying to export an SWF file and then crashes. the program will alllow the movie to be played inside the environment, however.
debugging yields the same crash:
Problem signature:
Problem Event Name: APPCRASH
Application Name: Flash.exe
Application Version: 11.0.0.485
Application Timestamp: 4badda9d
[code]....
DW opens and using one of its templates, no problems so far.Read about <supposedly> certain .Wacom tablet drivers and flash...don't have any such device installed, but stopped the generic windows tablet service....no change in the problem.
View 6 Replies
Feb 22, 2011
Very simple code that causes flash 10.2 to crash on all platforms.
[Code]...
View 6 Replies
Jun 27, 2011
I recently installed the CS5 Master Collection on my MacPro for work. I need to use Flash CS5 in order to work on some projects in the office, however I'm encountering several issues that make it near impossible for me to use the software. First of all, when I start the program and select "New..." and select any type of new file, I'm greeted by nearly every button being greyed out, to where I cannot select them. I've found out that I can make these buttons usable by changing my workspace in Flash.
The issue that's causing me trouble is that whenever I select any sort of "Drawing" tool, Flash CS5 crashes immediately. Whenever I click on the line, pen, circle, rectangle, pencil, or brush tools, CS5 freezes briefly (about 2-3 seconds) and then immediately closes. I can still use tools such as the Pan tool, zoom, text, and selection tool. Also, whenever I select the Spray Can tool, I get the following error:
Unable to load the script. The file <filepath>/ProScripts/sprayBrush.jsx does not exist.
I have already tried updating my system, updating every Adobe product on this machine, reinstalling, and even using a seperate installation CD, but everything thus far has yielded the same results.
Info on my system:
MacPro running OS X V. 10.6
2 x 2.26 GHx quad-core proocessors
12 GB DDR3
View 2 Replies
Jul 13, 2011
Flash CS4 frequently crashes after trying to test my movie. I have a MacBook Pro OS 10.5.8. I have updated Flash CS4 as well. Here are the problem details in the crash report.
[Code]....
View 1 Replies