RE: [Flashcoders] Shared fonts, linkage and Arabic

2006-11-13 Thread Danny Kodicek
  Finally figured out how to make font symbols (with linkage 
 turned on) include foreign character sets.
 
 The instructions outlined here:
 
 http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_16275
 
 do actually work given you take into account two crucial 
 pieces of info regarding BUGS IN FLASH.
 
 The two pieces of crucial info that solved the issue for me are these:
 
 1) If there is more than one font symbol in the library Flash 
 will not add foreign character sets to any of the fonts. That 
 means creating one swf per font symbol.
 
 2) If a font symbol (with linkage turned on) uses the exact 
 same font that is embedded in a text field in the same swf, 
 all non-Roman characters stop getting exported.
 
 For example: text field 1 has the font Tahoma set to Korean 
 characters embedded. Export, it works fine. Now, set a font 
 symbol in the library (with linkage turned on) to use Tahoma. 
 Export, no non-Roman characters get exported.

Interesting research, Michael, thanks for the report.

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] Fwd: Help needed. Embeding fonts in Deng Modular Browser

2006-11-13 Thread vipin chandran

Guys...

Please check if anybody can help me in this

-- Forwarded message --
From: vipin chandran [EMAIL PROTECTED]
Date: Nov 8, 2006 3:53 PM
Subject: Help needed. Embeding fonts in Deng Modular Browser
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com

Hello All,

Can any body help me about embedding fonts in Deng Modular Browser?

The official deng site is not having any link to this tutorial.

If anybody came across this...please help me...


Thanks in advance

Vipin
___
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] Writing code for big teams

2006-11-13 Thread Ricardo Sánchez

They have to extend the MovieClip class in order to be able to do that, am I
wrong?

I mean, If I load an swf with loadMovie (instead of creating an instance
with new) nothing assures me they are going to implement that class.

I'm a little lost in the relationship between movies and classes because I
always do composition, so I don't know how to load a movie and pass that
movie an interface.

On 11/9/06, Zárate [EMAIL PROTECTED] wrote:


My 0.2,

Basically it really depends on what are they doing. Say you have a
player or main movie. You're tipically going to load different movies
or sections on it. And you want all sections to have a common list of
public properties and methods. Define that list and make it an
interface. Then, you can tell anyone: do whatever you want BUT you
have to implement this interface

If they compile against that interface you know that _at least_ some
properties and methods are going to be there for your calls. So within
your main movie you can do something like:

container.loadMovie(externalMovie);
[after fully load]
container.config()
container.start();

Of course if you have defined those methods in your interface. You
won't need to recompile anything.

Makes sense?

Cheers,

On 11/8/06, Glen Pike [EMAIL PROTECTED] wrote:
 Hi,

 Whilst this suggestion is not good practice if you can get in at the
 start of a project - I would recommend doing things the way others have
 said, by using interfaces, I was given a very nice workaround for a
 situation I got stuck in recently.

 I was given about 20 SWF  FLA files, where all the animation was
 done on the root timeline - not in a movieclip.  These were to be loaded
 into a shell application and I needed to have some control over the
 playback of the animations, know when they finished or hit certain
 frames etc.  It would have been perfect if the animations were each
 contained within a MovieClip that was linked to a class of my choosing,
 but I did not get to speak to the animators as I was lower down in the
 food chain for this job.  As I did not wish to copy and paste thousands
 of frames of animation into child clips with the correct class linkage,
 I asked for some help and was told, I could recast the loaded SWF
 movieclips into a class of my choosing.  This worked beautifully and
 saved me hours of extra work,

 Credit to [EMAIL PROTECTED] for his solution below -thanks a
million!

 Hi,

 I think adding to the prototype would be the easiest way of recasting an
 external swf into a class.  It's like setting up a class linkage in the
 library except you can't do that with external swfs (as you already
 know).

 Once you got the swf loaded into external_mc you can:

 // recast it as NewClass
 external_mc.__proto__ = NewClass.prototype;
 external_mc.__constructor__ = NewClass;
 external_mc.__constructor__.apply(external_mc);

 If you wanted to pass arguments into the constructor you can change last
 line to:
 external_mc.__constructor__.apply(external_mc, arg1, arg2, ..., argN);

 It might not look nice, but it works nice.  The external swf functions
 and behaves just like a symbol would be if you loaded it from your
 library and the class linkage was setup.

 Hope this helps.

 Matthew Jacobi
 
 Adobe Consulting - EMEA - MAD

 ___
 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



--
Juan Delgado - Zárate
http://zarate.tv
http://dandolachapa.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


___
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] Faking 3D perspective of a 2D map in Flash 8..?

2006-11-13 Thread Seb L

We did this at FlashCodersBrighton :
http://www.flashcodersbrighton.org/wordpress/?cat=1

We used a mode7 style technique. It was actually a bit complicated,
but maybe I'll post a blog about it if enough people are interested?

cheers!

Seb Lee-Delisle
http://sebleedelisle.com

On 10/11/06, Andrew Murphy [EMAIL PROTECTED] wrote:

Hello.

I'm trying to take a vector map of North America and produce the sense of
'flying over' it.  I want to have the flat map tipped along the X axis, so
that the bottom (Florida, Texas, etc.) appear closer and the top (Nunuvut,
Greenland, etc.) appear farther away.

Then I want to be able to pan the map left and right, up and down, and
'zoom' in by scaling it.. scaling it a little faster vertically so that it
seems to flatten out a bit as you get closer to the ground.

So far I've only been able to achieve that in Illustrator and then saving
the perspectively squished vectors as a .swf  What I'd love to do is to get
that perspective squish done within Flash 8 using script.

I know about 3D program extensions for Flash like Sandy, but I find them
cryptic (at best) and over kill for my simple needs.

Any suggestions..?

Thanks. :)


- - - - - - - - -
-[andrew murphy]-
flash developer
[EMAIL PROTECTED]

delvinia interactive inc.
214 king street west, suite 214
toronto canada M5H 3S6
voice 416.364.1455 ext. 232
cell 416.820.8723
fax 416.364.9830
www.delvinia.com

CONFIDENTIALITY NOTICE
This email message may contain privileged or confidential information. If
you are not the intended recipient or received this communication by error,
please notify the sender and delete the message without copying or
disclosing it.

AVIS DE CONFIDENTIALITÉ
Ce message peut contenir de l'information légalement privilégiée ou
confidentielle. Si vous n'êtes pas le destinataire ou croyez avoir reçu par
erreur ce message, nous vous saurions gré d'en aviser l'émetteur et d'en
détruire le contenu sans le communiquer a d'autres ou le reproduire.



--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.430 / Virus Database: 268.14.1/527 - Release Date: 09/11/2006
6:00 PM

___
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


[Flashcoders] F-ab 2.0.1

2006-11-13 Thread Jiro Harada

Hello,

I am pleased to announce that Version 2.0.1 of F-ab (freeware) is  
available for download.
F-ab is a browser for Flash movies. In F-ab Flash movies are switched  
by changing the channel instead of the URL. You can see 1 Flash  
movies by changing the channel from  to . However, the Flash  
movie has not been registered in every channel yet. Now only 32  
movies are registered from Ch.1000 to Ch. 1031.


In F-ab version 2.0 or later, FLVPhone can be used. FLVPhone is a  
video conferencing telephone using the Flash movie. In FLVPhone,  
instead of a telephone number, an e-mail address is used to specify a  
person to be called. Red5(http://osflash.org/red5.) is embedded in F- 
ab to communicate with the remote FLVPhone.


System Requirements:
OS: Windows XP, 2000, Mac OS 10.4.5 or later
Java Runtime Environment: J2SE 5.0 or later

Download:
http://www.f-ab.net/

Enjoy!

Jiro Harada
[EMAIL PROTECTED]

___
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] 1st message - Sound and byteArray

2006-11-13 Thread Fabien Penso

Hi everyone,

I'm trying to do the following using AS3/Flex, but i can't find any
way to do so :

