09-12-2005, 07:44 AM
|
#1
|

 |
San Francisco, CA (USA) |
|
 |
17,426 |
|
|
Macromedia Flash 8 Bugs and Emerging Issues
No application is bug free on first release, especially one as large scale as Flash. There are bound to be issues in both the Flash IDE as well as the Flash player. If you find one, let us know. A list will be kept here to keep everyone aware of known issues and hopefully workarounds can be found to deal with them until Macromedia corrects them. Remember, for any problem you encounter, let Macromedia know so that they may be aware of it and hopefully find a solution. Also see Macromedia's
Please post bugs regarding full release (not Beta) software. It is helpful if you can repeat the steps used to reproduce this bug and what system you were using when it happened (OS, preferable hardware setup)
To see what Flash Player version you have, use the following:
Find the current available version from Macromedia here:
__________________

|
|
|
09-13-2005, 09:34 AM
|
#5
|
|
|
Bug on publish settings
We have two servers at work : one with the flas and one with the swf and all the media. With mx2004 we used to put
\\pc-internet\myProject\mySwf.swf
in the publish setting but this kind of path don't work anymore with flash8...
It's very annoying cause we have to create maps and put :
Z:/myProject/mySwf.swf
|
|
|
09-13-2005, 11:16 AM
|
#8
|
|
|
Quote:
|
Originally Posted by cruci
Open the Help and Search for something.
Open one of the resulting pages, and then choose Reload (right-click).
Hard crash to desktop every time.
|
Works fine on both my laptop and main rig.
|
|
|
09-13-2005, 02:21 PM
|
#12
|
|
|
if i use this code in the actions panel
Code:
import flash.filters.BlurFilter;
import flash.filters.ColorMatrixFilter;
import flash.geom.Rectangle;
import flash.geom.Point;
/* THIS CODE RUNS ONCE */
// set up the blur filter (2x2 blur, quality of 1):
blurF = new BlurFilter(2,2,1);
// set up the color matrix filter:
colorF = new ColorMatrixFilter([
0.97,0,0,0,2, // reduce red fastest
0,0.99,0,0,3, // reduce green slowest
0,0,0.98,0,4, // reduce blue
0,0,0,1,-0.7 // fade down alpha
]);
// set up the rect that we will apply the filter to:
rect = new Rectangle(0,0,WIDTH,HEIGHT);
// set up the point that we will use:
pnt = new Point(0,0);
/* THIS CODE RUNS ONCE EVERY 5 FRAMES */
// apply the filters to the bitmap:
canvasBmp.applyFilter(canvasBmp,rect,pnt,colorF);
canvasBmp.applyFilter(canvasBmp,rect,pnt,blurF);
And click the Check Syntax it says there are no errors. But if i click the Auto Format it says that the script contains Syntax errors and it can't be processed.
__________________

Last edited by VersusMG; 09-13-2005 at 02:47 PM..
|
|
|
09-13-2005, 05:24 PM
|
#13
|
|
|
Quote:
|
Originally Posted by cruci
When I tried to publish an existing project using mx.transitions.Tween and mx.transitions.easing.* in F8 it gave me a bunch of errors. I renamed the mx folder and copied the one from Flash7 and everything worked fine.
|
The location of the tween class files has probally changed with Flash 8 will need to import it from a different location.
This is strange since I just imported one of my older files into Flash 8 and
the tweens worked fine.
__________________
Proud Montanadian
 We tolerate living and breathing.
Name Brand Watches
|
|
|
09-13-2005, 05:26 PM
|
#14
|
|
|
Quote:
|
Originally Posted by VersusMG
if i use this code in the actions panel
Code:
import flash.filters.BlurFilter;
import flash.filters.ColorMatrixFilter;
import flash.geom.Rectangle;
import flash.geom.Point;
/* THIS CODE RUNS ONCE */
// set up the blur filter (2x2 blur, quality of 1):
blurF = new BlurFilter(2,2,1);
// set up the color matrix filter:
colorF = new ColorMatrixFilter([
0.97,0,0,0,2, // reduce red fastest
0,0.99,0,0,3, // reduce green slowest
0,0,0.98,0,4, // reduce blue
0,0,0,1,-0.7 // fade down alpha
]);
// set up the rect that we will apply the filter to:
rect = new Rectangle(0,0,WIDTH,HEIGHT);
// set up the point that we will use:
pnt = new Point(0,0);
/* THIS CODE RUNS ONCE EVERY 5 FRAMES */
// apply the filters to the bitmap:
canvasBmp.applyFilter(canvasBmp,rect,pnt,colorF);
canvasBmp.applyFilter(canvasBmp,rect,pnt,blurF);
And click the Check Syntax it says there are no errors. But if i click the Auto Format it says that the script contains Syntax errors and it can't be processed.
|
Delete all of the comments within the new ColorMatrixFilter object.
__________________
Proud Montanadian
 We tolerate living and breathing.
Name Brand Watches
|
|
|
|
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
|
|
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -4. The time now is 10:57 PM.
|
|