RE: [Flashcoders] Reusing an Image

2011-03-30 Thread Andrew Murphy
Hi. :)

I'm not sure if this could be an issue in your situation or not - or if you
already have it taken care of - but it came up on a project I worked on
recently and I thought I'd mention it:  If you are loading the images from a
different domain than the one that the Flash file is on, you have to set the
context property of the Loader class when you call the load() method.
For example:

image_loader.load(new URLRequest(image_url), new LoaderContext(true));

This will cause the Loader to check for a cross domain policy file on the
image file's server.  You have make a crossdomain.xml file which gives
access permissions to the Flash file's server and place it in the root
folder of the image file's server, or just add the Flash file's server if
the image file's server already has a cross domain policy file.

You should be able to load the image if you skip setting the Loader's
context and setting up the cross domain policy, but when you try to access
it's bitmap data you'll get a Security error.


--
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia 
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W 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.




-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Kevin
Holleran
Sent: March-28-11 11:25
To: Flash Coders List
Subject: [Flashcoders] Reusing an Image

Hi,

I am loading some images into an array of loaders.  Is there a way to bind
these to a class or something to reuse?  So the image at images_loader[0]
may be used three times.

Thanks for your help.

Kevin
___
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] flash.filesystem not in Flash?

2011-02-23 Thread Andrew Murphy
Hi. :)

For security purposes Flash does not have the ability to writing data on the
user's hard drive, except to the Local Shared-Object.  AIR runs on the
user's OS as an application, so it has been given more access.


--
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia 
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com



-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Cor
Sent: February-23-11 05:10
To: 'Flash Coders List'
Subject: [Flashcoders] flash.filesystem not in Flash?

Hi list,

I would like to create an explorer to let a user browse to a specific folder

There he can select a txt-file to load in in Flash CS5.
And after some string handling, I would like so save the outcome to a XML
file.

But apparently flash.filesystem is only working with AIR.
Can anyone help me with this one??

Regards,
Cor van Dooren


___
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] Detecting if fullscreen is or is not allowed

2010-11-29 Thread Andrew Murphy
Hi. :)

I am building an AS3 video player and would like to remove the full screen
button from the stage if the allowFullScreen parameter in the HTML embed
code for the movie was not set to true.  But I've not been able to find
out how to check if the Flash is allowed to go full screen or not.  Surely
there's a parameter set somewhere in the Flash with that info?  I've been
searching through the LangRef and have googled about it, but I've not been
able to find where this parameter is hidden.

It's probably so simple that I'll feel very stupid for not figuring it
out... -.-


 --
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com


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


RE: [Flashcoders] AIR HTMLLoader mouse events not working

2010-09-03 Thread Andrew Murphy
Hi.

I'm not certain why HTMLLoader's event isn't firing, but you could track if
the app is or is not being interacted with via NativeApplication, like this:


private const IDLE_TIME:uint = 120;

// set us up the user idle detection
NativeApplication.nativeApplication.idleThreshold = IDLE_TIME;
NativeApplication.nativeApplication.addEventListener(Event.USER_IDLE,
userIdleHandler);


You can also track an event for when the user begins interacting with the
app after it has been left idle:

NativeApplication.nativeApplication.addEventListener(Event.USER_PRESENT,
userPresentHandler);


I used this on a touch screen kiosk app that we use at Delvinia in place of
a receptionist.

I hope that helps. :)

-[a]-



-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of David Hunter
Sent: September-03-10 7:56 AM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] AIR HTMLLoader mouse events not working


hi all, 
I'm making a touchscreen kiosk application. its all done except for a timer
that returns to a start screen when it is inactive for more than a couple
minutes. I'm monitoring activity using MOUSE_MOVE event. that works fine
except when using an instance of HTMLLoader where it doesn't seem to pick up
mouse moves or even mouse downs or clicks. I have set the useCapture
parameter to 'true' and that has solved the problem on my Mac laptop, but
the problem still persists when the app is installed on the kiosk machine
with touchscreen. Not sure if this is to do with the OS or the touchscreen
or something else? 
Any help greatly appreciated,
David
___
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] FLV Conversion

2010-09-02 Thread Andrew Murphy
I think that the best method for converting an FLV would depend on what the
purpose of the new video file is.  However any conversion from one format to
another will involve a loss of quality as you recompress video data that's
already been though at least one round of compression when it was turned
into an FLV.

One thing that might work is to extract the video and audio streams and then
mux them into an MKV container, so that you can avoid recompressing the
streams.  I'm not sure what the point behind that would be though as any
player that can run the resulting MKV is probably also able to play FLVs.

-[a]-



-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of William
Chadwick
Sent: September-02-10 6:55 PM
To: Flash Coders List
Subject: [Flashcoders] FLV Conversion

What's the best application to use to convert .flv files to MP4 or other
video formats?

William Chadwick
___
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] Link text indexes in a TextField

2010-08-31 Thread Andrew Murphy
Good morning.

I came up with a solution, it's not elegant but it works:


1) Break up the HTML into an array of chunks of code based on where the
links occour.  So this:

 [p]Lorem ipsum [a href=event:block1]dolor sit[/a] amet.[/p]

Gets turned into this:

 blocks[0] = [p]Lorem ipsum 
 blocks[0] = [a href=event:block1]dolor sit[/a]
 blocks[0] =  amet.[/p]

2) Go through that array of chunks, concatenating each chunk with the chunks
before it and plugging the results into the TextField.  Force it to render
(validateNow();) each time and use the previous and current length of the
text property to determine the beginning and ending indices of each chunk.

3) For any chunks containing a link, save the link's URL and indices into an
array.  ie:

 link_props[0] = {name:block1, begin:12, end:21}

4) When a link is clicked use the text property of the TextEvent.LINK
event to get at the indices for that link in the array.


Thank you for helping. :)


 --
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com

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


RE: [Flashcoders] Link text indexes in a TextField

2010-08-31 Thread Andrew Murphy
Thank you, but I came up with a solution. :)

 --
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com


-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karim
Beyrouti
Sent: August 31, 2010 05:37 am
To: Flash Coders List
Subject: Re: [Flashcoders] Link text indexes in a TextField


I have textfield link detection in this class - 


https://code.google.com/p/kurstcode/source/browse/trunk/libs/com/kurst/utils
/TextFieldUtils.as

using it for link roll-over / roll-out events. And I think it could be
extended to get the link's start/end position.
Have a look at the 'detectMouseOver' function - could be a good starting
point...

- karim

On 30 Aug 2010, at 19:47, Andrew Murphy wrote:

 Hello. :)
 
 Thank you, but I think that will give me the link's text from within the
 htmlText property of the TextField.
 
 
 What I need are the beginning and ending indexes of the link within the
 text property of the TextField.  That is, after the HTML has been
rendered
 into the displayed text.
 
 I've thought of finding the index of the TextEvent's text property (ie:
 block1) within the htmlText property of the TextField and using that
to
 determine the indexes, but those indexes would be relative to the
 TextField's htmlText property, rather than it's text property.
 
 
 
 --
 Andrew Murphy
 Interactive Media Developer
 amur...@delvinia.com
 
 Delvinia
 370 King Street West, 5th Floor, Box 4 
 Toronto Canada M5V 1J9
 P (416) 364-1455 ext. 232
 F (416) 364-9830  
 W www.delvinia.com
 
 
 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Nathan
 Mynarcik
 Sent: August 30, 2010 14:35 pm
 To: Flash Coders List
 Subject: Re: [Flashcoders] Link text indexes in a TextField
 
 You will have to cull out what you want:
 
 **Psuedo Code**
 
 var stuff:String = [a href=event:block1]dolor sit[/a];
 
 stuff.substr(stuff.indexOf([a href=event:block1]),
 stuff.indexOf([/a]));
 
 
 
 Nathan Mynarcik
 nat...@mynarcik.com
 254.749.2525
 www.mynarcik.com
 
 
 On Mon, Aug 30, 2010 at 1:46 PM, Andrew Murphy amur...@delvinia.com
wrote:
 
 Hi. :)
 
 Does anyone know of a way to get the beginning and ending index of a link
 within a TextField?
 
 I want the indexes of the beginning and ending of the text that makes up
 the
 link.  For example if I pass the following HTML text into the TextField:
 
 
   [p]Lorem ipsum [a href=event:block1]dolor sit[/a] amet.[/p]
 
 
 What I want is the beginning and ending indexes of the dolor sit text
 when
 the user clicks on it.  The TextEvent.LINK event passes out the value of
 the
 href within the link text (ie: block1), which isn't terribly useful
in
 this case.
 
 
 
 ( ps:  I used square brackets in the example HTML text rather than angle
 brackets to try avoiding issues with the list's mailer, which doesn't
like
 HTML code in emails. )
 
 
 --
 Andrew Murphy
 Interactive Media Developer
 amur...@delvinia.com
 
 Delvinia
 370 King Street West, 5th Floor, Box 4
 Toronto Canada M5V 1J9
 P (416) 364-1455 ext. 232
 F (416) 364-9830
 W www.delvinia.com
 
 
 ___
 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


RE: [Flashcoders] Link text indexes in a TextField

2010-08-31 Thread Andrew Murphy
I already posted my solution to this list. :)

 --
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com


-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Ktu
Sent: August 31, 2010 10:15 am
To: Flash Coders List
Subject: Re: [Flashcoders] Link text indexes in a TextField

so whats your solution?

On Tue, Aug 31, 2010 at 9:42 AM, Andrew Murphy amur...@delvinia.com wrote:

 Thank you, but I came up with a solution. :)

  --
 Andrew Murphy
 Interactive Media Developer
 amur...@delvinia.com

 Delvinia
 370 King Street West, 5th Floor, Box 4
 Toronto Canada M5V 1J9
 P (416) 364-1455 ext. 232
 F (416) 364-9830
 W www.delvinia.com


 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karim
 Beyrouti
 Sent: August 31, 2010 05:37 am
 To: Flash Coders List
 Subject: Re: [Flashcoders] Link text indexes in a TextField


 I have textfield link detection in this class -




https://code.google.com/p/kurstcode/source/browse/trunk/libs/com/kurst/utils
 /TextFieldUtils.as

 using it for link roll-over / roll-out events. And I think it could be
 extended to get the link's start/end position.
 Have a look at the 'detectMouseOver' function - could be a good starting
 point...

 - karim

 On 30 Aug 2010, at 19:47, Andrew Murphy wrote:

  Hello. :)
 
  Thank you, but I think that will give me the link's text from within the
  htmlText property of the TextField.
 
 
  What I need are the beginning and ending indexes of the link within the
  text property of the TextField.  That is, after the HTML has been
 rendered
  into the displayed text.
 
  I've thought of finding the index of the TextEvent's text property
(ie:
  block1) within the htmlText property of the TextField and using that
 to
  determine the indexes, but those indexes would be relative to the
  TextField's htmlText property, rather than it's text property.
 
 
 
  --
  Andrew Murphy
  Interactive Media Developer
  amur...@delvinia.com
 
  Delvinia
  370 King Street West, 5th Floor, Box 4
  Toronto Canada M5V 1J9
  P (416) 364-1455 ext. 232
  F (416) 364-9830
  W www.delvinia.com
 
 
  -Original Message-
  From: flashcoders-boun...@chattyfig.figleaf.com
  [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Nathan
  Mynarcik
  Sent: August 30, 2010 14:35 pm
  To: Flash Coders List
  Subject: Re: [Flashcoders] Link text indexes in a TextField
 
  You will have to cull out what you want:
 
  **Psuedo Code**
 
  var stuff:String = [a href=event:block1]dolor sit[/a];
 
  stuff.substr(stuff.indexOf([a href=event:block1]),
  stuff.indexOf([/a]));
 
 
 
  Nathan Mynarcik
  nat...@mynarcik.com
  254.749.2525
  www.mynarcik.com
 
 
  On Mon, Aug 30, 2010 at 1:46 PM, Andrew Murphy amur...@delvinia.com
 wrote:
 
  Hi. :)
 
  Does anyone know of a way to get the beginning and ending index of a
 link
  within a TextField?
 
  I want the indexes of the beginning and ending of the text that makes
up
  the
  link.  For example if I pass the following HTML text into the
TextField:
 
 
[p]Lorem ipsum [a href=event:block1]dolor sit[/a] amet.[/p]
 
 
  What I want is the beginning and ending indexes of the dolor sit text
  when
  the user clicks on it.  The TextEvent.LINK event passes out the value
of
  the
  href within the link text (ie: block1), which isn't terribly useful
 in
  this case.
 
 
 
  ( ps:  I used square brackets in the example HTML text rather than
angle
  brackets to try avoiding issues with the list's mailer, which doesn't
 like
  HTML code in emails. )
 
 
  --
  Andrew Murphy
  Interactive Media Developer
  amur...@delvinia.com
 
  Delvinia
  370 King Street West, 5th Floor, Box 4
  Toronto Canada M5V 1J9
  P (416) 364-1455 ext. 232
  F (416) 364-9830
  W www.delvinia.com
 
 
  ___
  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] Link text indexes in a TextField

2010-08-30 Thread Andrew Murphy
Hi. :)

Does anyone know of a way to get the beginning and ending index of a link
within a TextField?

I want the indexes of the beginning and ending of the text that makes up the
link.  For example if I pass the following HTML text into the TextField:


[p]Lorem ipsum [a href=event:block1]dolor sit[/a] amet.[/p]


What I want is the beginning and ending indexes of the dolor sit text when
the user clicks on it.  The TextEvent.LINK event passes out the value of the
href within the link text (ie: block1), which isn't terribly useful in
this case.



( ps:  I used square brackets in the example HTML text rather than angle
brackets to try avoiding issues with the list's mailer, which doesn't like
HTML code in emails. )


 --
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com


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


RE: [Flashcoders] Link text indexes in a TextField

2010-08-30 Thread Andrew Murphy
Hello. :)

Thank you, but this script doesn't appear to return the beginning and ending
indexes of the link.



 --
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com


-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Mattheis,
Erik (MIN-WSW)
Sent: August 30, 2010 14:23 pm
To: Flash Coders List
Subject: RE: [Flashcoders] Link text indexes in a TextField

This might give you some ideas on accomplishing what you needs to do -use
split().join():

http://troyworks.com/blog/2008/03/14/flash-textfield-actionscript-hyperlink-
in-as30/



_ _ _
Erik Mattheis
Senior Web Developer
Minneapolis
T  952 346 6610
C 612 377 2272

Weber Shandwick
Advocacy starts here.

PRWeek Global Agency Report Card 2009 - Gold Medal Winner
The Holmes Report Global Agency of the Year
PR News Agency of the Year

-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Andrew
Murphy
Sent: Monday, August 30, 2010 12:47 PM
To: 'Flash Coders List'
Subject: [Flashcoders] Link text indexes in a TextField

Hi. :)

Does anyone know of a way to get the beginning and ending index of a link
within a TextField?

I want the indexes of the beginning and ending of the text that makes up the
link.  For example if I pass the following HTML text into the TextField:


[p]Lorem ipsum [a href=event:block1]dolor sit[/a] amet.[/p]


What I want is the beginning and ending indexes of the dolor sit text when
the user clicks on it.  The TextEvent.LINK event passes out the value of the
href within the link text (ie: block1), which isn't terribly useful in
this case.



( ps:  I used square brackets in the example HTML text rather than angle
brackets to try avoiding issues with the list's mailer, which doesn't like
HTML code in emails. )


 --
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com


___
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


RE: [Flashcoders] Link text indexes in a TextField

2010-08-30 Thread Andrew Murphy
Hi. :)

Mirror regions sound like they might do the job, but I'm limited to working
with the v9 plug-in.  (Sorry.. I should have mentioned that in my first
email.)

I'm not certain what you mean by using multiple content elements.

The effect I'm looking for is that when the user clicks on a link the Flash
draws a highlight around the link's text and passes the beginning and ending
indexes of that text to another function.  I really do need the beginning
and ending indexes.



 --
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com