I fetch a mp3 files through a homemade process using sockets, and I
have the binary in a byteArray somewhere. I have the data, and I'd
like to play it, but the Sound() class only takes URLs.

I don't see how i could play this mp3 from memory. Any ideas ?

thanks.
___
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] 1st message - Sound and byteArray

2006-11-13 Thread Claus Wahlers



I fetch a mp3 files through a homemade process using sockets, and I
have the binary in a byteArray somewhere. I have the data, and I'd
like to play it, but the Sound() class only takes URLs.

I don't see how i could play this mp3 from memory. Any ideas ?


There's no easy way to do it. You need to create a SWF on the client 
that wraps your mp3, and then push it into Loader via loadBytes.


This may get you started:
http://www.flashcodersbrighton.org/wordpress/?p=9

Cheers,
Claus.

--
claus wahlers
côdeazur brasil
http://codeazur.com.br
___
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] 1st message - Sound and byteArray

2006-11-13 Thread Fabien Penso

On 11/13/06, Claus Wahlers [EMAIL PROTECTED] wrote:


 I fetch a mp3 files through a homemade process using sockets, and I
 have the binary in a byteArray somewhere. I have the data, and I'd
 like to play it, but the Sound() class only takes URLs.

 I don't see how i could play this mp3 from memory. Any ideas ?

There's no easy way to do it. You need to create a SWF on the client
that wraps your mp3, and then push it into Loader via loadBytes.

This may get you started:
http://www.flashcodersbrighton.org/wordpress/?p=9


Great Claus, _thanks_. All I needed was a link :) Posted on few
forums, sent a mail to a adobe AS3 developer and had no answer...
___
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] FLVPlayer and seek() flips out

2006-11-13 Thread Michael Stuhr

when i'm trying to do a seek seekPercent or seekSeconds the FLVPlayer
totally flips out. it seeks endlessly.

what is the 'correct'  way to do this ?

micha
___
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] Q: 3D effect similar to OSX RSS Visualizer Quartz screen saver

2006-11-13 Thread moveup
Hi
I know there's a surplus of threads on 3D and 3D frameworks for Flash but what 
I am after is a spcific treatment used in the RSS Visualizer Quartz screen 
saver for OSX

Here is a screen shot:

http://www.mactech.com/articles/mactech/Vol.21/21.05/QuartzComposer/index.html

I'd like to reproduce this using actionscript...


Can anyone point me in the right direction to get started?


Thanks in advance
Jim Bachalo


[e] jbach at bitstream.ca
[c] 416.668.0034
[w] www.bitstream.ca

...all improvisation is life in search of a style.
 - Bruce Mau,'LifeStyle'
___
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] Fwd: Help needed. Embeding fonts in Deng Modular Browser

2006-11-13 Thread Claus Wahlers



Can any body help me about embedding fonts in Deng Modular Browser?

The official deng site is not having any link to this tutorial.

If anybody came across this...please help me...


Like this:

- embed your font in your main SWF and give it a linkage identifier
- DENG does not know that you embedded a font. You have to tell DENG 
what embedded fonts you are using, by setting the components 
embeddedFonts property. This property takes an array of Font Linkage 
Identifiers, e.g.: deng_mc.embeddedFonts = [my_embedded_font];
- Now you are ready to use your embedded font(s) in your XML/XHTML 
documents. In your CSS, just include the fonts Linkage Identifier in the 
list of font families, like here:

div { font-family: my_embedded_font, Arial, sans-serif; }

Cheers,
Claus.

--
claus wahlers
côdeazur brasil
http://codeazur.com.br
___
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] flash.geom.Point Problem.

2006-11-13 Thread Ray Chuan

That means you were stupid before having that girlfriend. =p

On 11/13/06, Arse @ Snepo [EMAIL PROTECTED] wrote:

Having a girlfriend who knows flash makes you clever by default. :)

just sayin.

a

jim wrote:
 Thanks man, my girlfriend just pointed the same thing to me, you are both
 clever  I am stupid.

 Jim

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Rákos Attila
 Sent: 12 November 2006 21:32
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] flash.geom.Point Problem.


 j As you can see the first value is correct, the rest have weird values.
 Can
 j anyone explain this to me?

 This is because of the precision errors of floating-point arithmetic.
 Try to round the results:

 import flash.geom.Point;

 var angles: Array = [0, 90, 180, 270, 360];

 for (var i = 0; i  angles.length; i++) {
 var p: Point = Point.polar(10, (angles[i] * (Math.PI/180)));
 trace(x:  + Math.round(p.x) + , y:  + Math.round(p.y));
 }

   Attila

 ___
 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




--
*Anthony Eden*: Inventor at Snepo http://www.snepo.com/
contact | [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] | 0411 5622 02

___
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





--
Cheers,
Ray Chuan
___
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] Faking 3D perspective of a 2D map in Flash 8..?

2006-11-13 Thread Andrew Murphy
Thank you for all the great advice! :)


- - - - - - - - -
-[andrew murphy]-
flash developer
[EMAIL PROTECTED]

delvinia interactive inc.
214 king street west, suite 214
toronto canada M5H 3S6
voice 416.364.1455 ext. 232
cell 416.820.8723
fax 416.364.9830
www.delvinia.com

CONFIDENTIALITY NOTICE
This email message may contain privileged or confidential information. If
you are not the intended recipient or received this communication by error,
please notify the sender and delete the message without copying or
disclosing it.

AVIS DE CONFIDENTIALITÉ
Ce message peut contenir de l'information légalement privilégiée ou
confidentielle. Si vous n'êtes pas le destinataire ou croyez avoir reçu par
erreur ce message, nous vous saurions gré d'en aviser l'émetteur et d'en
détruire le contenu sans le communiquer a d'autres ou le reproduire.

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.430 / Virus Database: 268.14.3/531 - Release Date: 12/11/2006
7:34 PM
 

___
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] Remoting bytesLoaded/bytesTotal

2006-11-13 Thread Janis Radins

hye ppl!

I'm in a situation that remoting calls get slow at some point for users with
slow connection, hence client asked for loading progress display.
As far as i know there is no sutch thing as bytesLoaded /total for remoting
calls, I just serched help docs and that only confirmed that.

I just would like to know if anyone have hacked/found the way to do that for
AS2 and remoting calls or confirmation that it is impossible.

tnx in advance

jānis
___
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] F-ab 2.0.1

2006-11-13 Thread Ray Chuan

cool idea + cool name = cool project

Nice one.

On 11/13/06, Jiro Harada [EMAIL PROTECTED] wrote:

Hello,

I am pleased to announce that Version 2.0.1 of F-ab (freeware) is
available for download.
F-ab is a browser for Flash movies. In F-ab Flash movies are switched
by changing the channel instead of the URL. You can see 1 Flash
movies by changing the channel from  to . However, the Flash
movie has not been registered in every channel yet. Now only 32
movies are registered from Ch.1000 to Ch. 1031.

In F-ab version 2.0 or later, FLVPhone can be used. FLVPhone is a
video conferencing telephone using the Flash movie. In FLVPhone,
instead of a telephone number, an e-mail address is used to specify a
person to be called. Red5(http://osflash.org/red5.) is embedded in F-
ab to communicate with the remote FLVPhone.

System Requirements:
OS: Windows XP, 2000, Mac OS 10.4.5 or later
Java Runtime Environment: J2SE 5.0 or later

Download:
http://www.f-ab.net/

Enjoy!

Jiro Harada
[EMAIL PROTECTED]

___
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




--
Cheers,
Ray Chuan
___
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] off-display mouse listeners still listen in AS3?

2006-11-13 Thread Ron Wheeler

Have you run into any performance problems running your application?

Just imagine how many events are being watched in a RPG game running on 
a PC.
The Flash player may not be as efficient as a game engine but PCs 
perform a lot of instructions(tens of millions and hundreds of millions) 
each second.
PCs typically have millions of memory addresses. A few hundred (or a few 
thousand) bytes for a button and for extra listeners is not going to 
kill a modern PC.



