Did you know that the keyboard inputs will not work in flash player full screen mode. Do you know why?
The answer is simple. says
"Limited full-screen keyboard input (Flash Player 10)"
Currently, Adobe Flash Player does not allow keyboard input when displaying content in full-screen mode. Flash Player 10 changes this, allowing for a limited number of keys to be usable in full-screen mode. These include Tab, the Space bar, and the (up, down, left, right) arrow keys.
This change affects all SWF files played in Flash Player 10 or later. This includes SWF files published for earlier versions of Flash, so long as they are played within Flash Player 10. This also affects non-app content in AIR.
If you want to know more http://kb2.adobe.com/cps/405/kb405548.html
Labels: flash player 10 test
here is an example for saving PDF file from flash 10 player(cs4) usning alivepdf And FileReference.Save();
Code
import org.alivepdf.pdf.PDF;
import org.alivepdf.layout.Orientation;
import org.alivepdf.layout.Size;
import org.alivepdf.layout.Unit;
import org.alivepdf.display.Display;
import org.alivepdf.saving.Method;
import org.alivepdf.fonts.FontFamily;
import org.alivepdf.fonts.Style;
import org.alivepdf.colors.RGBColor;
import flash.net.FileReference;
// we create the PDF
var myPDF:PDF = new PDF( Orientation.LANDSCAPE, Unit.MM, Size.A4 );
// we set the zoom to 100%
myPDF.setDisplayMode ( Display.REAL );
// we add a page
myPDF.addPage();
// set the line style color
myPDF.lineStyle ( new RGBColor ( 0x990000 ) );
// we draw a circle
//myPDF.drawCircle ( 20, 20, 20 );
myPDF.addImage(clip,0,0);
// we add our second page
myPDF.addPage();
// we set font and size
myPDF.setFont ( FontFamily.HELVETICA, Style.NORMAL );
myPDF.setFontSize ( 16 );
// we add some text
myPDF.addMultiCell ( 80, 8, "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Ut posuere, felis volutpat hendrerit ullamcorper, purus sem vehicula augue, ac volutpat sapien dui non metus." );
// we generate the PDF when the button is clicked
generate_btn.addEventListener( MouseEvent.CLICK, generatePDF );
function generatePDF ( e:MouseEvent )
{
// to save the PDF your specificy the path to the create.php script
// alivepdf takes care of the rest, if you are using AIR and want to save the PDF locally just use Method.LOCAL
// and save the returned bytes on the disk through the FileStream class
var bytes:ByteArray = myPDF.save(Method.LOCAL);
var file:FileReference = new FileReference();
file.save(bytes,"myfile.pdf");
}
this is just a test i created in flash cs4 3d. I'm not sing that this flower is a beautiful one. you can download the source here.any way flash cs4 3d feature is a great one. on coming days i'm tring to do more thing in cs4 3d
Note: flash 10 player required to view this sample
see a simple flash 3d tutorial at http://www.gotoandlearn.com/play?id=88
hi here i'm posting my new test in flash player 10 3d.it's just a rotating image. e-mail me for source.
Download flash payer 10
Labels: flash player 10 test