-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Henrik
Andersson
Sent: August 30, 2010 14:15 pm
To: Flash Coders List
Subject: Re: [Flashcoders] Link text indexes in a TextField

Andrew Murphy skriver:
 Hi. :)

 Does anyone know of a way to get the beginning and ending index of a link
 within a TextField?

 I want the indexes of the beginning and ending of the text that makes up
the
 link.  For example if I pass the following HTML text into the TextField:


  [p]Lorem ipsum [a href=event:block1]dolor sit[/a] amet.[/p]


 What I want is the beginning and ending indexes of the dolor sit text
when
 the user clicks on it.  The TextEvent.LINK event passes out the value of
the
 href within the link text (ie: block1), which isn't terribly useful in
 this case.

Are you sure that you need the positions? The flash.text.engine package 
has this nifty thing called mirror regions, perhaps they are useful here?

Or perhaps you just need multiple content elements?

It is hard to help when you don't know the purpose.
___
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] Link text indexes in a TextField

2010-08-30 Thread Andrew Murphy
Hello. :)

Thank you, but I think that will give me the link's text from within the
htmlText property of the TextField.


What I need are the beginning and ending indexes of the link within the
text property of the TextField.  That is, after the HTML has been rendered
into the displayed text.

I've thought of finding the index of the TextEvent's text property (ie:
block1) within the htmlText property of the TextField and using that to
determine the indexes, but those indexes would be relative to the
TextField's htmlText property, rather than it's text property.



 --
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com


-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Nathan
Mynarcik
Sent: August 30, 2010 14:35 pm
To: Flash Coders List
Subject: Re: [Flashcoders] Link text indexes in a TextField

You will have to cull out what you want:

**Psuedo Code**

var stuff:String = [a href=event:block1]dolor sit[/a];

stuff.substr(stuff.indexOf([a href=event:block1]),
stuff.indexOf([/a]));



Nathan Mynarcik
nat...@mynarcik.com
254.749.2525
www.mynarcik.com


On Mon, Aug 30, 2010 at 1:46 PM, Andrew Murphy amur...@delvinia.com wrote:

 Hi. :)

 Does anyone know of a way to get the beginning and ending index of a link
 within a TextField?

 I want the indexes of the beginning and ending of the text that makes up
 the
 link.  For example if I pass the following HTML text into the TextField:


[p]Lorem ipsum [a href=event:block1]dolor sit[/a] amet.[/p]


 What I want is the beginning and ending indexes of the dolor sit text
 when
 the user clicks on it.  The TextEvent.LINK event passes out the value of
 the
 href within the link text (ie: block1), which isn't terribly useful in
 this case.



 ( ps:  I used square brackets in the example HTML text rather than angle
 brackets to try avoiding issues with the list's mailer, which doesn't like
 HTML code in emails. )


  --
 Andrew Murphy
 Interactive Media Developer
 amur...@delvinia.com

 Delvinia
 370 King Street West, 5th Floor, Box 4
 Toronto Canada M5V 1J9
 P (416) 364-1455 ext. 232
 F (416) 364-9830
 W www.delvinia.com


 ___
 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


RE: [Flashcoders] HTMLLoader and AIR -- always a nice white blank

2010-06-21 Thread Andrew Murphy
If you haven't tried this yet:  Add event listeners and traces to all of the
relevant events that the HTML component throws, and see if that can give you
more details on what it's doing.. or not doing.


 --
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com

-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Tony
Fairfield
Sent: June 21, 2010 09:08 am
To: Flash Coders List
Subject: RE: [Flashcoders] HTMLLoader and AIR -- always a nice white blank

Yes, as

pdf.height = stage.stageHeight;
pdf.width = stage.stageWidth; 

I found one glaringly stupid mistake I'd made: not including the local
documents I was loading with the AIR build. When I simply tested the
movie, it finally showed. Still can't get a site URL (such as adobe home
page) to work, but I'm working on that one now...

Thanks for your reply,


Tony Fairfield
Programmer
Lifelearn, Inc.


-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Steven
Sacks
Sent: June 20, 2010 5:39 PM
To: Flash Coders List
Subject: Re: [Flashcoders] HTMLLoader and AIR -- always a nice white
blank

Did you trace the width and height?
___
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


RE: [Flashcoders] Loader.unload not freeing the memory

2010-05-27 Thread Andrew Murphy
Hi. :)

Are you calling garbage collection after you unload?  If you don't call for
it then it may take a while for Flash to get around to doing it.

http://www.craftymind.com/2008/04/09/kick-starting-the-garbage-collector-in-
actionscript-3-with-air/

(The above article is AIR specific, but some of it should apply to Flash
coding as well.  I think...)


 --
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com


-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Sumeet Kumar
Sent: May 27, 2010 08:22 am
To: Flash Coders List
Subject: [Flashcoders] Loader.unload not freeing the memory

Hi All,

I have some AS2 swf files(with lots of AS2 code) which i am loading in a AS3

file using Loader Class Object. The problem is that once i unload the as2 
swf from the AS3 file, the memory is not just getting freed. I have removed 
all the as3 listeners.

Has anyone experinced something like this or is there something which i am 
doing wrong. Any guidance and suggestions in this regard would be a great 
help

Thanks in Advance
Sumeet Kumar 


___
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] SIP library in as3 for player 10.1

2010-05-06 Thread Andrew Murphy
You may want to take a look at red5phone, if you haven't already:

http://code.google.com/p/red5phone/


 --
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com

-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Anthony Pace
Sent: May 5, 2010 20:02 pm
To: Flash Coders List
Subject: [Flashcoders] SIP library in as3 for player 10.1

Anyone know of a working SIP library in AS3 for player 10.1?
___
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] OT: HTML5 capabilitites

2010-04-30 Thread Andrew Murphy
A few people have posted wondering about HTML5's capabilities so I thought
I'd share a few web pages that I've come across which give some more
details.  I am by no means an expert on this subject!  (Who is yet?)  These
are just some sites that I found interesting. :)

A presentation done in HTML5.  (Best bet is to use Chrome to view it.)
http://apirocks.com/html5/html5.html#slide1

Info on which browsers support CSS3 and HTML5
http://www.deepbluesky.com/blog/-/browser-support-for-css3-and-html5_72/

A checklist of which browsers support various parts of the HTML5 standard
http://www.findmebyip.com/litmus#target-selector

Some interesting info about video embedding
http://www.webmonkey.com/2010/04/flash-faces-down-threats-on-adobes-big-day/


 --
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com


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


RE: [Flashcoders] OT: HTML5 capabilitites

2010-04-30 Thread Andrew Murphy
I wonder if Microsoft will create patches for older versions of IE to give
them HTML5 functionality?

IE6 came out in 2001 and it's still over apx. 20% of installed web
browsers*!  Until that figure drops down to, say, less than 5% I'm pretty
sure our clients will still want us to support them.

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

 --
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com


-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Merrill,
Jason
Sent: April 30, 2010 10:49 am
To: Flash Coders List
Subject: RE: [Flashcoders] OT: HTML5 capabilitites

Perhaps I spoke too soon.  The death of Silverlight?  Microsoft is now
saying HTML 5 is the future of the web (HTML 5 coming in IE9): 

http://is.gd/bOhWn 

Huh.


Jason Merrill 

Bank of  America  Global Learning 
Learning  Performance Solutions

Join the Bank of America Flash Platform Community  and visit our
Instructional Technology Design Blog
(note: these are for Bank of America employees only)






-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Merrill,
Jason
Sent: Friday, April 30, 2010 10:26 AM
To: Flash Coders List
Subject: RE: [Flashcoders] OT: HTML5 capabilitites

Given Microsoft's push to make Silverlight the dominant rich media
platform, and their current lack of HTML 5 and CSS3 feature support in
IE 8, it will be interesting to see if/when they adopt it.  If they
don't it could spell disaster for IE in the long run, but of course if
they adopt it, it competes with Silverlight.  So I guess Microsoft and
Adobe have to either adopt HTML5, or continue to out-innovate HTML5.
Both companies, pushing Flash and Silverlight, do have the advantage
that they can innovate far faster and produce consistent experiences on
multiple browsers and operating systems.  Looking long term, I can't
imagine the HTML and CSS standards can evolve as quickly and be as
consistent as those platforms.


Jason Merrill 

Bank of  America  Global Learning
Learning  Performance Solutions

Join the Bank of America Flash Platform Community  and visit our
Instructional Technology Design Blog
(note: these are for Bank of America employees only)





-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Andrew
Murphy
Sent: Friday, April 30, 2010 8:32 AM
To: 'Flash Coders List'
Subject: [Flashcoders] OT: HTML5 capabilitites

A few people have posted wondering about HTML5's capabilities so I
thought I'd share a few web pages that I've come across which give some
more details.  I am by no means an expert on this subject!  (Who is
yet?)  These are just some sites that I found interesting. :)

A presentation done in HTML5.  (Best bet is to use Chrome to view it.)
http://apirocks.com/html5/html5.html#slide1

Info on which browsers support CSS3 and HTML5
http://www.deepbluesky.com/blog/-/browser-support-for-css3-and-html5_72/

A checklist of which browsers support various parts of the HTML5
standard http://www.findmebyip.com/litmus#target-selector

Some interesting info about video embedding
http://www.webmonkey.com/2010/04/flash-faces-down-threats-on-adobes-big-
day/


 --
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830
W www.delvinia.com


___
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


RE: [Flashcoders] gapless looping of external mp3's

2010-04-29 Thread Andrew Murphy
This might work to achieve gapless looping:

Once you've loaded the audio assets (an mp3 file, swf file library assets,
etc.), copy the raw sound data into a ByteArray.  Then to play it back you
create a duplicate of that ByteArray and feed it to a new Sound object when
it throws it's SampleDataEvent event.  Once you've used up the ByteArray,
duplicate it again and keep feeding it to the Sound object.

I've been messing around with this, off and on, for a while to try and loop
a simple sine wave audio data that I've generated.  It works pretty well,
except that I always get a little 'pop' whenever the next loop starts..
possibly because the phase of the end of the previous loop doesn't match the
start of the next one.


 --
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com

-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Jim Andrews
Sent: April 29, 2010 01:52 am
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] gapless looping of external mp3's

I'm new to the list.

Does anyone have experience with gapless looping of external mp3's in Flash?

I'm having probs with it.

I read http://www.compuphase.com/mp3/mp3loops.htm . There's even a section 
in there about gapless looping in Flash.

But I'm not sure how old that page is and if there are better methods now 
than what's described there.

I have done some previous work with gapless looping, but it was all in 
Director, such as at http://vispo.com/nio and http://vispo.com/jig/arteroids

. I'm just learning ActionScript now.

ja 

___
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] gapless looping of external mp3's

2010-04-29 Thread Andrew Murphy
Yep, this looks like it.. though with added code for dealing with silence
added to the MP3 during encoding. :)


 --
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com


-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Jim Andrews
Sent: April 29, 2010 10:09 am
To: Flash Coders List
Subject: Re: [Flashcoders] gapless looping of external mp3's

That's basically what Andre Michelle is doing with his code at 
http://blog.andre-michelle.com/2010/playback-mp3-loop-gapless/#more-590 , 
Andrew.

ja
http://vispo.com

- Original Message - 
From: Andrew Murphy amur...@delvinia.com
To: 'Flash Coders List' flashcoders@chattyfig.figleaf.com
Sent: Thursday, April 29, 2010 6:28 AM
Subject: RE: [Flashcoders] gapless looping of external mp3's


 This might work to achieve gapless looping:

 Once you've loaded the audio assets (an mp3 file, swf file library assets,
 etc.), copy the raw sound data into a ByteArray.  Then to play it back you
 create a duplicate of that ByteArray and feed it to a new Sound object 
 when
 it throws it's SampleDataEvent event.  Once you've used up the ByteArray,
 duplicate it again and keep feeding it to the Sound object.

 I've been messing around with this, off and on, for a while to try and 
 loop
 a simple sine wave audio data that I've generated.  It works pretty well,
 except that I always get a little 'pop' whenever the next loop starts..
 possibly because the phase of the end of the previous loop doesn't match 
 the
 start of the next one.


 --
 Andrew Murphy
 Interactive Media Developer
 amur...@delvinia.com

 Delvinia
 370 King Street West, 5th Floor, Box 4
 Toronto Canada M5V 1J9
 P (416) 364-1455 ext. 232
 F (416) 364-9830
 W www.delvinia.com
 

___
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] letter from Steve Jobs on Flash

2010-04-29 Thread Andrew Murphy
I think his comment was that many Flash sites were not designed for touch
screens, not that Flash itself is not designed for touch screens.

Even then it isn't really a fair comment since the vast majority of web
experiences were not designed with touch screen interactivity in mind.


 --
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com


-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Glen Pike
Sent: April 29, 2010 10:41 am
To: Flash Coders List
Subject: Re: [Flashcoders] letter from Steve Jobs on Flash

I think some of his comments about Flash not being designed for Touch 
devices have a ring of truth to them, for example, I develop for a 
touchscreen system and have written many custom components without 
rollovers.

I can't really comment on battery life, web-video, etc. because I do all 
my browsing from a PC and only watch videos stuff that's plugged in.

This morning, I found myself hacking cellrenderers and making special 
workarounds for Flash's list control in order to implement a list that 
scrolled when you swipe it.  This is not multi-touch, just single touch, 
but still there is either a derth of components / tutorials / 
documentation for doing this sort of stuff.

OTOH, I managed to develop my own list control in Flash for the 
Touchscreen in under 8 hours without having to learn another language.  
I guess I am one of the lucky people - I work on a proprietary 
touch-screen based system supplied to specific customers and don't have 
to bend to the whims of the iPhone generation / market forces as much as 
if I was developing websites and RIA's and one of the 50,000+ games in 
the App store.  Can you call it a game if it is merely a graphic of a 
pint glass tipping beer?

Glen

On 29/04/2010 15:18, David Hunter wrote:
 i know there has already been a lot of talk about flash and iphones/ipads
and developer agreements on this list and i don't wish to add unnecessarily
or stoke up the fire again but i thought this might be a worthwhile read for
all from the man at the centre of it
all:http://www.apple.com/hotnews/thoughts-on-flash/

 _
 http://clk.atdmt.com/UKM/go/195013117/direct/01/
 ___
 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


RE: [Flashcoders] @#$% New iPhone Developer Agreement Bans the Use of Adobe¹s Flash-to-iPhone Compiler

2010-04-16 Thread Andrew Murphy
I think Apple may be doing this in an attempt to preserve the brand identity
of their mobile devices.  A flood of mobile devices with hardware and
interfaces that are as powerful and intuitive, or more so, than the iPhone
and iPad, has begun.

By requiring developers to jump through hoops to create content for their
devices, Apple makes it more likely that that content will only be available
on their devices, making it exclusive.  It seems to me that exclusivity is
part of their brand identity; Think different.


 --
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com

-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Dave Watts
Sent: April 15, 2010 22:32 pm
To: Flash Coders List
Subject: Re: [Flashcoders] @#$% New iPhone Developer Agreement Bans the Use
of Adobe¹s Flash-to-iPhone Compiler

 Why is it that their phone can embrace flash but Apple cant?

Purely because it's not in Apple's perceived business interest to do
so. That's the only reason. There are various technical-sounding
excuses given - poor performance, poor quality for cross-platform apps
- but that's all BS. Apple makes money from the App Store. Allowing
Flash detracts from the value of the App Store. Allowing developers to
use cross-platform tools detracts from the value of the App Store; if
I can build an app for Apple and Android simultaneously, the App Store
has less of an advantage over the Android Market.

 I think its time for Apple and Adobe to zip up the 'ol pants and get to
 making things work for the people who one program for their devices and
two
 for the customers to enjoy that variety.
 Just sayin..

Apple has no incentive to zip up their pants. This strategy makes it
likely they'll get (and keep) a big pile of money. Adobe would like to
pull their pants up, since Apple didn't even kiss them first, but
there's really nothing they can do short of a lawsuit, and I doubt
that'll be successful in any case. Apple can make up whatever
ridiculous rules they want, as they only have a small slice of the
mobile market. They're not a monopoly by a long shot.

 Heh, then you can pitch a HTML 5 version to them and maybe have a script
 that tells if its a iPhone and switches to the HTML5 preview.

There's only one problem, really. HTML 5 kind of sucks. And it's
certainly no replacement for native apps. Web apps don't have access
to most of the good stuff in the phone - contacts, etc.

 Anyone seen a market study on how many jailbroken iPhones there are? Be
 interesting to see.

No, but interestingly there is an alternative app store called Cydia
for jailbroken phones. But jailbreaking is not an alternative if you
really want to sell your apps. Hobbyists jailbreak their phones.
Typical users don't, and never will.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.
___
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] corporate history timeline examples

2010-02-26 Thread Andrew Murphy
Delvinia (the company I work for) built a timeline for the Canadian Opera
Company that you might find interesting:

http://coc.ca/ExploreAndLearn/NewToOpera/OnlineLearningCentre/HistoricalTime
line.aspx


--
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com



 

 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com 
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf 
 Of Mendelsohn, Michael
 Sent: Friday, February 26, 2010 7:49 AM
 To: Flash Coders List
 Subject: RE: [Flashcoders] corporate history timeline examples
 
 Yes, I saw that one Tom.  It is very nicely designed and I 
 can see how it was successful, but behavior-wise, it does 
 feel a bit dated now.  
 
 Thanks!
 - MM
 
  one that i remember from um years and years ago is the motown one. 
  probably
 not all that amazing now but was probably one of the first 
 and did it well.
 google should dig it up for 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] Distributable Player Solution (aka: Mobile Packager) (yet again)

2010-02-16 Thread Andrew Murphy
Hi.

Just wanted to post a follow-up on my previous posts regarding Adobe
dropping the beta version of the Distributable Player Solution (aka: Mobile
Packages).


Today I read an article that Adobe will be bringing AIR to mobile devices
along with the v10.1 Flash plugin.

http://blog.everythingflex.com/2010/02/15/adobe-air-on-mobile-heres-the-most
-important-sentence/?utm_source=feedburnerutm_medium=feedutm_campaign=Feed
:+Everythingflex+(EverythingFlex)utm_content=Google+Reader

With AIR going mobile, it certainly makes sense to me now that the Mobile
Packager probably wouldn't be a sustainable project.

Still...  AIR Mobile!  Woo! :)



(ps:  Sorry for posting something more Flex related to the Flash Coders
list.)
 

--
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com http://www.delvinia.com/ 

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


RE: [Flashcoders] Distributable Player Solution (aka: MobilePackager)(yet again)

2010-02-16 Thread Andrew Murphy
Ah, I hadn't checked out the link yet.  I'm looking at the video now.  Thank
you. :)

--
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com



 

 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com 
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf 
 Of Gregory Boudreaux
 Sent: Tuesday, February 16, 2010 3:41 PM
 To: Flash Coders List
 Subject: RE: [Flashcoders] Distributable Player Solution 
 (aka: MobilePackager)(yet again)
 
 Check out that link I just posted.  Wired Magazine is all 
 over this already.
 
 gregb
 
 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf 
 Of Andrew Murphy
 Sent: Tuesday, February 16, 2010 2:35 PM
 To: 'Flash Coders List'
 Subject: [Flashcoders] Distributable Player Solution (aka: 
 Mobile Packager)(yet again)
 
 Hi.
 
 Just wanted to post a follow-up on my previous posts 
 regarding Adobe dropping the beta version of the 
 Distributable Player Solution (aka:
 Mobile
 Packages).
 
 
 Today I read an article that Adobe will be bringing AIR to 
 mobile devices along with the v10.1 Flash plugin.
 
 http://blog.everythingflex.com/2010/02/15/adobe-air-on-mobile-
 heres-the-
 most
 -important-sentence/?utm_source=feedburnerutm_medium=feedutm
_campaign=
 Feed
 :+Everythingflex+(EverythingFlex)utm_content=Google+Reader
 
 With AIR going mobile, it certainly makes sense to me now 
 that the Mobile Packager probably wouldn't be a sustainable project.
 
 Still...  AIR Mobile!  Woo! :)
 
 
 
 (ps:  Sorry for posting something more Flex related to the 
 Flash Coders
 list.)
  
 
 --
 Andrew Murphy
 Interactive Media Developer
 amur...@delvinia.com
 
 Delvinia
 370 King Street West, 5th Floor, Box 4
 Toronto Canada M5V 1J9
 P (416) 364-1455 ext. 232
 F (416) 364-9830
 W www.delvinia.com http://www.delvinia.com/ 
 
 ___
 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


RE: [Flashcoders] and now..CLIENT now hates Flash

2010-02-04 Thread Andrew Murphy
I recently coded an AIR app for our reception area touch screen which demos
one of Delvinia's other productions by loading it into an HTML component,
that website includes a SWF embedded on the page and it runs just fine in
the HTML component in AIR.

Building a touch screen keyboard in AIR that communicates with that SWF was
a bit of a pain, but the SWF itself just loads and runs exactly like it
would in any other browser.


--
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com



 

 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com 
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf 
 Of Merrill, Jason
 Sent: Wednesday, February 03, 2010 4:58 PM
 To: Flash Coders List
 Subject: RE: [Flashcoders] and now..CLIENT now hates Flash
 
  Forgive me if I am unaware of what air actually is, but doesn't it 
 still have to be installed to work with a browser?
 
 I was mostly kidding, but Adobe AIR does have a web browser 
 control so you can make an app that has web page inside it.  
 There are limitations to it of course, like I don't think it 
 supports Flash which is ironic.
 
 
 Jason Merrill 
 
 Bank of  America  Global Learning
 Learning  Performance Soluions
 
 Join the Bank of America Flash Platform Community  and visit 
 our Instructional Technology Design Blog
 (note: these are for Bank of America employees only)
 
 
 
 
 
 
 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf 
 Of Karl DeSaulniers
 Sent: Wednesday, February 03, 2010 4:51 PM
 To: Flash Coders List
 Subject: Re: [Flashcoders] and now..CLIENT now hates Flash
 
 Well yeah, but I mean an app like Safari or FireFox or IE, 
 but it has flash and all its capabilities already in it.
 No need to install flash, because its a flash browser.
 
 Forgive me if I am unaware of what air actually is, but 
 doesn't it still have to be installed to work with a browser?
 
 Karl
 
 
 On Feb 3, 2010, at 3:21 PM, Merrill, Jason wrote:
 
  I say its time for a Flash browser.
 
  I thought that was called AIR. :)
 
 
  Jason Merrill
 
  Bank of  America  Global Learning
  Learning  Performance Soluions
 
  Join the Bank of America Flash Platform Community  and visit our 
  Instructional Technology Design Blog
  (note: these are for Bank of America employees only)
 
 
 
 
 
 
  -Original Message-
  From: flashcoders-boun...@chattyfig.figleaf.com
  [mailto:flashcoders-boun...@chattyfig.figleaf.com] On 
 Behalf Of Karl 
  DeSaulniers
  Sent: Wednesday, February 03, 2010 4:03 PM
  To: Flash Coders List
  Subject: Re: [Flashcoders] and now..CLIENT now hates Flash
 
  Hello,
  I usually sit back and let the experts chum these out, but 
 I have to 
  say one thing..
 
  I say its time for a Flash browser.
  No more installing plugins,
  no more yellow line around your swf,
  and no more relying on another browser to run flash.
 
  Just create a flash based browser and you take flash to 
 another level 
  and another market.
  All you have to worry about is creating it to run on multiple 
  platforms.
  You can create your own security on the browser to coincide with 
  iPods, iPads, iPlops whatever..
 
  like combining air + flashplayer as a OS app
 
  Once users/clients figure out that they can have their cake 
 and eat it 
  too, you'll have them coming by the hordes and there wont 
 be anything 
  anyone can do.
  Oh, well, except catch up.. :)
 
  +1 Flash for ever!
 
  Karl DeSaulniers
  Design Drumm
  http://designdrumm.com
 
  ___
  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
 
 Karl DeSaulniers
 Design Drumm
 http://designdrumm.com
 
 ___
 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] Flash Coders Archives..?

2010-02-04 Thread Andrew Murphy
Hi. :)

Is there an archive of the recent posts to Flash Coders?  I've checked on
the Figleaf page for the list
(http://chattyfig.figleaf.com/mailman/listinfo/flashcoders) and it leads to
an archive site that only has archives from 1998 to 2007.

Thank you.


--
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com http://www.delvinia.com/ 



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


RE: [Flashcoders] Flash Coders Archives..?

2010-02-04 Thread Andrew Murphy
Thank you. :)

--
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com



 

 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com 
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Muzak
 Sent: Thursday, February 04, 2010 8:51 AM
 To: Flash Coders List
 Subject: Re: [Flashcoders] Flash Coders Archives..?
 
 http://www.mail-archive.com/flashcoders@chattyfig.figleaf.com/
 
 - Original Message -
 From: Andrew Murphy amur...@delvinia.com
 To: 'Flash Coders List' flashcoders@chattyfig.figleaf.com
 Sent: Thursday, February 04, 2010 2:25 PM
 Subject: [Flashcoders] Flash Coders Archives..?
 
 
  Hi. :)
  
  Is there an archive of the recent posts to Flash Coders?  
 I've checked on
  the Figleaf page for the list
  (http://chattyfig.figleaf.com/mailman/listinfo/flashcoders) 
 and it leads to
  an archive site that only has archives from 1998 to 2007.
  
  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] and now..CLIENT now hates Flash

2010-02-04 Thread Andrew Murphy
Yes, you do indeed.

I'm looking forward to AIR 2.0 and the v10.1 plugin which will support
multi-touch and gestures.


--
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com



 

 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com 
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf 
 Of Gustavo Duenas
 Sent: Thursday, February 04, 2010 9:12 AM
 To: Flash Coders List
 Subject: Re: [Flashcoders] and now..CLIENT now hates Flash
 
 Correct me if I'm wrong but for a touch screen flash based 
 application you will need a monitor with touch screen hardware right?
 
 
 gus
 
 
 On Feb 4, 2010, at 8:21 AM, Karl DeSaulniers wrote:
 
  Good to know. I guess I will have to try and build what I 
 am thinking 
  of. lol I'll make it my first Air project. :) Thanks 
 everyone for the 
  input,
 
  Karl
 
 
  On Feb 4, 2010, at 6:56 AM, Andrew Murphy wrote:
 
  I recently coded an AIR app for our reception area touch 
 screen which 
  demos one of Delvinia's other productions by loading it 
 into an HTML 
  component, that website includes a SWF embedded on the page and it 
  runs just fine in the HTML component in AIR.
 
  Building a touch screen keyboard in AIR that communicates 
 with that 
  SWF was a bit of a pain, but the SWF itself just loads and runs 
  exactly like it would in any other browser.
 
 
  --
  Andrew Murphy
  Interactive Media Developer
  amur...@delvinia.com
 
  Delvinia
  370 King Street West, 5th Floor, Box 4 Toronto Canada M5V 
 1J9 P (416) 
  364-1455 ext. 232 F (416) 364-9830 W www.delvinia.com
 
 
 
 
 
  -Original Message-
  From: flashcoders-boun...@chattyfig.figleaf.com
  [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of 
  Merrill, Jason
  Sent: Wednesday, February 03, 2010 4:58 PM
  To: Flash Coders List
  Subject: RE: [Flashcoders] and now..CLIENT now hates Flash
 
  Forgive me if I am unaware of what air actually is, but 
 doesn't it 
  still have to be installed to work with a browser?
 
  I was mostly kidding, but Adobe AIR does have a web 
 browser control 
  so you can make an app that has web page inside it.
  There are limitations to it of course, like I don't think it 
  supports Flash which is ironic.
 
 
  Jason Merrill
 
  Bank of  America  Global Learning
  Learning  Performance Soluions
 
  Join the Bank of America Flash Platform Community  and visit our 
  Instructional Technology Design Blog
  (note: these are for Bank of America employees only)
 
 
 
 
 
 
  -Original Message-
  From: flashcoders-boun...@chattyfig.figleaf.com
  [mailto:flashcoders-boun...@chattyfig.figleaf.com] On 
 Behalf Of Karl 
  DeSaulniers
  Sent: Wednesday, February 03, 2010 4:51 PM
  To: Flash Coders List
  Subject: Re: [Flashcoders] and now..CLIENT now hates Flash
 
  Well yeah, but I mean an app like Safari or FireFox or IE, but it 
  has flash and all its capabilities already in it.
  No need to install flash, because its a flash browser.
 
  Forgive me if I am unaware of what air actually is, but 
 doesn't it 
  still have to be installed to work with a browser?
 
  Karl
 
 
  On Feb 3, 2010, at 3:21 PM, Merrill, Jason wrote:
 
  I say its time for a Flash browser.
 
  I thought that was called AIR. :)
 
 
  Jason Merrill
 
  Bank of  America  Global Learning
  Learning  Performance Soluions
 
  Join the Bank of America Flash Platform Community  and visit our 
  Instructional Technology Design Blog
  (note: these are for Bank of America employees only)
 
 
 
 
 
 
  -Original Message-
  From: flashcoders-boun...@chattyfig.figleaf.com
  [mailto:flashcoders-boun...@chattyfig.figleaf.com] On
  Behalf Of Karl
  DeSaulniers
  Sent: Wednesday, February 03, 2010 4:03 PM
  To: Flash Coders List
  Subject: Re: [Flashcoders] and now..CLIENT now hates Flash
 
  Hello,
  I usually sit back and let the experts chum these out, but
  I have to
  say one thing..
 
  I say its time for a Flash browser.
  No more installing plugins,
  no more yellow line around your swf, and no more relying 
 on another 
  browser to run flash.
 
  Just create a flash based browser and you take flash to
  another level
  and another market.
  All you have to worry about is creating it to run on multiple 
  platforms.
  You can create your own security on the browser to coincide with 
  iPods, iPads, iPlops whatever..
 
  like combining air + flashplayer as a OS app
 
  Once users/clients figure out that they can have their cake
  and eat it
  too, you'll have them coming by the hordes and there wont
  be anything
  anyone can do.
  Oh, well, except catch up.. :)
 
  +1 Flash for ever!
 
  Karl DeSaulniers
  Design Drumm
  http://designdrumm.com
 
  ___
  Flashcoders mailing list
  Flashcoders

RE: [Flashcoders] and now..CLIENT now hates Flash

2010-02-03 Thread Andrew Murphy
It may be helpful to discuss with clients something that we should always be
doing when developing Flash web apps anyway; alternative content.  And I
mean giving the non-Flash user something more than just a link to download
the Flash plugin.

To respond to client concerns and provide a great user experience I think
we'll be devoting more time and budget to building a non-Flash alternative,
using whatever technology is appropriate, that provides a similar user
experience to what we build in the Flash.  Which of course will raise the
question, Why create a Flash version in the first place?  I think the
answer to that will continue to be the reasons we've been using it all
along:

- gorgeous timeline based and programatic animation
- video  audio, these won't be going away just because you can do it
another way.. and when you can integrate video  audio with Flash's other
capabilities, there's nothing else that can compete right now
- a rich API that provides powerful integration with the web and desktop,
which also makes it adaptable to whatever need the client wakes up with
tomorrow
- you can create a seamless exerience regardless of your target software and
hardware platform (except for a few *ahem* exceptions).
- a massive user share that I expect will continue to grow when v10.1 drops
- a similarly massive developer base, including many open-source projects
providing even more depth to the API
- integration with Adobe's other products, and I don't believe that any of
those will be dropping out of the market any time soon.


In short, I think that developing richer alternate content (black  white)
could be that little bit of shugar that helps a fearful client swallow the
big Flash pill (kodachrome). :)



(ps:  Yes, I know I spell 'shugar' incorrectly.)


--
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com



 

 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com 
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of artur
 Sent: Wednesday, February 03, 2010 11:55 AM
 To: flashcoders
 Subject: [Flashcoders] and now..CLIENT now hates Flash
 
 from my client ( an established design agency in NYC ):
 
 artur,
 
 I've been doing a lot of research and polling of colleagues.
 
 *Here's my takeaway:*
 
 - no one knows what's going on
 - flash developers I've spoken to all are saying it's no big deal,
 proceed with flash
 - all designers are making an abrupt shift away from 
 flash, steering
 their clients as a result
 - clients are questioning flash even without prompting
 - media has called for the death of it
 
 I think the answer is that Flash will need to change 
 ASAP, or else I
 can't recommend it without looking like an ignoramus to clients.
 That sucks, because I love Flash, but it's not where the 
 momentum is
 moving.
 
 People still look at it as non SEO friendly.
 
 
 they now want to do all future sites in html/css/jquery - 
 powered by WPress or Joomla/Drupal.
 
 any articles , facts, that i can point them to that may 
 change their minds?
 
 thanks
 
 artur
 ___
 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] Any suggestion for texting

2010-01-28 Thread Andrew Murphy
Hi. :)

You might want to look at using a PHP script, and then just have your Flash
call the script.  A quick google for php send sms message will turn up a
slew of examples you can have a look at, to see if they might be suitable.


--
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com



 

 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com 
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf 
 Of John R. Sweeney Jr
 Sent: Thursday, January 28, 2010 1:38 PM
 To: Flash Coders List
 Subject: [Flashcoders] Any suggestion for texting
 
 Howdy all,
 
 My client wants the kiosk I'm building (connected to the NET) 
 to be able to send a simple text message to a phone. I'll 
 know their mobile number and the predetermined message, but 
 not sure how to then send it to a mobile phone.
 
 Any suggestions or direction to point me in? In my searches 
 so far, I've seen a lot of Flash Lite sending SMS messages 
 links, but I'm not phone to screen, I'm kiosk to a mobile phone.
 
 Thanks in advance for any help,
 John
 
 P.S. For now, its more web searchingŠ ;)
 
 
 John R. Sweeney Jr.
 Interactive Multimedia Developer
 
 
 OnDemand Interactive Inc
 945 Washington Blvd.
 Hoffman Estates, IL 60169
 Office/Fax: 847.310.5959
 Cellular: 847.651.4469
 www.ondemandinteractive.com
 
 
 
 ___
 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] Distributable Player Solution (aka: Mobile Packager)

2010-01-21 Thread Andrew Murphy
Hi. :)

Sorry for harping on about this when it seems that no one else is
interested, but just in case:  There are still tutorial videos about using
the the discontinued Distributable Player Solution (aka: Mobile Packager) up
on YouTube.  If you downloaded the beta version before it was closed, and
want to use it, you might want to get copies of the tutorials before they
also dissapear.

http://www.youtube.com/view_play_list?p=20BE62FD7F1E1A12


I've a personal project that I'll continue to use it on.. at least until
another way of getting my Flash app packaged as a proper app for my Windows
Mobile device is created.


--
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com http://www.delvinia.com/ 



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


[Flashcoders] Adobe cancelled the Distributable Player Solution..?

2010-01-20 Thread Andrew Murphy
Hi.

I noticed on Adobe Labs that the Distributable Player Solution beta has
ended, and they will not be taking it into production:
http://labs.adobe.com/technologies/distributableplayer/

Does anyone know the reason behind this?

I was excited when I first heard about it.  Being able to develop in Flash
to create applications that would install as an application and run directly
on my mobile device, rather than in the Flash player, turned me on about as
much as when I first learned about Apollo.

Why would they drop such a great idea? :(


--
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com http://www.delvinia.com/ 



 file://C:\Documents and Settings\Andrew Murphy\Application
Data\Microsoft\Stationery\..\..\..\email_sig_image.bmp 


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


RE: [Flashcoders] What is your policy on loading files?

2010-01-15 Thread Andrew Murphy
Another factor to consider is the client's willingness to pay for bandwidth.
(Assuming you have a client.)  If they need to keep costs down then you
probably should avoid preloading content that the user would need to drill
down to, since the user may never see it.


--
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com



 

 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com 
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf 
 Of allandt bik-elliott (thefieldcomic.com)
 Sent: Friday, January 15, 2010 5:35 AM
 To: Flash Coders List
 Subject: [Flashcoders] What is your policy on loading files?
 
 Hi guys
 
 I'm re-looking at my microsite building engine and rewriting 
 it for MVC but something is bothering me that i was hoping to 
 get a consensus on.
 
 How do you load your (micro)sites? Do you:
 1 load the entire site at the start by loading a single xml 
 file and trawling it for assets
 2 load the entire site at the start by loading a single xml 
 file plus loading a library file with all of your assets in
 3 load each page in using a separate xml file as it's needed
 4 load the homepage and start preloading the pages while the 
 user is on the homepage to cut down wait time for the pages
 5 load each view as it's used by the user? So if a link in a 
 page was clicked that created a popup in flash, flash would 
 load the assets for the popup when the link was clicked
 6 something else?
 
 if you have the time, i'd really appreciate your input
 
 thanks
 a
 ___
 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] Dynamically set Sound's length..?

2009-12-17 Thread Andrew Murphy
Thank you. :)


--

Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

 

 Email_logo

370 King Street West, 5th Floor, Box 4 

Toronto Canada M5V 1J9
P (416) 364-1455 ext. 233
F (416) 364-9830  
W www.delvinia.com

 

 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com 
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf 
 Of Juan Pablo Califano
 Sent: Wednesday, December 16, 2009 6:39 PM
 To: Flash Coders List
 Subject: Re: [Flashcoders] Dynamically set Sound's length..?
 
 Just a minor correction. It's 44100 samples per second.
 
 Cheers
 Juan Pablo Califano
 
 2009/12/16 Henrik Andersson he...@henke37.cjb.net
 
  It is called the samplerate, flash uses 44200 sample pairs 
 per second.
 
  ___
  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] Dynamically set Sound's length..?

2009-12-16 Thread Andrew Murphy
Hello.
 
I'm experimenting with playing generated sounds in Flash, and I have a
question:  What is the duration, in milliseconds, of a sound's playback when
I write a pair of Floats to the data property of its SampleDataEvent
event?
 
For example, here's some sample code from the Adobe LangRef, which plays a
continuous tone:
 
 
 
import flash.media.Sound;
import flash.events.SampleDataEvent;
 
var mySound:Sound = new Sound();
function sineWaveGenerator(event:SampleDataEvent):void {
for ( var c:int=0; c8192; c++ ) {
 
event.data.writeFloat(Math.sin((Number(c+event.position)/Math.PI/2))*0.25);
 
event.data.writeFloat(Math.sin((Number(c+event.position)/Math.PI/2))*0.25);
}
}
mySound.addEventListener(SampleDataEvent.SAMPLE_DATA,sineWaveGenerator);
mySound.play();
 
 
 
Exactly how long will each of the 8,192 Float pairs, added every time the
SampleDataEvent fires, play for?  I've tried checking mySound's length
property, and it always returns as 0, but I'm pretty sure it only gets set
from the ID3 data when loading an MP3 file.
 
Thank you. :)
 
 

--

Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

 
370 King Street West, 5th Floor, Box 4 

Toronto Canada M5V 1J9
P (416) 364-1455 ext. 233
F (416) 364-9830  
W www.delvinia.com


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


RE: [Flashcoders] Dynamically set Sound's length..?

2009-12-16 Thread Andrew Murphy
Thank you. :)


--

Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

 

 Email_logo

370 King Street West, 5th Floor, Box 4 

Toronto Canada M5V 1J9
P (416) 364-1455 ext. 233
F (416) 364-9830  
W www.delvinia.com

 

 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com 
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf 
 Of Henrik Andersson
 Sent: Wednesday, December 16, 2009 2:55 PM
 To: Flash Coders List
 Subject: Re: [Flashcoders] Dynamically set Sound's length..?
 
 It is called the samplerate, flash uses 44200 sample pairs per second.
 ___
 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] Flashplayer install on IE8 / Vista

2009-10-22 Thread Andrew Murphy
This was a problem for me as well, in Firefox on WinXP.

I was on Facebook and when I tried to play a TopGear video it asked me to
update my player.. I had been using a debug v10 player, but the previous
release.  I was taken to the Adobe site, clicked on an install it now
button and suddenly I was installing the Adobe download manager and, without
even asking me or giving me the ability to cancel, it installed McAfee
antivirus scanner as well.

The one thing I wanted, the updated plugin, never installed.  Probably
because I, in irritation, killed the download manager and then wasted my
time uninstalling it and McAfee.

I ended up downloading a new version of the debug plugin and installing from
my hard drive.

Not exactly a great end-user experience.



Andrew Murphy
Interactive Media Specialist
amur...@delvinia.com

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.

 

 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com 
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf 
 Of Glen Pike
 Sent: Thursday, October 22, 2009 4:27 AM
 To: Flash Coders List
 Subject: [Flashcoders] Flashplayer install on IE8 / Vista
 
 Hi,
 
 Has anyone else had the unfortunate experience of 
 installing Flashplayer for IE8 on Vista??
 
 Seems like instead of a single Install ActiveX Control, 
 I now have to suffer Adobe's bloated Download Manager 
 craplication to install my Flashplayer (which triggers 
 several of Vista's paranoid are you really sure... dialogs).
 
 Grrr, c'mon Adobe, single click install in my browser please...
 
 Glen
 ___
 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] Runtime bitmap caching causing a MovieClip to notrender

2009-09-17 Thread Andrew Murphy
Hi.

That sounds like it might be what happened.  The timeline with the gradient 
MovieClip on it is only three frames long, it animates the gradient by setting 
it's properties programatically rather than a timeline animation, and it only 
changes frames using the next() method, but I guess it still counts as an 
animated timeline.

Thank you. :)



Andrew Murphy
Interactive Media Specialist
amur...@delvinia.com

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.

 

 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com 
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf 
 Of Karl DeSaulniers
 Sent: Wednesday, September 16, 2009 1:38 PM
 To: Flash Coders List
 Subject: Re: [Flashcoders] Runtime bitmap caching causing a 
 MovieClip to notrender
 
 Runtime bitmap caching is not reccomended for animation. It's 
 trying to cache every step in your animation sequence. You 
 probably experienced a frame or two not fully loading before 
 it was trying to load the next frames in the sequence. Thus 
 it dissapeared.
 
 That's more of an educated guess though, so not 100% on it.
 
 Karl
 
 Sent from losPhone
 
 On Sep 16, 2009, at 12:12 PM, Andrew Murphy amur...@delvinia.com
 wrote:
 
  Hello. :)
 
  I've run into a strange, transient rendering error:
 
  The Flash movie in question contains a MovieClip which has 
 a gradient 
  in it, going from fully transparent to fully opaque black.  At run 
  time it gets moved and rotated over top of an image file 
 which is also 
  loaded at run time, so that there is a black faded edge to 
 the image 
  where it goes under the gradient.
 
  This worked fine, except that every dozen or so times that the page 
  loaded the gradient MovieClip would fail to appear.  I've 
 done tests 
  to trace out it's x, y, rotation and visible properties and 
 there was 
  no difference between page loads when the gradient was visible and 
  page loads where it failed to appear.
 
  I had thought it was a problem with a vector transparent gradient 
  rendering in a Flash movie which has wmode set to transparent, so I 
  replaced the vector gradient with a PNG file, but during additional 
  testing it broke in the same way.
 
  I wasn't quite sure what to try next so, experimenting, I tried 
  turning off Use runtime bitmap caching on that MovieClip, 
 and that 
  appears to have fixed it.
 
  Has anyone else run into this problem?
 
 
  
  Andrew Murphy
  Interactive Media Specialist
  mailto:amur...@delvinia.com amur...@delvinia.com
 
  Delvinia
  214 King Street West, Suite 214
  Toronto Canada M5H 3S6
 
  P 416.364.1455 ext. 232  F 416.364.9830  W 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 r 
  eç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.
 
 
  ___
  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] Runtime bitmap caching causing a MovieClip to not render

2009-09-16 Thread Andrew Murphy
Hello. :)
 
I've run into a strange, transient rendering error:
 
The Flash movie in question contains a MovieClip which has a gradient in it,
going from fully transparent to fully opaque black.  At run time it gets
moved and rotated over top of an image file which is also loaded at run
time, so that there is a black faded edge to the image where it goes under
the gradient.
 
This worked fine, except that every dozen or so times that the page loaded
the gradient MovieClip would fail to appear.  I've done tests to trace out
it's x, y, rotation and visible properties and there was no difference
between page loads when the gradient was visible and page loads where it
failed to appear.
 
I had thought it was a problem with a vector transparent gradient rendering
in a Flash movie which has wmode set to transparent, so I replaced the
vector gradient with a PNG file, but during additional testing it broke in
the same way.
 
I wasn't quite sure what to try next so, experimenting, I tried turning off
Use runtime bitmap caching on that MovieClip, and that appears to have
fixed it.
 
Has anyone else run into this problem?
 


Andrew Murphy
Interactive Media Specialist
 mailto:amur...@delvinia.com amur...@delvinia.com

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.

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


RE: [Flashcoders] Error when trying to embed a font

2009-09-03 Thread Andrew Murphy
Hi Kttu. :)

Actually, that video is what got me started with trying to use Flash CS4 to
embed a selection of characters, rather than the whole thing.  Unfortunately
it doesn't contain any answers to the problem I am having.

Embedding the whole font, by making it into a Library Symbol, seems to be
the only solution.


Thank you anyway. :)



Andrew Murphy
Interactive Media Specialist
amur...@delvinia.com

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.

 

 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com 
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Ktu
 Sent: Thursday, September 03, 2009 1:04 PM
 To: Flash Coders List
 Subject: Re: [Flashcoders] Error when trying to embed a font
 
 The only thing I can suggest is looking at Lee Brimelow's 
 tutorial on using [Embed] for fonts. Maybe going through that 
 tutorial will enlighten you.
 
 http://gotoandlearn.com/play?id=102
 
 Kttu
 
 On Mon, Aug 31, 2009 at 3:10 PM, Andrew Murphy 
 amur...@delvinia.com wrote:
 
  Hi again, Ian. :)
 
  I have tried a few different variations on the font name, 
 but I hadn't 
  tried using Font.enumerateFonts() to list the system's 
 names for the 
  fonts.
   Thank
  you for that suggestion. :)  I gave it a try, listing out 
 the fontName 
  and fontStyle props and ended up with this:
 
  name: Akzidenz Grotesk BE   style: regular
  name: Akzidenz Grotesk BE Bold   style: regular
  name: Akzidenz Grotesk BE BoldEx   style: regular
  name: Akzidenz Grotesk BE Ex   style: regular
  name: Akzidenz Grotesk BE Light   style: regular
  name: Akzidenz Grotesk BE LightEx   style: regular
  name: Akzidenz Grotesk BE LightOsF   style: regular
  name: Akzidenz Grotesk BE LightSC   style: regular
  name: Akzidenz Grotesk BE MdEx   style: regular
  name: Akzidenz Grotesk BE Super   style: regular
 
 
  I'd already tried Akzidenz Grotesk BE but just in case I gave it 
  another try, like this:
 
  [Embed(
   systemFont=Akzidenz Grotesk BE,
   fontName=AkzidenzOTF,
   mimeType=application/x-font,
   unicodeRange=U+0021-U+00FF
  )]
  var akzidenz_otf:Class;
  Font.registerFont(akzidenz_otf);
 
 
  And it throws the exact same error.
 
 
 
  However I have managed to get it working, sort of, by just creating 
  Font Symbols in my FLA's Library.  It means embedding the 
 whole dern 
  font, rather than a smaller subset of characters, but at least it 
  works.
 
  I guess this is solved.  More-or-less.
 
 
  Thank you for your help. ^_^
 
 
 
 
  
  Andrew Murphy
  Interactive Media Specialist
  amur...@delvinia.com
 
  Delvinia
  214 King Street West, Suite 214
  Toronto Canada M5H 3S6
 
  P 416.364.1455 ext. 232  F 416.364.9830  W 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.
 
 
 
   -Original Message-
   From: flashcoders-boun...@chattyfig.figleaf.com
   [mailto:flashcoders-boun...@chattyfig.figleaf.com] On 
 Behalf Of Ian 
   Thomas
   Sent: Monday, August 31, 2009 1:31 PM
   To: Flash Coders List
   Subject: Re: [Flashcoders] Error when trying to embed a font
  
   Sorry! My poor reading!
  
   The normal reason for such errors is that the name of the 
 font (when 
   using systemFont) does not exactly match the name your 
 system thinks 
   it should be. This can be complicated by font variants - you say 
   you've already tried combinations of fontStyle, 
 fontWeight etc. Have 
   you tried those variants within the name? Could it be 
 something like 
   the name should be Berthold Akzidenz Grotesk Bold and 
 you should 
   have fontWeight set to bold?
  
   Have you tried Font.enumerateFonts() to list what fonts 
 your Flash 
   Player thinks is available on your system, and what their 
 names are?
  
   Ian
  
   On Mon

RE: [Flashcoders] Error when trying to embed a font

2009-09-03 Thread Andrew Murphy
Hello Matt. :)

Yes, it's a Type1 font.  .pfm

So Flash only allows the embedding of True Type (.ttf) fonts then?  Okay.
I'll keep that mind in the future, though the choice of what font to use is
up to the Graphic Designers.

Thank you. :)



Andrew Murphy
Interactive Media Specialist
amur...@delvinia.com

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.

 

 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com 
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf 
 Of Matt Gitchell
 Sent: Thursday, September 03, 2009 1:20 PM
 To: Flash Coders List
 Subject: Re: [Flashcoders] Error when trying to embed a font
 
 You said you were looking for a .pfm file down below, is it a 
 PostScript font? If so, doing a font library symbol is your 
 only recourse.
 --Matt
 
 On Thu, Sep 3, 2009 at 10:04 AM, Ktu 
 ktu_fl...@cataclysmicrewind.comwrote:
 
  The only thing I can suggest is looking at Lee Brimelow's 
 tutorial on 
  using [Embed] for fonts. Maybe going through that tutorial 
 will enlighten you.
 
  http://gotoandlearn.com/play?id=102
 
  Kttu
 
  On Mon, Aug 31, 2009 at 3:10 PM, Andrew Murphy 
 amur...@delvinia.com
  wrote:
 
   Hi again, Ian. :)
  
   I have tried a few different variations on the font name, but I 
   hadn't tried using Font.enumerateFonts() to list the 
 system's names 
   for the fonts.
Thank
   you for that suggestion. :)  I gave it a try, listing out the 
   fontName
  and
   fontStyle props and ended up with this:
  
   name: Akzidenz Grotesk BE   style: regular
   name: Akzidenz Grotesk BE Bold   style: regular
   name: Akzidenz Grotesk BE BoldEx   style: regular
   name: Akzidenz Grotesk BE Ex   style: regular
   name: Akzidenz Grotesk BE Light   style: regular
   name: Akzidenz Grotesk BE LightEx   style: regular
   name: Akzidenz Grotesk BE LightOsF   style: regular
   name: Akzidenz Grotesk BE LightSC   style: regular
   name: Akzidenz Grotesk BE MdEx   style: regular
   name: Akzidenz Grotesk BE Super   style: regular
  
  
   I'd already tried Akzidenz Grotesk BE but just in case I gave it
  another
   try, like this:
  
   [Embed(
systemFont=Akzidenz Grotesk BE,
fontName=AkzidenzOTF,
mimeType=application/x-font,
unicodeRange=U+0021-U+00FF
   )]
   var akzidenz_otf:Class;
   Font.registerFont(akzidenz_otf);
  
  
   And it throws the exact same error.
  
  
  
   However I have managed to get it working, sort of, by 
 just creating 
   Font Symbols in my FLA's Library.  It means embedding the 
 whole dern 
   font, rather than a smaller subset of characters, but at least it 
   works.
  
   I guess this is solved.  More-or-less.
  
  
   Thank you for your help. ^_^
  
  
  
  
   
   Andrew Murphy
   Interactive Media Specialist
   amur...@delvinia.com
  
   Delvinia
   214 King Street West, Suite 214
   Toronto Canada M5H 3S6
  
   P 416.364.1455 ext. 232  F 416.364.9830  W 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.
  
  
  
-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of 
Ian Thomas
Sent: Monday, August 31, 2009 1:31 PM
To: Flash Coders List
Subject: Re: [Flashcoders] Error when trying to embed a font
   
Sorry! My poor reading!
   
The normal reason for such errors is that the name of the font 
(when using systemFont) does not exactly match the name your 
system thinks it should be. This can be complicated by font 
variants - you say you've already tried combinations of 
 fontStyle, 
fontWeight etc. Have you tried those variants within the name? 
Could it be something like the name should

RE: [Flashcoders] Error when trying to embed a font

2009-09-03 Thread Andrew Murphy
I'll give that a try.  Thanks! :)


Andrew Murphy
Interactive Media Specialist
amur...@delvinia.com

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.

 

 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com 
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf 
 Of Matt Gitchell
 Sent: Thursday, September 03, 2009 1:25 PM
 To: Flash Coders List
 Subject: Re: [Flashcoders] Error when trying to embed a font
 
 Sheesh. I totally forgot, I've done this before:
 Create a TextField in your FLA, embed the selected character 
 set into that textfield,  stick that in a symbol, use [Embed] 
 to embed that symbol ( [Embed(source=blah.swf, 
 symbol=textMC)]), then you're off to the fonty races, if 
 memory serves. I've gotten this to work in the past, but 
 honestly I forget the particulars.
 
 --Matt
 
 On Thu, Sep 3, 2009 at 10:04 AM, Ktu 
 ktu_fl...@cataclysmicrewind.comwrote:
 
  The only thing I can suggest is looking at Lee Brimelow's 
 tutorial on 
  using [Embed] for fonts. Maybe going through that tutorial 
 will enlighten you.
 
  http://gotoandlearn.com/play?id=102
 
  Kttu
 
  On Mon, Aug 31, 2009 at 3:10 PM, Andrew Murphy 
 amur...@delvinia.com
  wrote:
 
   Hi again, Ian. :)
  
   I have tried a few different variations on the font name, but I 
   hadn't tried using Font.enumerateFonts() to list the 
 system's names 
   for the fonts.
Thank
   you for that suggestion. :)  I gave it a try, listing out the 
   fontName
  and
   fontStyle props and ended up with this:
  
   name: Akzidenz Grotesk BE   style: regular
   name: Akzidenz Grotesk BE Bold   style: regular
   name: Akzidenz Grotesk BE BoldEx   style: regular
   name: Akzidenz Grotesk BE Ex   style: regular
   name: Akzidenz Grotesk BE Light   style: regular
   name: Akzidenz Grotesk BE LightEx   style: regular
   name: Akzidenz Grotesk BE LightOsF   style: regular
   name: Akzidenz Grotesk BE LightSC   style: regular
   name: Akzidenz Grotesk BE MdEx   style: regular
   name: Akzidenz Grotesk BE Super   style: regular
  
  
   I'd already tried Akzidenz Grotesk BE but just in case I gave it
  another
   try, like this:
  
   [Embed(
systemFont=Akzidenz Grotesk BE,
fontName=AkzidenzOTF,
mimeType=application/x-font,
unicodeRange=U+0021-U+00FF
   )]
   var akzidenz_otf:Class;
   Font.registerFont(akzidenz_otf);
  
  
   And it throws the exact same error.
  
  
  
   However I have managed to get it working, sort of, by 
 just creating 
   Font Symbols in my FLA's Library.  It means embedding the 
 whole dern 
   font, rather than a smaller subset of characters, but at least it 
   works.
  
   I guess this is solved.  More-or-less.
  
  
   Thank you for your help. ^_^
  
  
  
  
   
   Andrew Murphy
   Interactive Media Specialist
   amur...@delvinia.com
  
   Delvinia
   214 King Street West, Suite 214
   Toronto Canada M5H 3S6
  
   P 416.364.1455 ext. 232  F 416.364.9830  W 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.
  
  
  
-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of 
Ian Thomas
Sent: Monday, August 31, 2009 1:31 PM
To: Flash Coders List
Subject: Re: [Flashcoders] Error when trying to embed a font
   
Sorry! My poor reading!
   
The normal reason for such errors is that the name of the font 
(when using systemFont) does not exactly match the name your 
system thinks it should be. This can be complicated by font 
variants - you say you've already tried combinations of 
 fontStyle, 
fontWeight etc. Have you tried those variants within the name? 
Could

[Flashcoders] Error when trying to embed a font

2009-08-31 Thread Andrew Murphy
Good morning.  (Well.. it's morning here anyway.)
 
I'm having problems with creating a font .swf file, to use for sharing a
font between some Flash movies.  One of the fonts I want to embed is
Berthold Akzidenz Grotesk Medium.
 
In the font .swf's FLA file I'm trying to embed it like this:
 
 
[Embed(
 systemFont=Berthold Akzidenz Grotesk,
 fontName=AkzidenzMedOTF,
 fontStyle=Medium,
 mimeType=application/x-font,
 unicodeRange=U+0021-U+00FF
)]
var akzidenz_otf:Class;
Font.registerFont(akzidenz_otf);
 
 
And I keep getting the error:  exception during transcoding: Font for alias
'AkzidenzOTF' with plain weight and style was not found by family name
'Berthold Akzidenz Grotesk'
 
I'm working in WindowsXP, Flash CS4 and it's a Type1 font.
 
I've tried various settings for the fontWeight and fontStyle and nothing
seems to affect this error.
 
I've also tried not using systemFont and instead setting the source path
in the Embed to C:/WINDOWS/Fonts/gfm_.pfm, which is this font's source
file on my machine, and it throws the same error.
 
Any ideas on what I'm dong wrong and how to fix it.. if it can be fixed?
 
Thank you. :)
 
 


Andrew Murphy
Interactive Media Specialist
 mailto:amur...@delvinia.com amur...@delvinia.com

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.

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


RE: [Flashcoders] Error when trying to embed a font

2009-08-31 Thread Andrew Murphy
Hi, Ian. :)

Thanks, but I tried that already, I mentioned it in my first post.  It
throws the same error.



Andrew Murphy
Interactive Media Specialist
amur...@delvinia.com

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.

 

 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com 
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf 
 Of Ian Thomas
 Sent: Monday, August 31, 2009 12:35 PM
 To: Flash Coders List
 Subject: Re: [Flashcoders] Error when trying to embed a font
 
 You could try directly referencing the TTF or OTF file with 
 the 'source' argument instead of using the 'systemFont' argument:
 
 [Embed(
 source=/Path/To/FontFile.TTF,
 
 HTH,
 Ian
 
 On Mon, Aug 31, 2009 at 1:31 PM, Andrew 
 Murphyamur...@delvinia.com wrote:
  Good morning.  (Well.. it's morning here anyway.)
 
  I'm having problems with creating a font .swf file, to use 
 for sharing 
  a font between some Flash movies.  One of the fonts I want 
 to embed is 
  Berthold Akzidenz Grotesk Medium.
 
  In the font .swf's FLA file I'm trying to embed it like this:
 
 
  [Embed(
   systemFont=Berthold Akzidenz Grotesk,
   fontName=AkzidenzMedOTF,
   fontStyle=Medium,
   mimeType=application/x-font,
   unicodeRange=U+0021-U+00FF
  )]
  var akzidenz_otf:Class;
  Font.registerFont(akzidenz_otf);
 
 
  And I keep getting the error:  exception during 
 transcoding: Font for 
  alias 'AkzidenzOTF' with plain weight and style was not found by 
  family name 'Berthold Akzidenz Grotesk'
 
  I'm working in WindowsXP, Flash CS4 and it's a Type1 font.
 
  I've tried various settings for the fontWeight and fontStyle and 
  nothing seems to affect this error.
 
  I've also tried not using systemFont and instead setting the 
  source path in the Embed to 
 C:/WINDOWS/Fonts/gfm_.pfm, which is 
  this font's source file on my machine, and it throws the same error.
 
  Any ideas on what I'm dong wrong and how to fix it.. if it 
 can be fixed?
 
  Thank you. :)
 
 
 
  
  Andrew Murphy
  Interactive Media Specialist
   mailto:amur...@delvinia.com amur...@delvinia.com
 
  Delvinia
  214 King Street West, Suite 214
  Toronto Canada M5H 3S6
 
  P 416.364.1455 ext. 232  F 416.364.9830  W 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.
 
 
  ___
  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


RE: [Flashcoders] Error when trying to embed a font

2009-08-31 Thread Andrew Murphy
Hi again, Ian. :)

I have tried a few different variations on the font name, but I hadn't tried
using Font.enumerateFonts() to list the system's names for the fonts.  Thank
you for that suggestion. :)  I gave it a try, listing out the fontName and
fontStyle props and ended up with this:

name: Akzidenz Grotesk BE   style: regular
name: Akzidenz Grotesk BE Bold   style: regular
name: Akzidenz Grotesk BE BoldEx   style: regular
name: Akzidenz Grotesk BE Ex   style: regular
name: Akzidenz Grotesk BE Light   style: regular
name: Akzidenz Grotesk BE LightEx   style: regular
name: Akzidenz Grotesk BE LightOsF   style: regular
name: Akzidenz Grotesk BE LightSC   style: regular
name: Akzidenz Grotesk BE MdEx   style: regular
name: Akzidenz Grotesk BE Super   style: regular


I'd already tried Akzidenz Grotesk BE but just in case I gave it another
try, like this:

[Embed(
 systemFont=Akzidenz Grotesk BE,
 fontName=AkzidenzOTF,
 mimeType=application/x-font,
 unicodeRange=U+0021-U+00FF
)]
var akzidenz_otf:Class;
Font.registerFont(akzidenz_otf);


And it throws the exact same error.



However I have managed to get it working, sort of, by just creating Font
Symbols in my FLA's Library.  It means embedding the whole dern font, rather
than a smaller subset of characters, but at least it works.

I guess this is solved.  More-or-less.


Thank you for your help. ^_^





Andrew Murphy
Interactive Media Specialist
amur...@delvinia.com

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.

 

 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com 
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf 
 Of Ian Thomas
 Sent: Monday, August 31, 2009 1:31 PM
 To: Flash Coders List
 Subject: Re: [Flashcoders] Error when trying to embed a font
 
 Sorry! My poor reading!
 
 The normal reason for such errors is that the name of the 
 font (when using systemFont) does not exactly match the name 
 your system thinks it should be. This can be complicated by 
 font variants - you say you've already tried combinations of 
 fontStyle, fontWeight etc. Have you tried those variants 
 within the name? Could it be something like the name should 
 be Berthold Akzidenz Grotesk Bold and you should have 
 fontWeight set to bold?
 
 Have you tried Font.enumerateFonts() to list what fonts your 
 Flash Player thinks is available on your system, and what 
 their names are?
 
 Ian
 
 On Mon, Aug 31, 2009 at 6:01 PM, Andrew 
 Murphyamur...@delvinia.com wrote:
  Hi, Ian. :)
 
  Thanks, but I tried that already, I mentioned it in my 
 first post.  It 
  throws the same error.
 
 
  
  Andrew Murphy
  Interactive Media Specialist
  amur...@delvinia.com
 
  Delvinia
  214 King Street West, Suite 214
  Toronto Canada M5H 3S6
 
  P 416.364.1455 ext. 232  F 416.364.9830  W 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.
 
 
 
  -Original Message-
  From: flashcoders-boun...@chattyfig.figleaf.com
  [mailto:flashcoders-boun...@chattyfig.figleaf.com] On 
 Behalf Of Ian 
  Thomas
  Sent: Monday, August 31, 2009 12:35 PM
  To: Flash Coders List
  Subject: Re: [Flashcoders] Error when trying to embed a font
 
  You could try directly referencing the TTF or OTF file with the 
  'source' argument instead of using the 'systemFont' argument:
 
  [Embed(
  source=/Path/To/FontFile.TTF,
 
  HTH,
      Ian
 
  On Mon, Aug 31, 2009 at 1:31 PM, Andrew 
 Murphyamur...@delvinia.com 
  wrote:
   Good morning.  (Well.. it's morning here anyway.)
  
   I'm having problems with creating a font .swf file, to use
  for sharing
   a font between some Flash movies.  One of the fonts I want
  to embed is
   Berthold Akzidenz Grotesk Medium.
  
   In the font .swf's FLA file I'm trying to embed

[Flashcoders] SecurityPanel events?

2009-06-18 Thread Andrew Murphy
Hello. :)
 
Is there any way to detect when the user has finished using the Settings
Manager to change their security settings?
 
- user right-clicks on the Flash
- selects Settings to open the Settings Manager
- changes their settings
- clicks Close to close the Settings Manager
 
I want to be able to trigger code in my Flash when they click the Close
button in the Settings Manager.. but the SecurityPanel class that you use to
open the Setting Manager panel and the  doesn't appear to throw any events.
I've also tried putting a Mouse event listener in the app's main class and
that doesn't trigger when the Close button is clicked in the Settings
Manager panel.
 
Thank you.
 
 


Andrew Murphy
Interactive Media Specialist
 mailto:amur...@delvinia.com amur...@delvinia.com

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.

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


RE: [Flashcoders] Full screen video in a full screen Flash..?

2009-02-06 Thread Andrew Murphy
Thank you. :)


Andrew Murphy
Interactive Media Specialist
amur...@delvinia.com

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.

 

 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com 
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf 
 Of Meinte van't Kruis
 Sent: Thursday, February 05, 2009 7:26 AM
 To: Flash Coders List
 Subject: Re: [Flashcoders] Full screen video in a full screen Flash..?
 
 if you're using flvplayback, set the property
 
 fullScreenTakeOver
 
 to false
 
 On Mon, Feb 2, 2009 at 3:41 PM, Matt S. mattsp...@gmail.com wrote:
 
  Are you loading the video player into its own holder mc? If you do 
  that, then place that holder on the display list, then set
 
  if (stage.displayState == StageDisplayState.NORMAL) {
 stage.displayState = 
  StageDisplayState.FULL_SCREEN; }
 
  it should go full screen without FS'ing the video.
 
  .m
 
  On Mon, Feb 2, 2009 at 8:23 AM, Andrew Murphy amur...@delvinia.com
  wrote:
   Hello. :)
  
   Is there a way to have a full screen Flash (not a video) 
 which has a
  video
   player in it, without having the video itself jump to full screen?
  
   What I'd like to do is have a Flash piece which goes full screen, 
   then at some points in the user's interaction with it 
 there may be a 
   video player
  in
   this Flash piece.  The user would then have the option to 
 view the 
   video full screen within the already full screen Flash piece.
  
   Currently whenever I load a video player into a full screen 
   non-video
  Flash
   the video jumps to full screen the moment it loads.
  
  
   
   Andrew Murphy
   Interactive Media Specialist
mailto:amur...@delvinia.com amur...@delvinia.com
  
   Delvinia
   214 King Street West, Suite 214
   Toronto Canada M5H 3S6
  
   P 416.364.1455 ext. 232  F 416.364.9830  W 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.
  
  
   ___
   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
 
 
 
 
 --
 M.A. van't Kruis
 http://www.malatze.nl/
 ___
 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] Does Flash fire any event(s) when...

2009-02-04 Thread Andrew Murphy
Hi. :)

I was wondering if a .swf embedded in a web page fires and event(s) when...
 
 
1) ...the user navigates away from the page.
 
2) ...the user closes the browser window.
 
 
I doubt that it does but thought I'd check with the experts here first.
Thank you. :)
 


Andrew Murphy
Interactive Media Specialist
 mailto:amur...@delvinia.com amur...@delvinia.com

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.

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


RE: [Flashcoders] Does Flash fire any event(s) when...

2009-02-04 Thread Andrew Murphy
Hi Eric. :)

Unfortunately Event.DEACTIVATE also fires if a user clicks on a different tab 
in their browser or a different application in their desktop.



Andrew Murphy
Interactive Media Specialist
amur...@delvinia.com

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.

 

 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com 
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf 
 Of Eric E. Dolecki
 Sent: Wednesday, February 04, 2009 8:50 AM
 To: Flash Coders List
 Subject: Re: [Flashcoders] Does Flash fire any event(s) when...
 
 There is
 stage.addEventListener( Event.DEACTIVATE, method ); 
 stage.addEventListener( Event.ACTIVATE, method );
 
 - eric
 
 2009/2/4 Andrew Murphy amur...@delvinia.com
 
  Hi. :)
 
  I was wondering if a .swf embedded in a web page fires and 
 event(s) when...
 
 
  1) ...the user navigates away from the page.
 
  2) ...the user closes the browser window.
 
 
  I doubt that it does but thought I'd check with the experts 
 here first.
  Thank you. :)
 
 
  
  Andrew Murphy
  Interactive Media Specialist
   mailto:amur...@delvinia.com amur...@delvinia.com
 
  Delvinia
  214 King Street West, Suite 214
  Toronto Canada M5H 3S6
 
  P 416.364.1455 ext. 232  F 416.364.9830  W 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.
 
 
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 
 
 
 --
 http://ericd.net
 Interactive design and development
 ___
 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] Full screen video in a full screen Flash..?

2009-02-02 Thread Andrew Murphy
Hello. :)
 
Is there a way to have a full screen Flash (not a video) which has a video
player in it, without having the video itself jump to full screen?
 
What I'd like to do is have a Flash piece which goes full screen, then at
some points in the user's interaction with it there may be a video player in
this Flash piece.  The user would then have the option to view the video
full screen within the already full screen Flash piece.
 
Currently whenever I load a video player into a full screen non-video Flash
the video jumps to full screen the moment it loads.
 


Andrew Murphy
Interactive Media Specialist
 mailto:amur...@delvinia.com amur...@delvinia.com

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.

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


RE: [Flashcoders] Height and Width of a loaded SWF before itvisuallyrenders?

2009-01-11 Thread Andrew Murphy
Hi again. :)

It's not a load-time problem that I'm dealing with.  It's after they've
loaded and been displayed to the user.  The animation occours when the user
is interacting with them.

1) user clicks on one of the loaded swf files
2) swf file begins animating, changing it's height and width
3) in response to the changing height/width the swf files get moved to new
positions

The problem I'm having is that the swf file has to render first, before I
can access it's new height and width in order to calculate where to move it
to.  Which is causing juddering as the swf initially renders in the wrong
position, gets moved, and then renders in the wrong position again, etc.
until the animation is completed.

You might be onto something there with calling invalidate.  Perhaps I can
use that to get the new height and width before it renders.  I'll give it a
whirl...

Ta. ^_^

-[a]-


-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Manish
Jethani
Sent: January 11, 2009 07:21
To: Flash Coders List
Subject: Re: [Flashcoders] Height and Width of a loaded SWF before
itvisuallyrenders?

On 1/11/09, Andrew Murphy amur...@delvinia.com wrote:

 I need an event that fires after the swf does an enterframe, resizing as
the
 graphics animate, but before the Flash redraws itself.

The render event is supposed to get dispatched only if you've called
stage.invalidate. Are you doing that from the loading application?

 ...I'm thinking what I want to do just isn't do-able.  That the new frame
of
 the swf has to be drawn before the height and width properties update.

One of the way to handle this may be to hide the loaded applications
at first, let them load and render off screen, and then lay them out
based on their final size. I guess you lose the animation though ...
but something along those lines.

Manish

-- 
http://manishjethani.com
___
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] Height and Width of a loaded SWF before itvisuallyrenders?

2009-01-11 Thread Andrew Murphy
YES!!!

It works!

Doing a stage.invalidate() in the loaded .swf file, then listening for it's
RENDER event before running the script to position the loaded .swf files.
The height and width properties in the loaded .swf are updated to the new
ones and accessable to the loading .swf

Sweet.  Thank you. ^_^

-[a]-


-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Manish
Jethani
Sent: January 11, 2009 07:21
To: Flash Coders List
Subject: Re: [Flashcoders] Height and Width of a loaded SWF before
itvisuallyrenders?

On 1/11/09, Andrew Murphy amur...@delvinia.com wrote:

 I need an event that fires after the swf does an enterframe, resizing as
the
 graphics animate, but before the Flash redraws itself.

The render event is supposed to get dispatched only if you've called
stage.invalidate. Are you doing that from the loading application?

 ...I'm thinking what I want to do just isn't do-able.  That the new frame
of
 the swf has to be drawn before the height and width properties update.

One of the way to handle this may be to hide the loaded applications
at first, let them load and render off screen, and then lay them out
based on their final size. I guess you lose the animation though ...
but something along those lines.

Manish

-- 
http://manishjethani.com
___
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] Height and Width of a loaded SWF before it visually renders?

2009-01-10 Thread Andrew Murphy
Hi all.

 

I'm loading several .swf files into another .swf, to produce a horizontal
bar of clickable icons.  The loaded .swf files animate, changing their
size, when they are clicked on.

 

I've written a script in the loading .swf that positions the loaded .swfs in
the scrollbar, but by the time it can access the height and width properties
of the loaded .swf files they have already visually rendered.  (I'm
currently using an Event.ENTER_FRAME to trigger the script that positions
the loaded .swf files.)  This is causing a juddering in the scrollbar as the
loaded swf files are rendering visually before the positioning script
accesses their height and width and then position them, turning it into a
two step process:  1) icon movie clip changes size and renders, 2) scrollbar
script repositions the icon movie clips

 

What I'd like to do is access the height and width of the loaded swf files
before they visually render so that I can get them into the correct
positions before the visual render occours.  Turn it into a one step
process:  icon movie clip changes size and then they are all repositioned by
the scrollbar script.

 

I've tried creating an Event.RENDER within the loaded .swf files to trigger
the script in the loading swf to position the icons, but the loaded swf
files never seem to fire a render event while it's animating.

 

I'm not even sure what I want to do is possible as the loaded swfs may not
have their new height/width before they have visually rendered.

 

Thoughts..?

 

Thank you. ^_^

 

-[a]-

 

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


RE: [Flashcoders] Height and Width of a loaded SWF before it visuallyrenders?

2009-01-10 Thread Andrew Murphy
Hi.  And thank you. :)

I'll have a closer look at this tomorrow.. but.. I'm not sure what the
purpose of it is.  At first glance it just seems to allow access to the
properties of the loaded SWF file, which I already have.  It's the timing of
animation event, the updating of the swf's properties, and the swf visually
rendering that I'm having a problem with.

Basically I want to have access to it's new hight/width before it visually
renders, so that I can reposition it.  Kinda doubting that's possible
though.

-[a]-


-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Matt Muller
Sent: January 10, 2009 02:43
To: Flash Coders List
Subject: Re: [Flashcoders] Height and Width of a loaded SWF before it
visuallyrenders?

http://www.senocular.com/flash/actionscript.php?file=ActionScript_3.0/com/se
nocular/utils/SWFReader.as

On Sat, Jan 10, 2009 at 5:03 PM, Andrew Murphy amur...@delvinia.com wrote:

 Hi all.



 I'm loading several .swf files into another .swf, to produce a horizontal
 bar of clickable icons.  The loaded .swf files animate, changing their
 size, when they are clicked on.



 I've written a script in the loading .swf that positions the loaded .swfs
 in
 the scrollbar, but by the time it can access the height and width
 properties
 of the loaded .swf files they have already visually rendered.  (I'm
 currently using an Event.ENTER_FRAME to trigger the script that positions
 the loaded .swf files.)  This is causing a juddering in the scrollbar as
 the
 loaded swf files are rendering visually before the positioning script
 accesses their height and width and then position them, turning it into a
 two step process:  1) icon movie clip changes size and renders, 2)
 scrollbar
 script repositions the icon movie clips



 What I'd like to do is access the height and width of the loaded swf files
 before they visually render so that I can get them into the correct
 positions before the visual render occours.  Turn it into a one step
 process:  icon movie clip changes size and then they are all repositioned
 by
 the scrollbar script.



 I've tried creating an Event.RENDER within the loaded .swf files to
trigger
 the script in the loading swf to position the icons, but the loaded swf
 files never seem to fire a render event while it's animating.



 I'm not even sure what I want to do is possible as the loaded swfs may not
 have their new height/width before they have visually rendered.



 Thoughts..?



 Thank you. ^_^



 -[a]-



 ___
 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] Problem with Forward and Rewind Buttons in FLVPlayback component

2008-12-10 Thread Andrew Murphy
Hello.
 
I'm building a simple video player in Flash CS3 using the FLVPlayback
component and the SkinUnderAllNoFullNoCaption skin.  I can't seem to get the
Forward and Rewind buttons to work.
 
I've created an .flv, using the Flash Video Encoder, which includes a cue
point every 10 seconds, but when I click the Forward and Rewind buttons it
only skips to the very beginning or end of the flv.
 
I've checked the FLVPlayback component's metadata and it does indeed have
the cue points once the video has loaded.
 


Andrew Murphy
Interactive Media Specialist
 mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.

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


RE: [Flashcoders] Problem with Forward and Rewind Buttons inFLVPlayback component

2008-12-10 Thread Andrew Murphy
I figured it out:  Need to use Navigation cue points rather than Event
ones.


Andrew Murphy
Interactive Media Specialist
[EMAIL PROTECTED]

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.

 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf 
 Of Andrew Murphy
 Sent: Wednesday, December 10, 2008 2:08 PM
 To: 'Flash Coders List'
 Subject: [Flashcoders] Problem with Forward and Rewind 
 Buttons inFLVPlayback component
 
 Hello.
  
 I'm building a simple video player in Flash CS3 using the 
 FLVPlayback component and the SkinUnderAllNoFullNoCaption 
 skin.  I can't seem to get the Forward and Rewind buttons to work.
  
 I've created an .flv, using the Flash Video Encoder, which 
 includes a cue point every 10 seconds, but when I click the 
 Forward and Rewind buttons it only skips to the very 
 beginning or end of the flv.
  
 I've checked the FLVPlayback component's metadata and it does 
 indeed have the cue points once the video has loaded.
  
 
 
 Andrew Murphy
 Interactive Media Specialist
  mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 
 Delvinia
 214 King Street West, Suite 214
 Toronto Canada M5H 3S6
 
 P 416.364.1455 ext. 232  F 416.364.9830  W 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.
 
  
 ___
 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] Disabling Print Screen key

2008-10-24 Thread Andrew Murphy
The company I work for does online surveys (amongst other things) and they
can include showing people images of proposed products/campaigns/etc.  A
client asked if we can keep our panelists from keeping copies.

Our response has been, No.  But we can make it a little more difficult.
So they asked us to research any means for making it more difficult that we
could come up with.  I couldn't think of any way to get around the Print
Screen key, so I thought I'd ask here and see if anyone else had done it.

I like the cleverness of the System.setClipboard method, except that it
could make for a poor user experience and doesn't completely fix the
problem.

C'est la vie.

Thank you all for sharing your insights with me. ^_^



Andrew Murphy
Interactive Media Specialist
[EMAIL PROTECTED]

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.

 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf 
 Of sebastian
 Sent: Friday, October 24, 2008 2:00 PM
 To: Flash Coders List
 Subject: Re: [Flashcoders] Disabling Print Screen key
 
 It's one of those things where 'abuse' comes to mind. Short 
 of not allowing flash to do such a thing, if such an 
 overwrite of the clip-board is occurring there should be a 
 warning to the user, otherwise they might wonder why they 
 can't use copy-paste anymore!
 
 I wonder what it is that would be so critical you don't want 
 a screen shot...?
 
 I've never seen a system that stops someone from taking a 
 screen shot when they still really wanted one, in the end 
 it's just an annoying feature that disrupts everyone's time/sanity!
 
 With kind,
 
 Seb.
 
 Pedro Taranto wrote:
  Thanks for remember that Jim, I forgot to say that it just 
 worked on 
  windows in my tests it didnt work on linux nor mac, but it 
 was OK for 
  the project I developed
  
  but you have to remember that the user wont be able to copy 
 anything 
  while your flash is running, even in the background
  
  --
  Pedro Taranto
  
  
  On Fri, Oct 24, 2008 at 1:37 PM, Jim McIntyre 
 [EMAIL PROTECTED] wrote:
  
  If you have any Macs in your target audience, remember 
 that the OS's 
  screen capture routine doesn't involve the clipboard, but 
 creates a 
  PNG file directly on the desktop.
 
  Remember too that there is a variety of screen grab utilities out 
  there on either platform... this might be a losing battle.
 
  -Jim
 
  Pedro Taranto wrote:
 
  In AS2 I used to create an onEnterFrame loop to overwrite the 
  clipboard content using the System.setClipboard(string) 
 function, it 
  still works in
  AS3
 
  Bests,
 
  --
  Pedro Taranto
 
 
  Andrew Murphy wrote:
 
  Hi. :)
 
  I'm attempting to disable using the Print Screen button 
 for an AS3 
  movie on a web page.  The stage doesn't appear to fire a 
  KeyboardEvent.KEY_DOWN when the Print Screen key is pressed.
 
  Is there a way to detect the Print Screen key?  Or 
 another method 
  for disabling the user's ability to do a Print Screen 
 screen cap of 
  a Flash movie?
 
  ___
  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] Disabling Print Screen key

2008-10-23 Thread Andrew Murphy
Hi. :)

I'm attempting to disable using the Print Screen button for an AS3 movie on
a web page.  The stage doesn't appear to fire a KeyboardEvent.KEY_DOWN when
the Print Screen key is pressed.

Is there a way to detect the Print Screen key?  Or another method for
disabling the user's ability to do a Print Screen screen cap of a Flash
movie?



Andrew Murphy
Interactive Media Specialist
[EMAIL PROTECTED]

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.



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


RE: [Flashcoders] working with getPixel32 and setPixel32,

2008-10-06 Thread Andrew Murphy
I'm not sure of this, but:  After you grab val you could bitshift out the
alpha channel (a), subtract that from the original argb value to remove
the alpha channel.  Manipulate a and bitshift it back up again before
adding it to the rgb value to give you a new argb.


var a:uint = val  32  0xff;
var rgb:uint = val - (a  32);
a = a / 2;
var newval:uint = rgb + (a  32);




Andrew Murphy
Interactive Media Specialist
[EMAIL PROTECTED]

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.

 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf 
 Of sebastian
 Sent: Monday, October 06, 2008 3:18 PM
 To: Flash Coders List
 Subject: [Flashcoders] working with getPixel32 and setPixel32,
 
 hi folks,
 
 can any one shed some light to me on the setpixel32 and getpixel32?
 
 I'd like to be able to affect just one of the 4 components: A 
 R G or B independently of another.
 
 Essentially, read the current ARGB using getPixel32 and then 
 manipulate just one part of it, in my case, halve the current 
 A value of the ARGB and then re-assign it back to the bitmap.
 
 
 //1: grab the HEX value for the current coordinate:
 var val:uint = getPixel32(x,y);
 
 //2: manipulate the HEX value of just 1 of the 4 parts, in my 
 case the A of the ARGB:
 
 
 //3: re-assign it back to the display:
 setPixel32(x,y,val);
 
 Thanks for your help!
 
 Sebastian.
 ___
 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] Retrieving URL params from embedded code.

2008-07-11 Thread Andrew Murphy
How about using the LoaderInfo class?

LoaderInfo(this.root.loaderInfo).parameters;

That should, I believe, return an object with key/value pairs of the vars
passed into the .swf file via the object embed on the webpage.



Andrew Murphy
Interactive Media Specialist
[EMAIL PROTECTED]

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of ACE Flash
Sent: Friday, July 11, 2008 11:23 AM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Retrieving URL params from embedded code.

hey there,

I was try to retrieve the URL params by using _level0.url in flash


I knew the flashvars, but I was curious about to retrieve the params from
embedded url directly. is that possible?

sample embedded code=


embed src=myflash.swf?url=http://www.msn.com; quality=high
bgcolor=#ff width=300 height=200 name=myflash align=middle
allowScriptAccess=always allowFullScreen=false
type=application/x-shockwave-flash pluginspage=
http://www.macromedia.com/go/getflashplayer; /

thanks
___
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] Basic loop problem (with end of message)

2008-07-09 Thread Andrew Murphy
You're welcome, glad that I was able to help. :)  And don't feel bad 'bout
it, typos happen to everyone and can be a complete nightmare to sort out.



Andrew Murphy
Interactive Media Specialist
[EMAIL PROTECTED]

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Paul Jinks
Sent: Tuesday, July 08, 2008 4:24 PM
To: Flash Coders List
Subject: RE: [Flashcoders] Basic loop problem (with end of message)

Andrew

Yes, that was it. If I wasn't so relieved to have this working I'd be hiding
in shame. What can I say except thank you. I spent the best part of a day
with that code and have no idea how the inverted commas got there.

Once again, many thanks

Paul

On Tue, July 8, 2008 7:31 pm, Andrew Murphy wrote:
 I'm afraid I don't understand some of your code; my direct experience 
 with using cuepoints isn't up-to-date.  Havn't used it in a couple of
years.
 .



 But there is one part of your code that might be off:


   if (contains(texthtml, cueArray) == -1) {



 Shouldn't it be:

   if (contains(texthtml, cueArray) == -1) {

  ...otherwise you're comparing the string value texthtml rather than 
 the value of the texthtml String variable.



 
 Andrew Murphy
 Interactive Media Specialist
 [EMAIL PROTECTED]

 Delvinia
 214 King Street West, Suite 214
 Toronto Canada M5H 3S6

 P 416.364.1455 ext. 232  F 416.364.9830  W 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.


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Paul 
 Jinks
 Sent: Tuesday, July 08, 2008 10:07 AM
 To: Flash Coders List
 Subject: RE: [Flashcoders] Basic loop problem (with end of message)

 Thanks to everyone who replied on this, mostly with the same solution:

 On Tue, July 8, 2008 1:07 pm, Andrew Murphy wrote:
 mainText.htmlText = ;
 for(var i:uint = 0; i  cueArray.length; ++i) {
  mainText.htmlText += b + cueArray[i] + /b; }

 Unfortunately, this doesn't fix the problem, which makes me think I 
 have an additional problem elsewhere (see below). Here's what I see 
 when I play past cue point 1:
 Cue Point 1
 But if I review it and play it again I get this:
 Cue Point 1
 Cue Point 1 and so on...
 In other words, it's as if it's just adding the last cue point every time.
:(

 I suspect there's something hokey with the way I'm treating my array?
 Here's the relevant code:

 vidList.cuePoint = function(cues) {
   texthtml = (p)+cues.info.name;
   if (cues.info.type == event) {
   if (contains(texthtml, cueArray) == -1) {
   len = cueArray.length;
   cueArray[len] = texthtml;
   var len2 = cueArray.length;
   mainText.htmlText = ;
   for (var i = 0; ilen2; i++) {
   mainText.htmlText +=
 b+cueArray[i]+/bbr;
   }
   }
   }
 };
 caption_flvp.addEventListener(cuePoint, vidList);

 If you're still reading and thinking it through, many, many 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



-- 

Check out my website: http://www.pauljinks.co.uk :o)


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

RE: [Flashcoders] Basic loop problem (with end of message)

2008-07-08 Thread Andrew Murphy
Whenever you want to out put the array you wipe the htmlText before you run
the output loop:

mainText.htmlText = ;
for(var i:uint = 0; i  cueArray.length; ++i) {
mainText.htmlText += b + cueArray[i] + /b;
}


This might be a bit inefficient, setting the .htmlText repeatedly would, I
suspect, fire a lot of HTML class events.  So it might be better to have a
separate String variable that you set first and then fire at the HTML
instance:

// init the string
var html2render:String;

// displaying the cueArray
html2render = ;
for(var i:uint = 0; i  cueArray.length; ++i) {
html2render += b + cueArray[i] + /b;
}
mainText.htmlText = html2render;



Andrew Murphy
Interactive Media Specialist
[EMAIL PROTECTED]

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Paul Jinks
Sent: Tuesday, July 08, 2008 7:33 AM
To: Flash Coders List
Subject: Re: [Flashcoders] Basic loop problem (with end of message)

Thanks to everyone for your help. This gets me closer to what I'm looking
for.

Unfortunately, there's a complicating factor: if the user scrubs across the
same point in the video again, they end up with duplicates/triplicates of
the list.

Since we actually want people to do this, I'm looking for a solution that
will replace the existing text with the full array on each cuePoint event.
I thought that my original code would do this - unless there's a better way
of achieving this?

Hope this makes sense and thanks again.

Paul


On Tue, July 8, 2008 12:09 pm, Piers Cowburn wrote:
 Hi Paul,

 Try:

   var len2 = cueArray.length;
 for (var i = 0; ilen2; i++)
 {
   mainText.htmlText += b+cueArray[i]+/bbr; }

 Piers



 On 8 Jul 2008, at 11:56, Paul Jinks wrote:

 Apologies for last post: it got sent before I'd finished. That'll 
 teach me to try to use the tab key using IMAP ;-). Here's the message 
 again in
 full:

 I'm new to coding and I'm having a problem getting a for loop to do 
 what I want it to. I think this is pretty basic, but I'll let you be 
 the judge.

 I have a project to play through an flv which fires event cue points 
 at certain points. At these points, text appears at the side of the 
 video window as summaries of what's being said. The summary text is 
 the name of the cue point and is added to an array called cueArray 
 after checking that it doesn't already exist. So far so good.

 The last step is to output the full array to the text field and it's 
 at this point that I'm at hitting head against wall pitch. I just 
 can't get it to output the whole array in sequence. What I'm using 
 is:
var len2 = cueArray.length;
 for (var i = 0; ilen2; i++)
 {
 mainText.htmlText = b+cueArray[i]+/b;
 }
 But what this does is print only the last item in the array, whereas 
 I'm expecting it to print the array in full.

 TIA

 Paul


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

 [EMAIL PROTECTED]
 0207 631 3278


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



--

Check out my website: http://www.pauljinks.co.uk :o)


___
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] Basic loop problem (with end of message)

2008-07-08 Thread Andrew Murphy
Whoops.  Been working in AIR for too long; whenever I see .htmlText property
being set I thoughtlessly assume it's the HTML class. .

Still.. I should think the same would apply; that it'd be worthwhile to
avoid hammering on the TextField's .htmlText property by setting it within
the output loop.



Andrew Murphy
Interactive Media Specialist
[EMAIL PROTECTED]

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Andrew
Murphy
Sent: Tuesday, July 08, 2008 8:07 AM
To: 'Flash Coders List'
Subject: RE: [Flashcoders] Basic loop problem (with end of message)

Whenever you want to out put the array you wipe the htmlText before you run
the output loop:

mainText.htmlText = ;
for(var i:uint = 0; i  cueArray.length; ++i) {
mainText.htmlText += b + cueArray[i] + /b; }


This might be a bit inefficient, setting the .htmlText repeatedly would, I
suspect, fire a lot of HTML class events.  So it might be better to have a
separate String variable that you set first and then fire at the HTML
instance:

// init the string
var html2render:String;

// displaying the cueArray
html2render = ;
for(var i:uint = 0; i  cueArray.length; ++i) {
html2render += b + cueArray[i] + /b; } mainText.htmlText =
html2render;



Andrew Murphy
Interactive Media Specialist
[EMAIL PROTECTED]

Delvinia
214 King Street West, Suite 214
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Paul Jinks
Sent: Tuesday, July 08, 2008 7:33 AM
To: Flash Coders List
Subject: Re: [Flashcoders] Basic loop problem (with end of message)

Thanks to everyone for your help. This gets me closer to what I'm looking
for.

Unfortunately, there's a complicating factor: if the user scrubs across the
same point in the video again, they end up with duplicates/triplicates of
the list.

Since we actually want people to do this, I'm looking for a solution that
will replace the existing text with the full array on each cuePoint event.
I thought that my original code would do this - unless there's a better way
of achieving this?

Hope this makes sense and thanks again.

Paul


On Tue, July 8, 2008 12:09 pm, Piers Cowburn wrote:
 Hi Paul,

 Try:

   var len2 = cueArray.length;
 for (var i = 0; ilen2; i++)
 {
   mainText.htmlText += b+cueArray[i]+/bbr; }

 Piers



 On 8 Jul 2008, at 11:56, Paul Jinks wrote:

 Apologies for last post: it got sent before I'd finished. That'll 
 teach me to try to use the tab key using IMAP ;-). Here's the message 
 again in
 full:

 I'm new to coding and I'm having a problem getting a for loop to do 
 what I want it to. I think this is pretty basic, but I'll let you be 
 the judge.

 I have a project to play through an flv which fires event cue points 
 at certain points. At these points, text appears at the side of the 
 video window as summaries of what's being said. The summary text is 
 the name of the cue point and is added to an array called cueArray 
 after checking that it doesn't already exist. So far so good.

 The last step is to output the full array to the text field and it's 
 at this point that I'm at hitting head against wall pitch. I just 
 can't get it to output the whole array in sequence. What I'm using
 is:
var len2 = cueArray.length;
 for (var i = 0; ilen2; i++)
 {
 mainText.htmlText = b+cueArray[i]+/b;
 }
 But what this does is print only the last item in the array, whereas 
 I'm expecting it to print the array in full.

 TIA

 Paul


 ___
 Flashcoders mailing list

RE: [Flashcoders] Basic loop problem (with end of message)

2008-07-08 Thread Andrew Murphy
I'm afraid I don't understand some of your code; my direct experience with
using cuepoints isn't up-to-date.  Havn't used it in a couple of years. .



But there is one part of your code that might be off:


if (contains(texthtml, cueArray) == -1) {



Shouldn't it be:

if (contains(texthtml, cueArray) == -1) {

 ...otherwise you're comparing the string value texthtml rather than the
value of the texthtml String variable.




Andrew Murphy
Interactive Media Specialist
[EMAIL PROTECTED]

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Paul Jinks
Sent: Tuesday, July 08, 2008 10:07 AM
To: Flash Coders List
Subject: RE: [Flashcoders] Basic loop problem (with end of message)

Thanks to everyone who replied on this, mostly with the same solution:

On Tue, July 8, 2008 1:07 pm, Andrew Murphy wrote:
 mainText.htmlText = ;
 for(var i:uint = 0; i  cueArray.length; ++i) {
   mainText.htmlText += b + cueArray[i] + /b; }

Unfortunately, this doesn't fix the problem, which makes me think I have an
additional problem elsewhere (see below). Here's what I see when I play past
cue point 1:
Cue Point 1
But if I review it and play it again I get this:
Cue Point 1
Cue Point 1 and so on...
In other words, it's as if it's just adding the last cue point every time.
:(

I suspect there's something hokey with the way I'm treating my array?
Here's the relevant code:

vidList.cuePoint = function(cues) {
texthtml = (p)+cues.info.name;
if (cues.info.type == event) {
if (contains(texthtml, cueArray) == -1) {
len = cueArray.length;
cueArray[len] = texthtml;
var len2 = cueArray.length;
mainText.htmlText = ;
for (var i = 0; ilen2; i++) {
mainText.htmlText +=
b+cueArray[i]+/bbr;
}
}
}
};
caption_flvp.addEventListener(cuePoint, vidList);

If you're still reading and thinking it through, many, many 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


RE: [Flashcoders] filmmering FLV playback - why and how to fix that

2008-07-03 Thread Andrew Murphy
I can't see all of the details of how the video is encoded (FLV MetaData
Viewer has a bug that keeps it from displaying some .flv file's data) but
this is what I can see in FLV Player:



Dimensions:  694 x 440
Framerate: 25fps

Audio codec ID: 2 (which means it's an MP3)
Audio datarate:  96 kbits/s
(also the audio sounds stereo to me...)

Video codec ID: 4 (which means it's On2 VP6)
Video datarate:  400 kbits/s



The main issue that's likely causing the stuttering is the constant motion
throught the frame area.  In my own video work I've been able to reduce that
by bumping up the keyframe rate, but that of course will increase the file
size and probably the workload on someone's CPU when it's played.

I'd experiment with reducing the frame rate to something like 15 fps, give
it a keyframe rate of one every 5 frames, convert the audio to mono and try
tweaking the datarates of the video and the audio to get a good balance of
visual quality and CPU bandwidth use.  If your encoder software lets you set
how many passes it makes during video encoding you can set it to use two
passes, which can improve visual quality at lower video datarates.

I hope that helps... ^_^




(ps:  That's a delightful looking home. :D)
 



Andrew Murphy
Interactive Media Specialist
[EMAIL PROTECTED]

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6

P 416.364.1455 ext. 232  F 416.364.9830  W 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.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Paul Andrews
Sent: Thursday, July 03, 2008 9:38 AM
To: Flash Coders List
Subject: Re: [Flashcoders] filmmering FLV playback - why and how to fix that

It's not that bad. I think the fact that there are a lot of hard edes and
contiuous movement that any faults are more obvious.

The stuttering was occuring as the video was playing and the file had not
yet fully loaded (though was not halted to fill the buffer).

The strange lines you mention appear to be the video player trying to keep
up with the display.

Despite all this, I think the quality isn't too bad.

I'd try out a few variations on the encoding to see if that helps.

I don't think I've ever tried to play such a large video on my laptop
before. My last video project was 200x150.

Paul



- Original Message -
From: Martin Klasson [EMAIL PROTECTED]
To: Flash Coders List flashcoders@chattyfig.figleaf.com
Sent: Thursday, July 03, 2008 2:00 PM
Subject: Re: [Flashcoders] filmmering FLV playback - why and how to fix that


I used 400kbit on a 694x440 movie, with 96kbps audio in stereo, on2vp6.
frame rate same as source, and automatic keyframes.

How does it stutter, as it is buffering and than resumes - or does the video
has strange lines appearing like it
the video doesnt perform well.

I think it is very strange, and I cant understand that I havent heard about
this issue before!


2008/7/3 Paul Andrews [EMAIL PROTECTED]:

 What settings did you give the encoder - maybe your bitrate is too high. 
 It
 certainly stutters on my machine. Maybe you have too many keyframes.

 Paul
 - Original Message - From: Martin Klasson [EMAIL PROTECTED]
 To: Flash Coders List flashcoders@chattyfig.figleaf.com
 Sent: Thursday, July 03, 2008 1:03 PM
 Subject: [Flashcoders] filmmering FLV playback - why and how to fix that


  I got a quicktime which I have encoded to on2vp6-file with Flash Video
 Encoder,
 but the flv that is being played is having some flimmering results, as 
 can
 be seen here:
 http://www.bjorkelangenpark.no/innredning.html


 The quicktime is not having this issue, I dont know how to solve this. Do
 you?

 Thanks, Martin
 ___
 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




-- 

Martin Klasson
Flash Developer
Parkgatan 9-11
S-411 24 Göteborg
Sweden
Office +46 (0) 31 711 54 50
Cell +46 (0) 730 964 561
[EMAIL PROTECTED]
www.kokokaka.com
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list

[Flashcoders] Tree item continuous autoscrolling after drag-n-drop

2008-04-03 Thread Andrew Murphy
Hi.

 

I’m drag-n-dropping an object from one Tree component to another one.
Sometimes when I have an item dragged over the second Tree, ready to drop,
the dern thing starts scrolling.. usually upwards.. making it much more
challenging to drop the item in the right place.  It also sometimes gets
stuck scrolling, up or down, even when the mouse pointer is no long over the
Tree.  If the mouse exits from the top of the Tree it scrolls up, if it
exits from the bottom it scrolls down.. I can get it to flip back and forth
by moving the mouse over it.. but havn’t found any way to stop the scrolling
except by exiting the application and re-starting it.

 

Any ideas of what could be wrong or what I should investigate?

 

Thanks. :)

 


Andrew Murphy
Interactive Media Specialist
[EMAIL PROTECTED]

Delvinia
214 King Street West, Suite 214 

Toronto Canada M5H 3S6
P 416.364.1455 ext. 232
F 416.364.9830
W 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. 
Version: 7.5.519 / Virus Database: 269.22.5/1356 - Release Date: 02/04/2008
4:14 PM
 
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] Tree item continuous autoscrolling after drag-n-drop

2008-04-03 Thread Andrew Murphy
Oop!  Just realized this is a Flex issue, not Flash coding specific.  Sorry
'bout that...


Andrew Murphy
Interactive Media Specialist
[EMAIL PROTECTED]

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6
P 416.364.1455 ext. 232
F 416.364.9830
W 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.
 
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Andrew
Murphy
Sent: April 3, 2008 2:11 PM
To: 'Flash Coders List'
Subject: [Flashcoders] Tree item continuous autoscrolling after drag-n-drop

Hi.

 

I’m drag-n-dropping an object from one Tree component to another one.
Sometimes when I have an item dragged over the second Tree, ready to drop,
the dern thing starts scrolling.. usually upwards.. making it much more
challenging to drop the item in the right place.  It also sometimes gets
stuck scrolling, up or down, even when the mouse pointer is no long over the
Tree.  If the mouse exits from the top of the Tree it scrolls up, if it
exits from the bottom it scrolls down.. I can get it to flip back and forth
by moving the mouse over it.. but havn’t found any way to stop the scrolling
except by exiting the application and re-starting it.

 

Any ideas of what could be wrong or what I should investigate?

 

Thanks. :)

 


Andrew Murphy
Interactive Media Specialist
[EMAIL PROTECTED]

Delvinia
214 King Street West, Suite 214 

Toronto Canada M5H 3S6
P 416.364.1455 ext. 232
F 416.364.9830
W 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. 
Version: 7.5.519 / Virus Database: 269.22.5/1356 - Release Date: 02/04/2008
4:14 PM
 
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

No virus found in this incoming message.
Checked by AVG. 
Version: 7.5.519 / Virus Database: 269.22.5/1356 - Release Date: 02/04/2008
4:14 PM
 

No virus found in this outgoing message.
Checked by AVG. 
Version: 7.5.519 / Virus Database: 269.22.5/1356 - Release Date: 02/04/2008
4:14 PM
 


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


RE: [Flashcoders] TextFieldAutoSize [AS3]

2008-04-01 Thread Andrew Murphy
You can also do it like this:

var tf:TextField = new TextField();
with(tf){
autoSize = TextFieldAutoSize.LEFT;
wordWrap = true; // width wordWrap set to true it autosizes
// the height to fit the text
w = 300;
text = Blahblahblah yackitty schmackity.
}


Andrew Murphy
Interactive Media Specialist
[EMAIL PROTECTED]

Delvinia
214 King Street West, Suite 214 
Toronto Canada M5H 3S6
P 416.364.1455 ext. 232
F 416.364.9830
W 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.
 
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Stuart
(FunkDaWeb)
Sent: April 1, 2008 12:33 PM
To: Flash Coders List
Subject: [Flashcoders] TextFieldAutoSize [AS3]

Hi All

Is there any way to autosize the height of a textfield only? I want to
manually set the width of a dynamic textbox but have the user increase the
size of the text via a button. I currently have it working how i need but
the textbox cuts off the bottom of the text when its bigger than the
textbox.

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

No virus found in this incoming message.
Checked by AVG. 
Version: 7.5.519 / Virus Database: 269.22.3/1354 - Release Date: 01/04/2008
5:38 AM
 

No virus found in this outgoing message.
Checked by AVG. 
Version: 7.5.519 / Virus Database: 269.22.3/1354 - Release Date: 01/04/2008
5:38 AM
 


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


RE: [Flashcoders] Problem with cascading functions within a class

2007-02-14 Thread Andrew Murphy
*goes to read up on Delegate*

Thank you. :)

-[a]-


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of T. Michael
Keesey
Sent: February 14, 2007 9:20 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Problem with cascading functions within a class

Delegate!

import mx.utils.Delegate;
// ...
public function grabHTML():Void {
var html_data:LoadVars = new LoadVars();
html_data.onData = Delegate.create(this, doSomething);
html_data.load(http://somesite.ca/some.html;);
}


On 2/14/07, Andrew Murphy [EMAIL PROTECTED] wrote:
 I'm programming a class which includes something like following methods:







 // grab some .html

 public function grabHTML():Void {

 // loads the .html

 var html_data:LoadVars = new LoadVars();

 // once the .html is loaded…

 html_data.onData = function():Void {

 // …run doSomething()

 doSomething();

 };

 html_data.load(http://somesite.ca/some.html;);

 };



 // does something after the .html has been loaded

 public function doSomething():Void {

 trace(doing something);

 };











 Unfortunately the second function doSomething never happens.  Can anyone
 clue me in as to what I'm doing wrong..?



 Thank you. :)



 -[a]-




 --
 No virus found in this outgoing message.
 Checked by AVG Free Edition.
 Version: 7.5.441 / Virus Database: 268.17.39/686 - Release Date:
14/02/2007
 7:54 AM

 ___
 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



-- 
T. Michael Keesey
Director of Technology
Exopolis, Inc.
2894 Rowena Avenue Ste. B
Los Angeles, California 90039
--
The Dinosauricon: http://dino.lm.com
Parry  Carney: http://parryandcarney.com
ISPN Forum: http://www.phylonames.org/forum/

-- 
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.441 / Virus Database: 268.17.39/686 - Release Date: 14/02/2007
7:54 AM
 
  

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.441 / Virus Database: 268.17.39/686 - Release Date: 14/02/2007
7:54 AM
 

___
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] Loading .html as a String variable

2007-01-17 Thread Andrew Murphy
I'll give that a try.  Thank you. :) 


- - - - - - - - -
-[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.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of T. Michael
Keesey
Sent: January 16, 2007 8:18 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Loading .html as a String variable

Not necessary -- you can just use the LoadVars.onData event function.

data:LoadVars = new LoadVars();
data.onData = function(source:String):Void {
// Do stuff with the raw string data (source).
}
data.load(someURL);

Normally onData calls onLoad, but, if you overwrite it per the above code,
onLoad will never fire.

On 1/16/07, Mick G [EMAIL PROTECTED] wrote:
 If you had a server-side language like PHP you could create a script 
 to add myString= to the start of the file then load it with loadvars.



 On 1/16/07, Andrew Murphy [EMAIL PROTECTED] wrote:
 
  Hi.
 
  Does anyone know of a way to load an .html document as a simple 
  String variable, so it can be parsed rather than displayed like a 
  webpage?  There's the good-ol-XML object, but if the webpage you're 
  loading isn't exactly XML compliant, it won't load, correct..?
 
  Thanks. :)
 
  -[a]-
 
  --
  No virus found in this outgoing message.
  Checked by AVG Free Edition.
  Version: 7.5.432 / Virus Database: 268.16.13/632 - Release Date:
  16/01/2007
  4:36 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



-- 
T. Michael Keesey
Director of Technology
Exopolis, Inc.
2894 Rowena Avenue Ste. B
Los Angeles, California 90039
--
The Dinosauricon: http://dino.lm.com
Parry  Carney: http://parryandcarney.com
ISPN Forum: http://www.phylonames.org/forum/
___
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

-- 
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.432 / Virus Database: 268.16.12/631 - Release Date: 16/01/2007
8:25 AM
 

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.432 / Virus Database: 268.16.13/632 - Release Date: 16/01/2007
4:36 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] Loading .html as a String variable

2007-01-16 Thread Andrew Murphy
Hi.

Does anyone know of a way to load an .html document as a simple String
variable, so it can be parsed rather than displayed like a webpage?  There's
the good-ol-XML object, but if the webpage you're loading isn't exactly XML
compliant, it won't load, correct..?

Thanks. :)

-[a]-

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.432 / Virus Database: 268.16.13/632 - Release Date: 16/01/2007
4:36 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


RE: [Flashcoders] Remove elements from Array

2006-12-21 Thread Andrew Murphy


//Create array with 5 elements
var myArray1:Array = new Array();
myArray1.push( new Array(A:, -1) );
myArray1.push( new Array(B:, -1) );
myArray1.push( new Array(C:,  0) );
myArray1.push( new Array(D:,  0) );
myArray1.push( new Array(E:, -1) );
myArray1.push( new Array(F:,  1) );
myArray1.push( new Array(G:,  0) );
myArray1.push( new Array(H:, -1) );

var i:Number = 0;
while(myArray1[i]){
if(myArray1[i][1]  0){
myArray1.splice(i, 1);
}else{
i++;
};
};
delete i; // ^_^



- - - - - - - - -
-[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.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mike Cobb
Sent: December 21, 2006 11:58 AM
To: Flashcoders mailing list
Subject: [Flashcoders] Remove elements from Array

-

Hi everyone,

I'm having a braindead moment today, which I was hoping someone could help
me with.

I have the following array...

//Create array with 5 elements
var myArray1:Array = new Array();
myArray1.push( new Array(A:, -1) );
myArray1.push( new Array(B:, -1) );
myArray1.push( new Array(C:,  0) );
myArray1.push( new Array(D:,  0) );
myArray1.push( new Array(E:, -1) );
myArray1.push( new Array(F:,  1) );
myArray1.push( new Array(G:,  0) );
myArray1.push( new Array(H:, -1) );
//name, score

...and I'm trying to remove all the elements in myArray1 with a score of
less than 0 without sorting/reordering the array at all.

I was trying to use a 'for loop', but obviously as the elements are removed,
the length of the array changes  causes the wrong elements to be deleted.

Can anyone help?

Thanks,
Mike

--
-
Mike Cobb
Creative Director
HMC Interactive
-
Tel: + 44 (0)845 20 11 462
Mob: + 44 (0)785 52 54 743
Web: http://www.hmcinteractive.co.uk
-
Grosvenor House, Belgrave Lane,
Plymouth, PL4 7DA, UK.
-

I've got a new e-mail address: [EMAIL PROTECTED] Please update your
address book. 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

--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.432 / Virus Database: 268.15.26/594 - Release Date: 20/12/2006
3:54 PM
 

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.432 / Virus Database: 268.15.26/594 - Release Date: 20/12/2006
3:54 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] Any resources for Flash on the PSP?

2006-11-22 Thread Andrew Murphy
Hi.
 
Does anyone know of any good, clearly written and thorough guides for
building Flash for distribution on the PSP (Playstation Portable)?
Preferably with example .fla files that I can poke around with.
 
(This is just for my own abusement, as I just got a PSP, rather than
anything work related.)
 
Thank you. :)
 
 

- - - - - - - - -
-[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.11/543 - Release Date: 20/11/2006
9:20 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


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

2006-11-10 Thread Andrew Murphy
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] Aliased text

2006-10-30 Thread Andrew Murphy
Hello. :)
 
I'm having an aliasing problem with a dynamically created Text Field.
Here's what I'm doing:
 
 
1)  Create the Text Field.
 
2)  Create a Text Format object for the Text Field, defining things like the
'font' and 'color'.
 
3)  Put copy into the Text Field.
 
4)  setTextFormat on the Text Field, using the created Text Format.
 
 
Problem is that I'm getting aliased text in the text field, so it looks
quite jaggy.  What I want to do, eventually, is to allow the user to select
whatever font they want the Text Field to display in, from the list of fonts
on their computer.  But really funky fonts will look terrible if I can't get
them antialiased.
 
So far I've had no luck in figuring out how to turn antialiasing on for a
dynamically created Text Field like this.
 
 
 

- - - - - - - - -
-[andrew murphy]-
flash developer
[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