Re: [Flashcoders] Holiday cards

2009-07-15 Thread Deepanjan Das
Hi,
Check this out http://purplecookies.com/cc_holidays.aspx
This is a kids version.
Cheers
Deepanjan Das

On Wed, Jul 15, 2009 at 7:08 PM, Mendelsohn, Michael <
michael.mendels...@fmglobal.com> wrote:

> Hi list...
>
> Anyone know of any really superb examples of corporate holiday greeting
> cards?  Just trying to brainstorm.
>
> Thanks!
> - Michael M.
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Video Class Problem

2009-07-15 Thread Bob Wohl
I believe it would still be on top if it was from the start. Full
screen doesn't change the swf's internal index.

So with the video object's height&width, modify that on the resize
event. You can set that to what ever value you want. So if your
control bar is bellow the vid you could do video.height =
Stage.stageHeight-controlBar.y. You would still need to set the
control bar's y location before that to stage's height minus control
bar height.


B.

On Wed, Jul 15, 2009 at 12:55 PM, Omar Fouad wrote:
> You mean that first I set the stage to full screen than I set the video's
> width and height to the stage dimensions and switch it on top of the other
> display objects?
>
>
> On Wed, Jul 15, 2009 at 7:19 PM, allandt bik-elliott (thefieldcomic.com) <
> alla...@gmail.com> wrote:
>
>> ___
>> > Flashcoders
>>
>
>
>
> --
> Omar M. Fouad - Adobe™ Flash© Platform Developer
> www.omar-fouad.net
> Cellular: (+20) 1011.88.534 / (+20) 1444.37.175
>
>
> This e-mail and any attachment is for authorised use by the intended
> recipient(s) only. It may contain proprietary material, confidential
> information and/or be subject to legal privilege. It should not be copied,
> disclosed to, retained or used by, any other party. If you are not an
> intended recipient then please promptly delete this e-mail and any
> attachment and all copies and inform the sender. Thank you.
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Holiday cards

2009-07-15 Thread Gustavo Duenas
Man, those cards are very good, you really need to start  
brainstorming now to do something way better than that.


Gustavo

P.D:

what kind of business is ?
who is your target group?
what is the concept they want in there?
What they will like to have it there?

Once you have those questions answered, you would start doing  
brainstorming, because the answer of the question is what you clients  
will be hearing to convince them of your work.


I'm a marketing consultant and a creative director too, that is why I  
consider it that important for you to do first.





On Jul 15, 2009, at 3:41 PM, Kerry Thompson wrote:


Michael Mendelssohn wrote:


Anyone know of any really superb examples of corporate holiday  
greeting

cards?

Just trying to brainstorm.


Jacquie Lawson is my favorite: 

Cordially,

Kerry Thompson

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] cc button in flvplayback

2009-07-15 Thread Merrill, Jason
Anyone know how to access the cc (closed captioning) button in the
FLVPlaybackComponent (Flash CS3)?  I want to listen to it's CLICK event,
but can't
figure out how to drill into the skin to get the button - the docs are
of no use and neither is Google.  And I have no interest in the
FlvPlaybackCaptioning component - I am rolling my own captioning
solution with more features.  Thanks.


Jason Merrill 

Bank of  America   Global Learning 
Shared Services Solutions Development 

Monthly meetings on the Adobe Flash platform for rich media experiences
- join the Bank of America Flash Platform Community 

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Video Class Problem

2009-07-15 Thread Omar Fouad
You mean that first I set the stage to full screen than I set the video's
width and height to the stage dimensions and switch it on top of the other
display objects?


On Wed, Jul 15, 2009 at 7:19 PM, allandt bik-elliott (thefieldcomic.com) <
alla...@gmail.com> wrote:

> ___
> > Flashcoders
>



-- 
Omar M. Fouad - Adobe™ Flash© Platform Developer
www.omar-fouad.net
Cellular: (+20) 1011.88.534 / (+20) 1444.37.175