Ron

Matt Garland wrote:

Hi,

I'm making a site in AS3 with lots and lots of buttons.

I'm worried that all the listeners on the buttons will clog the memory.

I realize that sprites that are not in the display list cannot receive 
mouse events, but do they still listen for them, taking up memory?


I'm not sure how to test that.

If they do, then in the buttons I'll

1) add listeners for added and removed events to detect when the 
buttons are added to the display list, and


2) handle these events by toggling the mouseEnabled and mouseChildren 
properties off and on (that will kill and revive the listeners)


But it seems funny to kill listeners that cannot hear anything, and a 
hassle to add this code to all the button species I'm working with.


Thanks

Matt

On Nov 12, 2006, at 9:00 AM, [EMAIL PROTECTED] 
wrote:



Send Flashcoders mailing list submissions to
flashcoders@chattyfig.figleaf.com

To subscribe or unsubscribe via the World Wide Web, visit
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]

You can reach the person managing the list at
[EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than Re: Contents of Flashcoders digest...


Today's Topics:

   1. Re: functions outside a class (Helmut Granda)
   2. Re: Faking 3D perspective of a 2D map in Flash 8..? (Zeh Fernando)
   3. Re: OO way to start RIA app (Mark Lapasa)
   4. Re: Faking 3D perspective of a 2D map in Flash 8..? (Hans Wichman)
   5. Re: Faking 3D perspective of a 2D map in Flash8..? (Mike 
Nowak)

   6. RE: functions outside a class (Mike Keesey)
   7. Re: Faking 3D perspective of a 2D map in Flash8..? (Mike 
Nowak)

   8. Noob question: Text effects, apps/components? (Micky Hulse)
   9. Google queries / iweb services / API in A.S. 2.0. (Millie Niss)
  10. frustrated with textFields: getting height while textisn't
  fully 'there' (grimmwerks)


--

Message: 1
Date: Fri, 10 Nov 2006 13:45:34 -0600
From: Helmut Granda [EMAIL PROTECTED]
Subject: [Flashcoders] Re: functions outside a class
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Message-ID:
[EMAIL PROTECTED]
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

ok, i figured it out.

it works if i make reference to where the function is.

this.function();
_parent.function();

if i just call the function:

function();

it is where I was getting stuck, but it all works now.

...

On 11/10/06, Helmut Granda [EMAIL PROTECTED] wrote:


I have several classes that will use a function. for scope reasons i 
have

placed the function in a different file but i would like to be able to
access that file from within the classes.

If the function has been declared outside the class, what is the 
best way

to accces those functions?

sample:

utils.controls:
classA
classB

utils/functions:
functionA
functionB

main timeline:
include functionA
include functionB

now I would like to access functionA or functionB within the class...

TIA

--
...helmut





--...helmut
helmutgranda.com


--

Message: 2
Date: Fri, 10 Nov 2006 17:46:11 -0200
From: Zeh Fernando [EMAIL PROTECTED]
Subject: Re: [Flashcoders] Faking 3D perspective of a 2D map in Flash
8..?
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Message-ID: [EMAIL PROTECTED]
Content-Type: text/plain; format=flowed; charset=iso-8859-1;
reply-type=original

So far I've only been able to achieve that in Illustrator and then 
saving

the perspectively squished vectors as a .swf  What I'd love to do is to
get
that perspective squish done within Flash 8 using script.
I know about 3D program extensions for Flash like Sandy, but I find 
them

cryptic (at best) and over kill for my simple needs.


Using something like Sandy is the only choice you have. For example:

http://sandy.media-box.net/blog/distortimage-20-the-fastest-way-to-freely-distort-image-with-flash-in-actionscript.html 

http://sandy.media-box.net/blog/distordimage-the-way-to-distord-bitmaps-by-code.html 



You need something like this. This is done by dividing an image in 
triangles

and then projecting them.

But you'd still have to be careful, as simple distortion ISN'T 
perspective.
The above examples are simply distorting the image, but not 
accounting for

proximity (it's just squishing the texture). If you get a side too 

Re: [Flashcoders] frustrated with textFields: getting height while textisn't fully 'there'

2006-11-13 Thread Janis Radins

this is old bug of flash
in flash8 it's not that present tho i guess I've seen it few times
anyways, simple touching that property before actual use helps. as simpel as
trace(txt._height) make textfield report correct value

2006/11/13, Muzak [EMAIL PROTECTED]:


Create a second textfield (hidden) that is as wide as the original, is
only one line high and does not autosize, dump the text in it
and grab its maxscroll value.

regards,
Muzak

- Original Message -
From: grimmwerks [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Sunday, November 12, 2006 8:09 AM
Subject: [Flashcoders] frustrated with textFields: getting height while
textisn't fully 'there'


 This is totally driving me crazy.

 I'm creating a textfield as a sub to another clip, setting it's width,
 making it autosized, giving it a stylesheet. I then toss in it's
 htmlText.

 I just want to know if the darn thing is one or more lines. Trouble is
 it's not reporting back properly...it seems as if it's just in the
 middle of adjusting itself or something, as if I trace out a lot of
 stuff, it works out fine. But I shut off tracing, and it stops
 working.

 For example:

 var mTitle:TextField = mcTxt.createTextField(mc_title, 6, tR.x+20,
 tR.y-14, 230, 0);
 mTitle.autoSize = right;
 mTitle.wordWrap=true;
 mTitle.selectable=false;
 mTitle.html = true;
 mTitle.border=true;
 mTitle.multiline = true;
 mTitle.styleSheet =_global.gPrefs.CSS;
 mTitle.htmlText = title;

 fontsize = 30; // i know this
 lCnt = (mTitle.textHeight/fontSize);

 Sometimes lCnt works and sometimes it doesn't -- and I'm tracing out
 all elements.

 I've even tried to do something like
 while(mTitle.htmlText!=title){
  trace(not there);
 }

 But that doesn't work either.
 ___


___
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] Q: 3D effect similar to OSX RSS Visualizer Quartz screen saver

2006-11-13 Thread Seb L

Hiya, we've built a similar texture mapped text effect on our new
website, currently in beta. Here's an example :

http://www.sebleedelisle.com/?p=18

It's actually quite complex to stretch text like that... it may be
easier to just treat the text as always facing towards you, then
there's no need for a perspective distortion. But you'll probably
still need to convert the text image into a bitmap first, otherwise it
may take a while to render all those words all over the place...

And then there are all the rotations to calculate... so generally
speaking, a complex area to get into, but there are some good
tutorials on kurupa, or else attend my 3D session at Flash on the
Beach (http://flashonthebeach.com) and i'll tell you all about it :-)

cheers

Seb Lee-Delisle
http://sebleedelisle.com


On 13/11/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

Hi
I know there's a surplus of threads on 3D and 3D frameworks for Flash but what 
I am after is a spcific treatment used in the RSS Visualizer Quartz screen 
saver for OSX

Here is a screen shot:

http://www.mactech.com/articles/mactech/Vol.21/21.05/QuartzComposer/index.html

I'd like to reproduce this using actionscript...


Can anyone point me in the right direction to get started?


Thanks in advance
Jim Bachalo


[e] jbach at bitstream.ca
[c] 416.668.0034
[w] www.bitstream.ca

...all improvisation is life in search of a style.
 - Bruce Mau,'LifeStyle'
___
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] Is it possible to expand work area in flash?

2006-11-13 Thread Holth, Daniel C.

André,

You can drag the various parts of the Flash application to all different sizes 
and locations, as well as move menus and coding areas around too.  If you want 
to see more of your stage you can zoom in and out with the magnifying tool, or 
minimize windows you aren't using.

Otherwise if you still need more space, I'd suggest adding another monitor.  I 
work with all my code and library items on a monitor on the left, and my 
timeline, tools, and stage on another monitor to the right.  This allows me to 
keep my coding tools separate from my drawing/designing tools. 

If this isn't what you are looking for, please elaborate on what you mean by 
'bigger work area'.

Thanks
-Dan

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of André
Hedetoft
Sent: Friday, November 10, 2006 3:45 AM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Is it possible to expand work area in flash?


Thank you for all your answers!

Nick I don't need a bigger stage area to work on, I just need a bigger
work area. Any tips for me?

JC, Thanks! I'm going to try that.

But I still have a hard time learning that there is such a silly
limitation in flash.
Is there really no way to just make the work area bigger?

Rock on!

Best regards

André Hedetoft
Geek Movie Director
Join my Fan Club so that I get to make my next movie over at
http://www.andrehedetoft.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

This e-mail and its attachments are intended only for the use of the 
addressee(s) and may contain privileged, confidential or proprietary 
information. If you are not the intended recipient, or the employee or agent 
responsible for delivering the message to the intended recipient, you are 
hereby notified that any dissemination, distribution, displaying, copying, or 
use of this information is strictly prohibited. If you have received this 
communication in error, please inform the sender immediately and delete and 
destroy any record of this message. Thank you.
___
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] mp3 not playing in I.E. 6

2006-11-13 Thread Axel Jensen
Marc, did you ever get this problem solved, I'm currently having a similar
issue..?

 

 

Here is my post.

 

Site: http://www.sonburst.com/nng/

 

The application no longer will display the time on the page, it turned to
the original request of a progress bar that shows a percentage

There are some problems of the page not doing what they want it to, when
going back through mp3's... the problem has been identified in .mp3 files
are being cached in IE 6.  

I'm currently trying to find a fix for this... so far, i've tried preventing
the page cache using 

CFHEADER NAME=Pragma VALUE=no-cache 

but no luck so far... when i go into IE, and change my settings to 

Tools  Internet Options  (Temporary Internet Files)  Click on Settings 
Change the value Check for newer versions of stored pages to every visit
to the page and then i deleted my files, and refreshed the page, and it
worked 

Still working on a permanent fix, but we've identified the problem.  Used a
tool called Service Capture to find out that it was IE 6 that was doing
it... the problem doesnt seem to be happening in firefox, and that is one of
the reasons I never saw it, because my base alpha testing was done in
firefox

 

Check it out at 

 

http://axel.cfwebtools.com http://axel.cfwebtools.com/ 

 

 

 





 

Coldfusion Experts

 



Axel Jensen 

CF Webtools


11204 Davenport, Suite 200b 
Omaha, NE 68154 
http://axel.cfwebtools.com 
402-408-3733 Ext 106 


MSN: [EMAIL PROTECTED]


 

 

 


 

 

___
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] [OT] Flash player on the PS3?

2006-11-13 Thread Zárate

Hi all,

I was reading* this morning about people that have already bought the
PS3 and I run across this guy:

The PS3s internet capabilities are impressive. By using the analogue
sticks to move the mouse pointer, I was pretty much able to do
everything from *view videos on YouTube*, download photos and videos
attached to my e-mails and even do on-line banking and complete a
money transfer.

So, has the PS3's browser the Flash player by default? Which version?
Keeping in mind that is running Linux*, is it version 7? I've tried to
find information in their website* but no luck at all.

Does anyone know if Wii or XBox have it as well?

Thanks and sorry for the OT.

Juan

* http://news.bbc.co.uk/1/hi/technology/6142782.stm
* http://www.terrasoftsolutions.com/news/2006/2006-10-17.shtml
* http://eu.playstation.com/ps3/index.html?locale=en_GB

--
Juan Delgado - Zárate
http://zarate.tv
http://dandolachapa.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] [OT] Flash player on the PS3?

2006-11-13 Thread Ammon
Zárate wrote:
 Does anyone know if Wii or XBox have it as well?

Big announcement went out a few weeks ago that Opera for the Wii was
coming with native Flash support. They tiptoed around the issue of
version numbers in the original press release, but if you look at
previous/other news, Opera has a distributor license for the Flash 7 SDK.

So... that's the most probable answer.

My full mumblings on the subject:
  http://ammonlauritzen.com/blog/2006/09/26/wii_for_flash/
(disclaimer - site is probably only 5% flash/flex related :P)

I haven't heard anything new since then, so I'm assuming nothing's changed.

Ammon
___
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] mp3 not playing in I.E. 6

2006-11-13 Thread Marc Hoffman
I found that a ZoneAlarm setting was interfering with I.E. playing 
the mp3's. Not a very happy outcome, since I can't coach every user 
on how to set ZoneAlarm. But many others tested the page and nobody 
else had the same problem, so I suppose it's pretty rare.


At 08:11 AM 11/13/2006, you wrote:

Marc, did you ever get this problem solved, I'm currently having a similar
issue..?





Here is my post.



Site: http://www.sonburst.com/nng/



The application no longer will display the time on the page, it turned to
the original request of a progress bar that shows a percentage

There are some problems of the page not doing what they want it to, when
going back through mp3's... the problem has been identified in .mp3 files
are being cached in IE 6.

I'm currently trying to find a fix for this... so far, i've tried preventing
the page cache using

CFHEADER NAME=Pragma VALUE=no-cache

but no luck so far... when i go into IE, and change my settings to

Tools  Internet Options  (Temporary Internet Files)  Click on Settings 
Change the value Check for newer versions of stored pages to every visit
to the page and then i deleted my files, and refreshed the page, and it
worked

Still working on a permanent fix, but we've identified the problem.  Used a
tool called Service Capture to find out that it was IE 6 that was doing
it... the problem doesnt seem to be happening in firefox, and that is one of
the reasons I never saw it, because my base alpha testing was done in
firefox



Check it out at



http://axel.cfwebtools.com http://axel.cfwebtools.com/













Coldfusion Experts





Axel Jensen

CF Webtools


11204 Davenport, Suite 200b
Omaha, NE 68154
http://axel.cfwebtools.com
402-408-3733 Ext 106


MSN: [EMAIL PROTECTED]













___
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] [OT] Flash player on the PS3?

2006-11-13 Thread Mark Winterhalder

So, has the PS3's browser the Flash player by default? Which version?
Keeping in mind that is running Linux*, is it version 7? I've tried to
find information in their website* but no luck at all.


That's what I thought when I read the article, too.
My guess is that it's 7. There is no FP9 for PPC Linux yet, AFAIK.

But Sony will sell the PS3 for several years. FP9 is so much more
powerful that I'm sure it will be adopted widely, and fast. Imagine,
in two years, somebody with a PS3 can't access the websites of the
latest games... They won't let that happen.

The PS3 can be updated over the net. If it's not FP9, they will make
it so as soon as they can.

Mark



On 11/13/06, Zárate [EMAIL PROTECTED] wrote:

Hi all,

I was reading* this morning about people that have already bought the
PS3 and I run across this guy:

The PS3s internet capabilities are impressive. By using the analogue
sticks to move the mouse pointer, I was pretty much able to do
everything from *view videos on YouTube*, download photos and videos
attached to my e-mails and even do on-line banking and complete a
money transfer.

So, has the PS3's browser the Flash player by default? Which version?
Keeping in mind that is running Linux*, is it version 7? I've tried to
find information in their website* but no luck at all.

Does anyone know if Wii or XBox have it as well?

Thanks and sorry for the OT.

Juan

* http://news.bbc.co.uk/1/hi/technology/6142782.stm
* http://www.terrasoftsolutions.com/news/2006/2006-10-17.shtml
* http://eu.playstation.com/ps3/index.html?locale=en_GB

--
Juan Delgado - Zárate
http://zarate.tv
http://dandolachapa.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


___
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] Object registerClass

2006-11-13 Thread el oskitar

Hi all,

I have a problem with Object.registerClass

this works fine!
//className hardcoded

var myClass = lib.botones.menu[class];
   Object.registerClass(obj_ID, myClass );
   var   myObj  =   _root..attachMovie (obj_ID,myObj,
_root.getNextHighestDepth( ));


but extrangely  this won't work!
//className passed by variable

var className = class;
var myClass = lib.botones.menu[className];
   Object.registerClass(obj_ID, myClass );
   var   myObj  =   _root..attachMovie (obj_ID,myObj,
_root.getNextHighestDepth( ));


Any idea for this extrange behavior?
___
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] [OT] Flash player on the PS3?

2006-11-13 Thread Zárate

Good news about the Wii!

There is no FP9 for PPC Linux yet

PPC? As far as I know* Pocket PC is Microsoft exclusive. What I would
expect in the future is player 9 (Linux version), but it will probably
need to get out of beta first.

Cheers

* http://en.wikipedia.org/wiki/Pocket_PC


On 11/13/06, Mark Winterhalder [EMAIL PROTECTED] wrote:

 So, has the PS3's browser the Flash player by default? Which version?
 Keeping in mind that is running Linux*, is it version 7? I've tried to
 find information in their website* but no luck at all.

That's what I thought when I read the article, too.
My guess is that it's 7. There is no FP9 for PPC Linux yet, AFAIK.

But Sony will sell the PS3 for several years. FP9 is so much more
powerful that I'm sure it will be adopted widely, and fast. Imagine,
in two years, somebody with a PS3 can't access the websites of the
latest games... They won't let that happen.

The PS3 can be updated over the net. If it's not FP9, they will make
it so as soon as they can.

Mark



On 11/13/06, Zárate [EMAIL PROTECTED] wrote:
 Hi all,

 I was reading* this morning about people that have already bought the
 PS3 and I run across this guy:

 The PS3s internet capabilities are impressive. By using the analogue
 sticks to move the mouse pointer, I was pretty much able to do
 everything from *view videos on YouTube*, download photos and videos
 attached to my e-mails and even do on-line banking and complete a
 money transfer.

 So, has the PS3's browser the Flash player by default? Which version?
 Keeping in mind that is running Linux*, is it version 7? I've tried to
 find information in their website* but no luck at all.

 Does anyone know if Wii or XBox have it as well?

 Thanks and sorry for the OT.

 Juan

 * http://news.bbc.co.uk/1/hi/technology/6142782.stm
 * http://www.terrasoftsolutions.com/news/2006/2006-10-17.shtml
 * http://eu.playstation.com/ps3/index.html?locale=en_GB

 --
 Juan Delgado - Zárate
 http://zarate.tv
 http://dandolachapa.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

___
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




--
Juan Delgado - Zárate
http://zarate.tv
http://dandolachapa.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] functions outside a class

2006-11-13 Thread Andy Herrman

That's exactly the approach I was going to suggest.  I find static
Utility classes to be very useful for collections of helper functions
that don't require any real context (things like string utilities and
common tasks).  This tends to be cleaner as well, as you don't have to
worry about passing references around

On 11/10/06, Mike Keesey [EMAIL PROTECTED] wrote:

If these are functions that don't reference a particular instance (i.e.,
don't use the this keyword), then it's better to make a static
utilities class (similar to, e.g., Flash's Math class):

class utils.controls.MyFunctions { // Think of a better name
public static function functionA():Void {
// ...
}
public static function functionB():Void {
// ...
}
}

// In your class:

import utils.controls.MyFunctions;
class utils.controls.ClassA {
public function someFunction():Void {
// ...
MyFunctions.functionA();
MyFunctions.functionB();
}
}

―
Mike Keesey

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:flashcoders-
 [EMAIL PROTECTED] On Behalf Of Helmut Granda
 Sent: Friday, November 10, 2006 11:30 AM
 To: Flashcoders mailing list
 Subject: [Flashcoders] functions outside a class

 I have several classes that will use a function. for scope reasons i
have
 placed the function in a different file but i would like to be able to
 access that file from within the classes.

 If the function has been declared outside the class, what is the best
way
 to
 accces those functions?

 sample:

 utils.controls:
 classA
 classB

 utils/functions:
 functionA
 functionB

 main timeline:
 include functionA
 include functionB

 now I would like to access functionA or functionB within the class...

 TIA

 --
 ...helmut
 ___
 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

___
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] [OT] Flash player on the PS3?

2006-11-13 Thread Martin Wood-Mitrovski



Zárate wrote:

Good news about the Wii!

There is no FP9 for PPC Linux yet

PPC? As far as I know* Pocket PC is Microsoft exclusive. What I would
expect in the future is player 9 (Linux version), but it will probably
need to get out of beta first.


:)

PowerPC, like Macs used to be

http://www.ps3land.com/ps3specs.php

___
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] new inquiry - pulsating drop shadows in mac os

2006-11-13 Thread Catherine Eng

Hi - I just signed up to this list - I have a new inquiry...

Has anyone experienced pulsating drop shadows on flash movies when 
embedded into an html page? It only appears on mac osx. Is there a 
parameter I might set in the embed code to keep this from happening?


Or possibly a different way of creating the drop shadow in flash?

Any thoughts?

Thanks!

Catherine
--
Catherine Eng
Online Media Director
Laufer Media, Inc.

ph: 858-677-6743
[EMAIL PROTECTED]

Laufer Media, Inc.
6430 Sunset Boulevard, Suite 700
Hollywood, CA 90028

Laufer Media, Inc. is the parent company of Bop and Tiger Beat Magazines.
___
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] Any ideas on changing the color of multiple objects within the library.

2006-11-13 Thread o-[artkast]-o

Anyone have any script ideas for changing the actual object color of an
object within the library. I have about 700 objects and they all need a new
color :) I know I can setrgb when they are on the stage. But is there
possibly an external script or plugin that will allow this. By the way they
are all Movieclips. Thanks.


-Rob
--
-[O.o]-
___
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] [OT] Flash player on the PS3?

2006-11-13 Thread Wagner Amaral

Well, I think by PPC Mark meant this:

http://en.wikipedia.org/wiki/PowerPC



On 11/13/06, Zárate [EMAIL PROTECTED] wrote:

Good news about the Wii!

There is no FP9 for PPC Linux yet

PPC? As far as I know* Pocket PC is Microsoft exclusive. What I would
expect in the future is player 9 (Linux version), but it will probably
need to get out of beta first.

Cheers

* http://en.wikipedia.org/wiki/Pocket_PC


On 11/13/06, Mark Winterhalder [EMAIL PROTECTED] wrote:
  So, has the PS3's browser the Flash player by default? Which version?
  Keeping in mind that is running Linux*, is it version 7? I've tried to
  find information in their website* but no luck at all.

 That's what I thought when I read the article, too.
 My guess is that it's 7. There is no FP9 for PPC Linux yet, AFAIK.

 But Sony will sell the PS3 for several years. FP9 is so much more
 powerful that I'm sure it will be adopted widely, and fast. Imagine,
 in two years, somebody with a PS3 can't access the websites of the
 latest games... They won't let that happen.

 The PS3 can be updated over the net. If it's not FP9, they will make
 it so as soon as they can.

 Mark



 On 11/13/06, Zárate [EMAIL PROTECTED] wrote:
  Hi all,
 
  I was reading* this morning about people that have already bought the
  PS3 and I run across this guy:
 
  The PS3s internet capabilities are impressive. By using the analogue
  sticks to move the mouse pointer, I was pretty much able to do
  everything from *view videos on YouTube*, download photos and videos
  attached to my e-mails and even do on-line banking and complete a
  money transfer.
 
  So, has the PS3's browser the Flash player by default? Which version?
  Keeping in mind that is running Linux*, is it version 7? I've tried to
  find information in their website* but no luck at all.
 
  Does anyone know if Wii or XBox have it as well?
 
  Thanks and sorry for the OT.
 
  Juan
 
  * http://news.bbc.co.uk/1/hi/technology/6142782.stm
  * http://www.terrasoftsolutions.com/news/2006/2006-10-17.shtml
  * http://eu.playstation.com/ps3/index.html?locale=en_GB
 
  --
  Juan Delgado - Zárate
  http://zarate.tv
  http://dandolachapa.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
 
 ___
 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



--
Juan Delgado - Zárate
http://zarate.tv
http://dandolachapa.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


___
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] new inquiry - pulsating drop shadows in mac os

2006-11-13 Thread Andy Stone
My Mac monitor started pulsating randomly in different areas. It was a
problem with the monitor not Flash. It gave me migraines and little kids had
seizures. -Andy

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Catherine
Eng
Sent: Monday, November 13, 2006 1:24 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] new inquiry - pulsating drop shadows in mac os

Hi - I just signed up to this list - I have a new inquiry...

Has anyone experienced pulsating drop shadows on flash movies when 
embedded into an html page? It only appears on mac osx. Is there a 
parameter I might set in the embed code to keep this from happening?

Or possibly a different way of creating the drop shadow in flash?

Any thoughts?

Thanks!

Catherine
-- 
Catherine Eng
Online Media Director
Laufer Media, Inc.

ph: 858-677-6743
[EMAIL PROTECTED]

Laufer Media, Inc.
6430 Sunset Boulevard, Suite 700
Hollywood, CA 90028

Laufer Media, Inc. is the parent company of Bop and Tiger Beat Magazines.
___
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] Any ideas on changing the color of multiple objects within the library.

2006-11-13 Thread R�kos Attila

oao Anyone have any script ideas for changing the actual object color of an
oao object within the library. I have about 700 objects and they all need a new
oao color :) I know I can setrgb when they are on the stage. But is there
oao possibly an external script or plugin that will allow this. By the way they
oao are all Movieclips. Thanks.

Do you want it run-time or design-time? The first one is not possible
(only after creating instances), if the latter one, then use JSFL.

  Attila

___
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] Model - Visual - Controler Design Software

2006-11-13 Thread Jorge Antonio Diaz Gutierrez
Hi everyone. I-m looking for some CASE software that allows me to Develop MVC 
Flash WEB Apps.
Thanks for any help
___
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] Adobe Job Opportunities - Sr. Computer Scientists - Online Applications - San Jose

2006-11-13 Thread Cheryl Erickson
Do you want to join the team that revolutionized digital photography,
and help us continue the revolution?

 

Adobe is seeking a scary smart, self-motivated, and enthusiastic
individual to join its Digital Imaging Engineering team. As part of a
powerhouse team involving some of the brightest minds in digital
imaging, you will be focused on developing and advancing the imaging
applications specifically in the area of online services.

 

So what will you be doing?  You will be lending your broad software
development skill set and hands-on experience to help develop and deploy
new Rich Internet Applications (RIA). Your involvement will range from
participating in feature definition, to helping architect key parts of
the application, to designing and implementing new user facing features
and services.

 

Best of all, you'll be on a passionate, fast-moving, customer focused,
adaptive team of smart people who have their egos in check, and work
well as a team.  We're not perfect, but we're always improving.  Why
don't you apply and see what we mean?

 

Knowledge  Skills:

 

* Bachelor's in Computer Science, Electrical Engineering or
equivalent experience, graduate work a plus

* 7-10 years experience in software development, preferably
delivering high quality scalable Rich Internet Applications (RIA) in the
digital photography or imaging space

* Experience developing fluid state-of-the-art web user
interfaces

* Experience with scripting languages a plus (JavaScript, PHP,
Ruby, Perl, etc.)

* Experience with Flash and Flex a definite plus

* Experience with DHTML, AJAX and Ruby on Rails (RoR) a plus

* Experience delivering software on Windows (Mac experience a
plus) 

* Experience designing software systems and architectures within
real-world schedule and revenue constraints

 

 

 

___
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] new inquiry - pulsating drop shadows in mac os

2006-11-13 Thread Holth, Daniel C.

Hi Cathrine,

I have never noticed this on my Mac.  Are you on an Intel Mac?  Flash player 9 
now runs natively on Intel Macs, but previous versions of the player do not.  
I'm wondering if it is a performance issue with Rosetta.

I'm not on my Mac now, but will play around with a bit when I get home. I'll 
let you know if I find anything of use.

-Dan


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Catherine
Eng
Sent: Monday, November 13, 2006 12:24 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] new inquiry - pulsating drop shadows in mac os


Hi - I just signed up to this list - I have a new inquiry...

Has anyone experienced pulsating drop shadows on flash movies when
embedded into an html page? It only appears on mac osx. Is there a
parameter I might set in the embed code to keep this from happening?

Or possibly a different way of creating the drop shadow in flash?

Any thoughts?

Thanks!

Catherine
--
Catherine Eng
Online Media Director
Laufer Media, Inc.

ph: 858-677-6743
[EMAIL PROTECTED]

Laufer Media, Inc.
6430 Sunset Boulevard, Suite 700
Hollywood, CA 90028

Laufer Media, Inc. is the parent company of Bop and Tiger Beat Magazines.
___
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

This e-mail and its attachments are intended only for the use of the 
addressee(s) and may contain privileged, confidential or proprietary 
information. If you are not the intended recipient, or the employee or agent 
responsible for delivering the message to the intended recipient, you are 
hereby notified that any dissemination, distribution, displaying, copying, or 
use of this information is strictly prohibited. If you have received this 
communication in error, please inform the sender immediately and delete and 
destroy any record of this message. Thank you.
___
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] Model - Visual - Controler Design Software

2006-11-13 Thread Ron Wheeler
There are frameworks and there are modelling tools. Which are you 
looking for?


If you search the archives you will finds lots of discussions. Try 
Google as well.

You can also look of the osflash.org site.


Jorge Antonio Diaz Gutierrez wrote:

Hi everyone. I-m looking for some CASE software that allows me to Develop MVC 
Flash WEB Apps.
Thanks for any help
  



___
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] Model - Visual - Controler Design Software

2006-11-13 Thread Jorge Antonio Diaz Gutierrez
I mean something similar to Visual Paradigm/Rational Rose's Design Diagram. 
It's what I'm looking form. If it Outputs AS2 Code Better!!!



From: [EMAIL PROTECTED] on behalf of Ron Wheeler
Sent: Mon 13/11/2006 15:38
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Model - Visual - Controler Design Software



There are frameworks and there are modelling tools. Which are you
looking for?

If you search the archives you will finds lots of discussions. Try
Google as well.
You can also look of the osflash.org site.


Jorge Antonio Diaz Gutierrez wrote:
 Hi everyone. I-m looking for some CASE software that allows me to Develop MVC 
 Flash WEB Apps.
 Thanks for any help
  
 

 ___
 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


___
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] Object registerClass

2006-11-13 Thread Zárate

Hi Oskar!

Trace the type of the variable, if you're getting it from an XML, it
could easily be object instead of string.

Cheers!

On 11/13/06, el oskitar [EMAIL PROTECTED] wrote:

Hi all,

I have a problem with Object.registerClass

this works fine!
//className hardcoded

var myClass = lib.botones.menu[class];
Object.registerClass(obj_ID, myClass );
var   myObj  =   _root..attachMovie (obj_ID,myObj,
_root.getNextHighestDepth( ));


but extrangely  this won't work!
//className passed by variable

var className = class;
var myClass = lib.botones.menu[className];
Object.registerClass(obj_ID, myClass );
var   myObj  =   _root..attachMovie (obj_ID,myObj,
_root.getNextHighestDepth( ));


Any idea for this extrange behavior?
___
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




--
Juan Delgado - Zárate
http://zarate.tv
http://dandolachapa.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] Model - Visual - Controler Design Software

2006-11-13 Thread Mark Lapasa
You can try creating your models in Enterprise Architect and then get 
the plug-in that will allow you to export your static class models into 
skeleton AS2 class files. From there, you would have to flesh it out.


-mL

Jorge Antonio Diaz Gutierrez wrote:

I mean something similar to Visual Paradigm/Rational Rose's Design Diagram. 
It's what I'm looking form. If it Outputs AS2 Code Better!!!



From: [EMAIL PROTECTED] on behalf of Ron Wheeler
Sent: Mon 13/11/2006 15:38
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Model - Visual - Controler Design Software



There are frameworks and there are modelling tools. Which are you
looking for?

If you search the archives you will finds lots of discussions. Try
Google as well.
You can also look of the osflash.org site.


Jorge Antonio Diaz Gutierrez wrote:
  

Hi everyone. I-m looking for some CASE software that allows me to Develop MVC 
Flash WEB Apps.
Thanks for any help
 



___
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


  



___
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] Model - Visual - Controler Design Software

2006-11-13 Thread Jorge Antonio Diaz Gutierrez
And does anyone know where from Can I get the plug-ins. If anyone of you could 
share an experience on MCV development, It would be Better.
Thanks



From: [EMAIL PROTECTED] on behalf of Mark Lapasa
Sent: Mon 13/11/2006 15:48
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Model - Visual - Controler Design Software



You can try creating your models in Enterprise Architect and then get
the plug-in that will allow you to export your static class models into
skeleton AS2 class files. From there, you would have to flesh it out.

-mL

Jorge Antonio Diaz Gutierrez wrote:
 I mean something similar to Visual Paradigm/Rational Rose's Design Diagram. 
 It's what I'm looking form. If it Outputs AS2 Code Better!!!

 

 From: [EMAIL PROTECTED] on behalf of Ron Wheeler
 Sent: Mon 13/11/2006 15:38
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] Model - Visual - Controler Design Software



 There are frameworks and there are modelling tools. Which are you
 looking for?

 If you search the archives you will finds lots of discussions. Try
 Google as well.
 You can also look of the osflash.org site.


 Jorge Antonio Diaz Gutierrez wrote:
  
 Hi everyone. I-m looking for some CASE software that allows me to Develop 
 MVC Flash WEB Apps.
 Thanks for any help
 
 

 ___
 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


  
 

 ___
 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


___
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] [OT] Flash player on the PS3?

2006-11-13 Thread Mike Nowak
 [EMAIL PROTECTED] 11/13/2006 12:09 PM 
So, has the PS3's browser the Flash player by default? Which version?
Keeping in mind that is running Linux*, is it version 7? I've tried to
find information in their website* but no luck at all.

---

Pretty sure it's 7. However, it should be noted that despite all the power of 
the cell, Flash on the PS3 isn't all that speedy.
http://www.joystiq.com/2006/11/11/playing-nintendos-donkey-kong-on-sonys-ps3/

As they point out, it's good for FLVs, but interactive games? Not so much. 


 Does anyone know if Wii or XBox have it as well?

The XBox 360 has no browser and Microsoft has made no mention or interest at 
one coming. While it can't be ruled out, I wouldn't hold your breath. HOWEVER, 
if you look closely, you might notice that the bundled arcade game Hexic is 
actually powered by Macromedia Flash -- so while there might not be a Flash 
player within the 360, it has, clearly, already been ported. It's just not as 
accessible to us normal guys as it is through a simple browser.

-mike

___
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] launching an exe?

2006-11-13 Thread John Dowdell

Adam Fisk wrote:
Thanks for the responses.  I understand the security concerns and 
sympathize

with them, but I still want my users to be able to install the app much
easier regardless.


Adobe Flash covers a wide range of deployment possibilities. It sounds 
like you're asking for ways to safely and easily install a desktop 
application from a web browser.


If so, then keep an eye on the upcoming Apollo project:
http://labs.adobe.com/wiki/index.php/Apollo


Other than that, you can always wrap the Adobe Flash Player in a 
native-code executable (as regular Projector or third-party shell) and 
use the browser's regular installation mechanism to download and 
activate. I wouldn't accept EXEs from strangers myself, but that's one 
way to do it with current technology.


jd






--
John Dowdell . Adobe Developer Support . San Francisco CA USA
Weblog: http://weblogs.macromedia.com/jd
Aggregator: http://weblogs.macromedia.com/mxna
Technotes: http://www.macromedia.com/support/
Spam killed my private email -- public record is best, thanks.
___
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] launching an exe?

2006-11-13 Thread slangeberg

John,

You said:

safely and easily install a desktop application from a web browser.




Do you mean Apollo apps will be distributed from the web, but can run
offline?

You also said:

I wouldn't accept EXEs from strangers myself,


Does that mean the Apollo tool won't ask you to deploy the application, when
downloaded from the browser?

Scott


On 11/13/06, John Dowdell [EMAIL PROTECTED] wrote:


Adam Fisk wrote:
 Thanks for the responses.  I understand the security concerns and
 sympathize
 with them, but I still want my users to be able to install the app much
 easier regardless.

Adobe Flash covers a wide range of deployment possibilities. It sounds
like you're asking for ways to safely and easily install a desktop
application from a web browser.

If so, then keep an eye on the upcoming Apollo project:
http://labs.adobe.com/wiki/index.php/Apollo


Other than that, you can always wrap the Adobe Flash Player in a
native-code executable (as regular Projector or third-party shell) and
use the browser's regular installation mechanism to download and
activate. I wouldn't accept EXEs from strangers myself, but that's one
way to do it with current technology.

jd






--
John Dowdell . Adobe Developer Support . San Francisco CA USA
Weblog: http://weblogs.macromedia.com/jd
Aggregator: http://weblogs.macromedia.com/mxna
Technotes: http://www.macromedia.com/support/
Spam killed my private email -- public record is best, thanks.
___
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





--

: : ) Scott
___
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] support for 32-bit pngs?

2006-11-13 Thread Matthew Ganz
quick question: does flash support 32-bit pngs? a quick search on the archives 
didn't turn up anything. 

thanks. -- matt.
___
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] support for 32-bit pngs?

2006-11-13 Thread Arse @ Snepo
Flash 8+ supports imported and external 24bit pngs with 8bit alphas at 
dimensions  2880px


Arse
http://www.arseiam.com
http://www.snepo.com

Matthew Ganz wrote:
quick question: does flash support 32-bit pngs? a quick search on the archives didn't turn up anything. 

thanks. -- matt. 
___

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


[Flashcoders] Text Field Manipulation/Effect ...

2006-11-13 Thread Stephen Ford
Hello,
 
I'm working on a small interactive with a text manipulation/effect.
 
There is a clip on stage that the user drags from right to left, and as they 
drag, a text field appears on screen (by scaling from a width of 0 to 100% - 
effectively stretching out to full width) following the dragging clip.
 
Here is a link http://www.yourfilehost.com/media.php?cat=swffile=728x90.swf
 
So what I now need to do is have all the letters at full scale and piled on top 
of each other to begin with, then just drag them out into a full sentence (not 
just having the whole sentence as one clip that scales according to the 
position of the drag clip - as it currently does).
 
Anyone seen any source that does a similar thing to this.
 
Thanks.___
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] FLVPlayer and seek() flips out

2006-11-13 Thread Yehia Shouman

I suggest you put a trace beside your seekSeconds call , and see how many
times it is called.
also if you have the autoPlay property set to true, just call seeSeconds and
dont call play after (the second one is something that made me pull my hair
out last week)


On 11/13/06, Michael Stuhr [EMAIL PROTECTED] wrote:


when i'm trying to do a seek seekPercent or seekSeconds the FLVPlayer
totally flips out. it seeks endlessly.

what is the 'correct'  way to do this ?

micha
___
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] launching an exe?

2006-11-13 Thread Adam Fisk

Adobe Flash covers a wide range of deployment possibilities. It sounds
like you're asking for ways to safely and easily install a desktop
application from a web browser.



Exactly.  It struck me that Flash allowing this would cut out 2 key steps
from the straight browser install process.  I can already detect whether or
not my app is running with a quick http request to localhost that either
times out or doesn't (huge improvement in itself over other options), but a
Flash wrapper around my installer could get the user more easily past the
download initiation and installer launching steps.

If so, then keep an eye on the upcoming Apollo project:

http://labs.adobe.com/wiki/index.php/Apollo



Looks very interesting.  I'll keep an eye on it -- thanks.


Other than that, you can always wrap the Adobe Flash Player in a

native-code executable (as regular Projector or third-party shell) and
use the browser's regular installation mechanism to download and
activate. I wouldn't accept EXEs from strangers myself, but that's one
way to do it with current technology.




I really just want to use Flash for the install process itself, basically
taking advantage of its ubiquity and fast launching to improve my install
over the straight browser option.  I think Flash could take over the
installer market in a second with a small degree of focus on this, but it's
not obvious how huge the installer market is when compared to, for example,
your pursuit of VoIP.

I have other good uses for Flash, but I'm not implementing them now.  So,
I've already got my exe, but I'd like to wrap it in a snazzy flash download
and install -- my goal is not to get Flash on the users' machine or to run a
Flash-based app.

Thanks very much.

-Adam
___
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] Remoting bytesLoaded/bytesTotal

2006-11-13 Thread Yehia Shouman

If there's a way for the server people to add a content header with content
length, it might work

On 11/13/06, Janis Radins [EMAIL PROTECTED] wrote:


hye ppl!

I'm in a situation that remoting calls get slow at some point for users
with
slow connection, hence client asked for loading progress display.
As far as i know there is no sutch thing as bytesLoaded /total for
remoting
calls, I just serched help docs and that only confirmed that.

I just would like to know if anyone have hacked/found the way to do that
for
AS2 and remoting calls or confirmation that it is impossible.

tnx in advance

jānis

___
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

[Flashcoders] Remoting Issue

2006-11-13 Thread Yehia Shouman

Hey People/Remoting Experts,

I am using mx remoting (the actionscript 2.0 version) with fash 8, calling
ColdFusion method(s) over remoting . For some unknown reason(atleast to me),
when the Flash app runs in any browser (Firefox/IE), it just keeps on
growing in memory (The process of firefox.exe kept going up from 30MBs to
450MBs), and I can't figure out why. I traced down every
setInterval/onEnterFrame/Event dispatch in my code, reduced memory usage by
40% to reach the 30MBs however it is still going up.

I tried publishing the app to a projector and its working with no reported
slow downs.

One of my components use setIntervals to load a banner info every 5 seconds
from CF over remoting, but i traced that one as well, it's not over calling.

I also found another developer with almost the same problem here

http://www.sephiroth.it/phpBB/showthread.php?t=2394

Does this have anything to do with the Garbage Collection process failing to
fire ? Any tricks out there ?

Please help!

Yehia Shouman
Actionscript Developer
www.santeon.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


[Flashcoders] [OT] Job Opportunity - Flash / ActionScript Engineer - San Francisco

2006-11-13 Thread paul spitzer

It's been awhile since I've followed this list so appologies if job
postings are no longer tolerated. The description is below. If you're
interested send me an email OFFLIST.

Many thanks,

Paul

--

Founded in 1990, Fluid has been creating digital experiences and
applications for over a decade. We are a pioneer in Rich Internet
Application development and routinely apply our years of expertise to
large and complex design and technology challenges. Our clients
include The North Face, Reebok, Charles Schwab, Design Within Reach,
Microsoft, Avery Dennison, United Tote, JanSport and Timberland.

We're seeking a technical lead that has strong Flash / ActionScript
engineering skills and experience with rich media applications. This
is a senior level position requiring at least 6 years programming
experience.  Both client and server-side software development
experience is ideal. User interface (UI) design and motion graphics
experience is also desirable.

Fluid is located at South Park in San Francisco, and is BART, CalTrain
and Muni accessible. More information about this posting can be found
below. More information about Fluid can be found at (www.fluid.com
http://www.fluid.com/ ). No phone calls please. Principals only ­
and please see the bottom of this posting regarding our application
process.

Flash Engineer
-Design and develop data-driven Flash UI's using traditional software
development methodologies.
-Write clean, documented code that can be understood and reused by
other software engineers.
-Work with visual designers and other Flash engineers to design
complex user interfaces and data interactions.
-Produce technical specification and requirements documents.
-Potentially assist with server-side development.

Requirements
-Minimum 6 years programming experience (Actionscript, Java are preferred).
-Minimum 2 years Flash experience.
-Strong working knowledge of Actionscript 2.0+, Object Oriented
Programming, and XML.
-Superior written and verbal communication skills.
-Work well with our roll-your-sleeves up, work hard and have fun,
egalitarian culture.

Preferred
-Experience with tools and technologies related to Flash, such as
Flex, Flash Remoting, Flash Communication Server, etc.
-Bachelor's degree in Computer Science, Visual Arts, or related field

-Rate based on experience and ability.

Interested applicants should email a letter of interest and resume
detailing your specific background, why you believe you are qualified,
and why this opportunity is of interest to you. Applicants should
accompany their interest note with examples of past work exemplifying
technical skills and creative abilities. We will respond with an
acknowledgement once we received your letter of interest.
___
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] newbie question - drawing a ring

2006-11-13 Thread David Cake
	Thanks to everyone who helped out a few weeks ago when I 
asked about drawing a ring or doughnut shape.

Here is AS3 code to do this, based on the AS1 code in this post
http://chattyfig.figleaf.com/pipermail/flashcoders/2005-October/152572.html

private function drawRing (r1:Number, r2:Number, x:Number, y:Number):void {
   var TO_RADIANS:Number = Math.PI/180;

   circle.graphics.moveTo(r1+x,0+y);
   var endx:Number;
   var endy:Number;
   var ax:Number;
   var ay:Number;

   // draw the 30-degree segments
   var a:Number = 0.268;  // tan(15)
   for (var i:uint=0; i  12; i++) {
  endx = r1*Math.cos((i+1)*30*TO_RADIANS);
  endy = r1*Math.sin((i+1)*30*TO_RADIANS);
  ax = endx+r1*a*Math.cos(((i+1)*30-90)*TO_RADIANS);
  ay = endy+r1*a*Math.sin(((i+1)*30-90)*TO_RADIANS);
  circle.graphics.curveTo(ax+x, ay+y, endx+x, endy+y);
   }

   // cut out middle (go in reverse)
   circle.graphics.moveTo(r2+x, 0 +y);

   for (i=12; i  0; i--) {
  endx = r2*Math.cos((i-1)*30*TO_RADIANS);
  endy = r2*Math.sin((i-1)*30*TO_RADIANS);
  ax = endx+r2*(0-a)*Math.cos(((i-1)*30-90)*TO_RADIANS);
  ay = endy+r2*(0-a)*Math.sin(((i-1)*30-90)*TO_RADIANS);
  circle.graphics.curveTo(ax+x, ay+y, endx+x, endy+y);
   }
}


Regards
David
___
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] Model - Visual - Controler Design Software

2006-11-13 Thread Ron Wheeler

2 free possibilities
ArgoUML from tigris.org
Eclipse from eclipse.org has a UML modelling tool. Eclipse is also an 
IDE for building ActionScript applications.
I do not believe that anyone has built an ActionScript code generator 
for Eclipse but it should be possible if there is a Java code generator.
The rest of the Actionscript Eclipse plug-ins can be found through 
osflash.org


Ron

Jorge Antonio Diaz Gutierrez wrote:

I mean something similar to Visual Paradigm/Rational Rose's Design Diagram. 
It's what I'm looking form. If it Outputs AS2 Code Better!!!



From: [EMAIL PROTECTED] on behalf of Ron Wheeler
Sent: Mon 13/11/2006 15:38
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Model - Visual - Controler Design Software



There are frameworks and there are modelling tools. Which are you
looking for?

If you search the archives you will finds lots of discussions. Try
Google as well.
You can also look of the osflash.org site.


Jorge Antonio Diaz Gutierrez wrote:
  

Hi everyone. I-m looking for some CASE software that allows me to Develop MVC 
Flash WEB Apps.
Thanks for any help
 



___
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


  



___
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