RE: [Flashcoders] Incredible Crashing Flash

2007-07-20 Thread James Ford
Does it make much use of bitmap objects in the library?  That's a real
bugger for Flash 8, I know. 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jobe Makar
Sent: 20 July 2007 15:32
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Incredible Crashing Flash

Hi guys,

I have one FLA file that crashes Flash about one in 3 or 4 publishes. The
FLA was created by someone on a Mac. It appears to be very clean. It is
Flash CS3, AS3. This issue is not happening with any of my other projects.

Needless to say this is driving me crazy. Any ideas at all?

ps - I'm on Vista Ultimate. And by 'crash' I mean Flash stops responding and
eventually I'm told by Windows that it needs to be closed forcefully.

Jobe Makar
http://www.electrotank.com
http://www.electro-server.com
phone: 252-627-8026
mobile: 919-609-0408
fax: 919-882-1121 


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Problem printing html page with embedded swf

2007-07-03 Thread James Ford
Hmm, How does the flash object get added to the page?  I have a feeling that
objects & suchlike don't tend to appear in the print versions of many
browsers, especially if they're added with the javascript flash detection.
Perhaps you could use a normal image-based fallback? () 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Paul Chang
Sent: 03 July 2007 03:08
To: Flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Problem printing html page with embedded swf

Hi All,

I am attempting to print an html page with an embedded swf. However, the
page prints except for the embedded swf which is just a blank white area.
Can someone please suggest the setting that controls this?

Thanks in advance,
Paul
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] >> function - AS2

2007-06-11 Thread James Ford
this.cli_mc.hu_btn.onPress = function() {
   buttonfunction();
};

Function buttonfunction(){
cli_mc._visible = 0;
_root.mtit_txt.text = "Cliniques";
_root.categ_var = "CLINIQUE";
_level41.mar = "cli";
_root.liste();
}

-- Move your onPress code into another function, then you can reference that
function through ActionScript, and through other functions like onPress.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Laurent
CUCHET
Sent: 11 June 2007 08:42
To: Flashcoders mailing list
Subject: [Flashcoders] >> function - AS2

Hi

I got function with button
Is there a way to use this with the button and by AS ??
For exemple if the movie go to image 5 it make the btn function work

Thank you

this.cli_mc.hu_btn.onPress = function() {
cli_mc._visible = 0;
_root.mtit_txt.text = "Cliniques";
_root.categ_var = "CLINIQUE";
_level41.mar = "cli";
_root.liste();
};

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] simulating airbrush + calligraphy brush

2007-02-28 Thread James Ford
Bad with vectors, true, but you could get away with it with
MovieClip.cacheAsBitmap = true; 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Danny
Kodicek
Sent: 28 February 2007 08:06
To: flashcoders@chattyfig.figleaf.com
Subject: RE: [Flashcoders] simulating airbrush + calligraphy brush

 > Hi all,
> 
> Is there a way to simulate how an airbrush tool or a calligraphy brush 
> works using Flash Drawing API? I'm talking about drawing tools you see 
> in MS-Paint, where an airbrush produces random dots/circles near the 
> mouse cursor while calligraphy brush is like a regular brush but the 
> tip is oval.
> I know that using capsStyle argument in lineStyle method can produce 
> rounded or squared tip, but no oval. Does anyone know how to create a 
> custom tip
> (capsStyle) for lineStyle? If the regular Drawing API isn't 
> sufficient, can anyone give any ideas of other ways to achieve this? I 
> was thinking of looping an attachMovie method during 
> onEnterFrame/onMouseDown to place custom shaped MCs.
> Is this a good idea to go with?

This sounds like the kind of thing that would be a bad idea with vectors. If
you're doing that style of drawing you're probably better off working with
copyPixels and BitmapData objects. With all those dots you might find things
chugging.

Danny

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com