This e-mail and any attachment is for authorised use by the intended
recipient(s) only. It may contain proprietary material, confidential
information and/or be subject to legal privilege. It should not be copied,
disclosed to, retained or used by, any other party. If you are not an
intended recipient then please promptly delete this e-mail and any
attachment and all copies and inform the sender. Thank you.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] Holiday cards

2009-07-15 Thread Kerry Thompson
Michael Mendelssohn wrote:

 
> Anyone know of any really superb examples of corporate holiday greeting
cards?
> Just trying to brainstorm.

Jacquie Lawson is my favorite: 

Cordially,

Kerry Thompson

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Video Class Problem

2009-07-15 Thread allandt bik-elliott (thefieldcomic.com)
if you add an event listener to the stage to listen for Event.RESIZE, you
can then resize your video object to match the stage's dimensions

hope this helps

a

On Wed, Jul 15, 2009 at 4:47 PM, Omar Fouad  wrote:

> Hello,
>
> I'm creating a custom shortcut class to play videos from a playlist.
> The class uses the Video Class in conjuction with NetConnection and
> NetStream of course (not using FLVPlayback component)
>
> The problem is that I cannot bring the video to FullScreen mode by using:
>
> stage.displayState = StageDisplayState.FULL_SCREEN;
>
> Flash Player gets into full screen mode but the video is still there with
> its same dimensions.
> So after many searches I found out something that worked in a way but not
> like I wanted:
>
> var screenRectangle:Rectangle = new Rectangle(video.x,video.y, video.width,
> video.height);
> stage.fullScreenSourceRect = screenRectangle;
> stage.displayState = StageDisplayState.FULL_SCREEN;
>
> This apparently "zooms" the flash player to match the video boundaries,
> which is acceptable but now I am facing another problem. I am creating a
> custom video control bar, (with play pause scrub bar etc.) which I need it
> to be visible when in full screen mode. Well, the controls are visible but
> they are too large, because as I said before, flash player is zooming in
> this video.
>
> If I'm on the right path, how can I fix it?
>
> Note: I am using SWFObject and coding with Flex Builder (actionScript
> Project)
>
> Cordially.
>
>
> --
> Omar M. Fouad -
> www.omar-fouad.net
> Cellular: (+20) 1011.88.534 / (+20) 1444.37.175
>
>
> This e-mail and any attachment is for authorised use by the intended
> recipient(s) only. It may contain proprietary material, confidential
> information and/or be subject to legal privilege. It should not be copied,
> disclosed to, retained or used by, any other party. If you are not an
> intended recipient then please promptly delete this e-mail and any
> attachment and all copies and inform the sender. Thank you.
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Video Class Problem

2009-07-15 Thread Omar Fouad
Hello,

I'm creating a custom shortcut class to play videos from a playlist.
The class uses the Video Class in conjuction with NetConnection and
NetStream of course (not using FLVPlayback component)

The problem is that I cannot bring the video to FullScreen mode by using:

stage.displayState = StageDisplayState.FULL_SCREEN;

Flash Player gets into full screen mode but the video is still there with
its same dimensions.
So after many searches I found out something that worked in a way but not
like I wanted:

var screenRectangle:Rectangle = new Rectangle(video.x,video.y, video.width,
video.height);
stage.fullScreenSourceRect = screenRectangle;
stage.displayState = StageDisplayState.FULL_SCREEN;

This apparently "zooms" the flash player to match the video boundaries,
which is acceptable but now I am facing another problem. I am creating a
custom video control bar, (with play pause scrub bar etc.) which I need it
to be visible when in full screen mode. Well, the controls are visible but
they are too large, because as I said before, flash player is zooming in
this video.

If I'm on the right path, how can I fix it?

Note: I am using SWFObject and coding with Flex Builder (actionScript
Project)

Cordially.


-- 
Omar M. Fouad -
www.omar-fouad.net
Cellular: (+20) 1011.88.534 / (+20) 1444.37.175


This e-mail and any attachment is for authorised use by the intended
recipient(s) only. It may contain proprietary material, confidential
information and/or be subject to legal privilege. It should not be copied,
disclosed to, retained or used by, any other party. If you are not an
intended recipient then please promptly delete this e-mail and any
attachment and all copies and inform the sender. Thank you.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] Holiday cards

