Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Andrew Kenward
Hey try changing your html

allowFullScreen to allowfullscreen all lower case might fix it?

or try using this generator for the correct html. chose dynamic publishing

http://www.bobbyvandersluis.com/swfobject/generator/index.html



Andrew Kenward
 
07590 609 554
www.milkybrain.co.uk

On 23 Jun 2010, at 16:31, flashcoders-requ...@chattyfig.figleaf.com wrote:

 Re: [Flashcoders] FullScreen - not working

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


[Flashcoders] Re: Flashcoders Digest, Vol 33, Issue 25

2010-06-23 Thread Andrew Kenward
Also you have missing semicolons ; in your html.

var params = {
menu : false,
allowfullscreen: true
};


Also just to make sure download swfobject 2 again. There was a buggy version 
about.

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




Andrew Kenward
 
07590 609 554
www.milkybrain.co.uk

On 23 Jun 2010, at 16:31, flashcoders-requ...@chattyfig.figleaf.com wrote:

 Re: [Flashcoders] FullScreen - not working

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


Re: [Flashcoders] flv stop loading / close netconnection

2010-03-23 Thread Andrew Kenward
Hi David

when you .close() the connection to the netstream object/video it stops the 
download and you lose the connection. I would also remove it from the 
displaylist. If you then want to go back to that same video after using 
.close() then you have to make a new connection to the video. So reload the 
videoplayer basically. Depending on the users browser it may continue to 
download the progressive video from the browser cache. If you have safari 
browser try looking at the activity window in the windows drop down menu. It 
should show you whats being downloaded on the page.

Andy

Andrew Kenward
a...@milkybrain.co.uk
www.milkybrain.co.uk
07590 609 554

On 22 Mar 2010, at 19:59, flashcoders-requ...@chattyfig.figleaf.com wrote:

 [Flashcoders] flv stop loading / close netconnection


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


[Flashcoders] Re: Embedding fonts CS3 vs FD

2010-03-17 Thread Andrew Kenward
Hi

Not sure if this will help. But when i embed fonts.  I use flash cs4 ide to 
make a library file swf or swc and add my fonts to that as font symbols. Bring 
that into flashbuilder

But what i have found in my AS3 i had to use this

var headingFormat:TextFormat = new TextFormat();

var headingFont:Font = new GothamBlack() // name of the library instance so e.g 
Arial() //
headingFormat.font = headingFont.fontName;

headingtxt.embedFonts = true;
headingtxt.text = SOME TEXT;
headingtxt.setTextFormat(headingFormat);

Even if you have made a textfield in the flashIDE and set it to access the 
library item or even use embed font. It didnt seem to work unless i hard coded 
it to use it. There does seem to be probs with flash cs4 and fonts still.


Andrew Kenward
a...@milkybrain.co.uk
www.milkybrain.co.uk
07590 609 554

On 17 Mar 2010, at 15:00, flashcoders-requ...@chattyfig.figleaf.com wrote:

 Embedding fonts CS3 vs FD


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