2009-07-15 Thread Mendelsohn, Michael
Flash based.  We are going to have a personalized Flash holiday card that will 
suck in some xml to personalize the card.  A link will be provided in an email. 
 I'm just looking for some inspiration.

- MM



> you flash based or printed ones?

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Holiday cards

2009-07-15 Thread Gustavo Duenas

you flash based or printed ones?

Gustavo
On Jul 15, 2009, at 9:38 AM, Mendelsohn, Michael wrote:


Hi list...

Anyone know of any really superb examples of corporate holiday  
greeting cards?  Just trying to brainstorm.


Thanks!
- Michael M.

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders





___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Holiday cards

2009-07-15 Thread Mendelsohn, Michael
Hi list...

Anyone know of any really superb examples of corporate holiday greeting cards?  
Just trying to brainstorm.

Thanks!
- Michael M.

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] no more mac ppc for adobe?

2009-07-15 Thread Kenneth Kawamoto
Officially Adobe CS4's system requirements specify Intel chip set; Adobe has dropped PPC support 
long time ago. http://www.adobe.com/products/creativesuite/mastercollection/systemreqs/


In reality many of CS4 programs do run on PPC but things like After Effects you 
cannot even install.

I have Intel but I also have dual G5, so this makes me sad... :)

Kenneth Kawamoto
http://www.materiaprima.co.uk/

Gustavo Duenas wrote:



Is adobe dropping the making of programs for the mac g5 ppc machines? 
I'm asking this because I've just downloaded the coldfusion builder beta 
and  the flash builder beta(gumbo)
and those are not going to run on g5 ppc machines , only for mac intel, 
is that the new direction of adobe or juts because of the beta releases?


Regards,

Gustavo

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] Equivalent of setCharAt to change a character in a string

2009-07-15 Thread Paul Steven
Thanks Bob

Strange that there is not a simpler solution. Ah well, I guess I had just
hoped there was something equivalent to setCharAt

No worries anyway, I have decided to recode using an array.

Cheers

Paul

-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Robert
Leisle
Sent: 14 July 2009 19:43
To: 'Flash Coders List'
Subject: RE: [Flashcoders] Equivalent of setCharAt to change a character in
a string

Ah yes. I missed that part.
How about this moderately less simple one using Kenneth's suggestion?

function swapCharAt(s:String, index:Number, char:String ):String{
var ptrn:RegExp = new RegExp("(.{"+index+"}).(.*)");
return( (s).replace(ptrn, "$1"+char+"$2") );
}
trace( swapCharAt("Flash", 2, "e") );

hth,
Bob

-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Paul Steven
Sent: Tuesday, July 14, 2009 10:32 AM
To: Flash Coders List
Subject: Re: [Flashcoders] Equivalent of setCharAt to change a character in
a string

Thanks Robert - yes I am able to replace patterns but just wondered If  
simple way to change a particular character in a string based on the  
character index?

Thanks
Paul

Sent from my iPhone

On 14 Jul 2009, at 18:10, "Robert Leisle"  wrote:

> Does this not work for you?
>
> // Change the first instance only
> var myPattern:RegExp = /sh/;
> // Change all instances
> //var myPattern:RegExp = /sh/g;
> var str:String = "She sells seashells by the seashore.";
> trace(str.replace(myPattern, "sch"));
> // She sells seaschells by the seashore.
>
> Hth,
> Bob
>
> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders- 
> boun...@chattyfig.figleaf.com] On Behalf Of Paul Steven
> Sent: Tuesday, July 14, 2009 8:50 AM
> To: 'Flash Coders List'
> Subject: [Flashcoders] Equivalent of setCharAt to change a character  
> in a string
>
> Probably something really simple but can't for the life of me recall  
> the syntax to change a particular character of a string.
>
> For example if I have the word "Flash" and want to change the letter  
> "a" to an "e", I was hoping there was a function like setCharAt(2,  
> "e");
>
> Btw I am coding in AS3.
>
> Thanks
>
> paul
>
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
>
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders