Fscommand "allowscale" not working in Flash 9?

I'm trying to export a standalone projector to the Flash 9
format.
I'm using these lines in the beginning of the file...
fscommand("fullscreen", "true");
fscommand("allowscale", "false");
fscommand("showmenu", "false");
If I export to Flash 8, it works as intended. But when I
export to a Flash 9 projector, the "allowscale" setting is ignored.
The other two fscommands work in 9, however.
Any ideas? It's not that I need any Flash 9 specific
features, I just thought I might export to the latest format when
I'm making a standalone projector. And I really need it to be 1:1
scale regardless of screen resolution, the presentation isn't built
for scaling.

If your Flash 9 movie is using AS3, you have to use
navigateToURL() instead of getURL().

Similar Messages

  • Captivate 4 AS2 Text Entry Box not working with Flash Player 11

    I am having issues with text entry boxes not working at all in flash 11. I am using Captivate 4 and exporting an AS2 swf. When you get to the slide you can type but you cannot see anything nor does the button or keystroke to move on. Also there is no cursor. Any ideas?

    You said it is not working with Flash 11, so does that mean you tested with previous version and that worked?
    While publishing choose Flash player as 9 and publish that, verify if that plays in a compatible web browser.
    AS 2 is a legacy scripting, it has been said not too be supported with even Flash Player 10 --
    http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=Part2_AS2_LangRef_1.html
    I believe if you switch back to version 9 while publish your project, it should work.
    Thanks,
    Anjaneai

  • NetStream.send not working in Flash Player 11.2 Beta with Cirrus, Please confirm if it is a bug

    Title
    NetStream.send not working in Flash Player 11.2 Beta with Cirrus, Please confirm if it is a bug or feature
    Description
    Problem Description:
    NetStream.send can not send data to peerstreams when using with cirrus. Conflict with documents.
    Sorry for tag the build as 11.0.1.3 while the bug is actually on 11.2 beta since the bug report system didn't have 11.2 beta yet.
    If you are not responsible for 11.2 beta bug fix, please help a hand to handle this bug to 11.2 team.
    This bug is "killing" to your application, so we really appreciate your help. Thanks.
    ==Publisher==
    nc.connect("rtmfp://");
    var ns:NetStream = new NetStream(nc, NetStream.DIRECT_CONNECTIONS);
    ns.publish("sendtest");
    ...//after connection success.
    ns.send("clientfunction", "ok"); // this line cannot reach subscribers. even if subscribers have client object correctly.
    ==Subscriber==
    nc.connect("rtmfp://");
    var ns:NetStream = new NetStream(nc, cirrusid);
    var client:Object = new Object();
    client.clientfunction = clientfunction; // target function
    ns.client = client;
    ns.play("sendtest");
    Steps to Reproduce:
    1. compile the code in the attachment to SendTestExample.swf (not be able to paste it here)
    2. run it under flash player 11.2.202.19 beta
    3. run it under flash player 11
    Actual Result:
    HeartBeat is:
    Start HeartBeat:
    send hello
    send hello
    send hello
    which means NetStream.send was not able to call "clientfunction" as expected.
    Expected Result:
    Start HeartBeat:
    send hello
    in client function: hello
    send hello
    in client function: hello
    send hello
    in client function: hello
    which can call into the clientfunction as flash player 11 did.
    Any Workarounds:
    I can not find it out since it's an api level bug. But this can be very important for lots of applications which rely on send to do rpc.
    Test Configuration
    IE8, Firefox under Windows 7
    Also have problem under Windows XP (but not well tested on this platform)
    App Language(s)
    ALL
    OS Language(s)
    ALL
    Platform(s)
    Windows 7
    Browser(s)
    Internet Explorer 8.0
    ==Attachment==
    package {
        import flash.display.Sprite;
        import flash.events.Event;
        import flash.events.NetStatusEvent;
        import flash.events.TimerEvent;
        import flash.media.Video;
        import flash.net.NetConnection;
        import flash.net.NetStream;
        import flash.text.TextField;
        import flash.utils.Timer;
        import flash.utils.setTimeout;
        public class SendTestExample extends Sprite
            public static var statusArea:TextField;
            var ncServer:NetConnection = new NetConnection();
            var nsServer:NetStream;
            var ncClient:NetConnection = new NetConnection();
            var nsClient:NetStream;
            var timer:Timer = new Timer(1000);
            public function SendTestExample() {
                ncServer.addEventListener("netStatus", onNCStatusServer);
                ncServer.connect("rtmfp://p2p.rtmfp.net","99f72ccbed0948d7589dc38a-3ce1b2616680");
                statusArea = new TextField();
                status("status");
                statusArea.x = 0;
                statusArea.y = 0;
                statusArea.border = true;
                statusArea.width = 200;
                statusArea.height = 350;
                addChild(statusArea);
            function onNCStatusServer(event:NetStatusEvent):void {
                status("Step 1:");
                status("server: " + event.info.code);
                status("id: " + ncServer.nearID);
                switch (event.info.code) {
                    case "NetConnection.Connect.Success":
                        nsServer = new NetStream(ncServer, NetStream.DIRECT_CONNECTIONS);
                        nsServer.addEventListener(NetStatusEvent.NET_STATUS, onNSStatusServer);
                        nsServer.publish("sendtest");
                        ncServer.removeEventListener(NetStatusEvent.NET_STATUS, onNCStatusServer);
                        ncClient.connect("rtmfp://p2p.rtmfp.net","99f72ccbed0948d7589dc38a-3ce1b2616680");
                        ncClient.addEventListener("netStatus", onNCStatusClient);
                    case "NetStream.Publish.BadName":
                        //status("Please check the name of the publishing stream" );
                        break;
            function onNCStatusClient(event:NetStatusEvent):void {
                status("Step 2:");
                status("client: " + event.info.code);
                status("id: " + ncClient.nearID);
                switch (event.info.code) {
                    case "NetConnection.Connect.Success":
                        nsClient = new NetStream(ncClient, ncServer.nearID);
                        var c:Object = new Object();
                        c["clientfunction"] = clientfunction;
                        nsClient.client = c;
                        nsClient.play("sendtest");
                        ncClient.removeEventListener(NetStatusEvent.NET_STATUS, onNCStatusClient);
                        //setTimeout(sendHello, 5000);
                    case "NetStream.Publish.BadName":
                        //status("Please check the name of the publishing stream" );
                        break;
            protected function onNSStatusServer(event:NetStatusEvent):void {
                status("nsserver: " + event.info.code);
                if (event.info.code == "NetStream.Play.Start") {
                    status("Start HeartBeat:");
                    this.timer.addEventListener(TimerEvent.TIMER, function (e:Event):void {
                        sendHello();
                    this.timer.start();
            protected function sendHello():void {
                status("send hello");
                nsServer.send("clientfunction", "hello");
            protected function status(msg:String):void
                statusArea.appendText(msg + "\n");
                trace("ScriptDebug: " + msg);
            protected function clientfunction(event:Object):void {
                status("in client function: " + event);

    Thanks for reporting. I can reproduce the bug in house. We will investigate.
    Calise

  • GETURL  is not working in flash player 9.0.124.0.

    Dear Friends,
    My swf and my html are in different domain so i got a issue
    in GETURL function , It is not working in flash player 9.0.124.0.
    in IE browser so that i add one parameter like allowScriptAccess
    =always then its working fine.but my question is what will happed
    if they will introduce any new flash version in future please tell
    me what is the permanent solution for this issue.
    Thanks

    There is no way to know what will change in the future. This
    is the solution that works now. It will probably remain in place
    for the reasonable future.

  • AIR SDK 17 (BETA) is not working with Flash CS6

    Hi,
    The latest AIR SDK 17 is not working with Flash CS6.
    I tried to publish and install an iOS app to my connected device via USB but I always get an error "Check if iTunes is installed".
    The latest stable AIR SDK 16 is working fine, and yes, iTunes is installed on my PC.
    DETAILS:
    - Flash CS6
    - AIR SDK 17
    - System: Windows 8,1
    - iPodTouch with iOS 8.1
    REPRODUCE:
    Open new AIR iOS template and publish/install it to a USB connected iOS 8.1 device.
    Anyone else got that error?

    I was getting this intermittently.   Not a super problem.   A remove and install in iTunes gets it loaded (after you tell ITunes where it is).

  • Embedfont = true; Japanese font is not working in Flash CC

    Hi,
    embedfont = true; was working in Flash CS6 (window XP, 32bit, Air SDK 15.0)
    But I moved same project to new system. Then, it's not working. (Flash CC, window 7 pro, 64bit, SDK 17.0).
    textfield shows nothing. But if I remove this code (embedfont = true;). Textfield shows texts applied default fonts.
    Funny part is English and Korean(My language) Embedfont is working perfectly.
    Only japanese font is not working.
    I've tried several japanese font, but all of them were not working.
    Any Idea would be appreciate.

    Amy~ Yep the lasso tool was what I verified with another user. 'L' seems to be bound indefinitely to loop through different types of lasso tools and it was annoying them because they just wanted L to be the regular freehand lasso. I removed 'L' from being an option on the polygon lasso and even set it explicitly to SHIFT+L as well as set the lasso tool to a completely different keyboard combo. 'L' still cycled through lassos haha. It needs some fixes.
    fertolg~ At least you have a workaround for now. I'd go nuts if I couldn't use keyboard text selection writing code, oy! You're welcome and if you're all set please mark correct so we can filter unanswered. Good luck!

  • Inbuilt FaceTime HD camera not working in flash media live encoder

    inbuilt FaceTime HD camera not working in flash media live encoder

    So you have libconnect.dll placed in modules/access folder of your FMS?

  • I am getting frustrated with Apple not working with Flash player on some of my favorite web sites. Is there any alternative that will work on I-pad instead of flash?

    I am getting frustrated with Apple not working with Flash Player on some of my favorite web sites! Is there another alternative to watching these site options on my I-pad?

    Flash is not, and probably never will be, supported on the iPad : http://www.apple.com/hotnews/thoughts-on-flash/ . Plus it would be up to Adobe to make a version of their flash player that works on iOS devices - something which they have never managed to do and which they have now given up on trying to do.
    Browser apps such as Skyfire, iSwifter and Puffin 'work' on some sites, but judging by their reviews not all sites. Also some websites, especially news sites, have their own apps in the App Store, so your could try checking there for your sites (and there is the built-in YouTube app).

  • Why "send sms" not work in flash lite3 ???

    hello
    i write this code for send sms in device :
    on(release) {
    if(_capSMS)
    getURL("sms:" add myNumber add "?body=" add myText);
    it work fine in flash lite1.1 & 2.x
    but not work in flash lite 3 !!!!!
    what shall i do ? please help me
    can i make the command geturl to work on flashlite 3?
    or how can i open an url from flash lite 3?
    please help me

    Hi,
    It appears that the problem is with the security sandbox. To
    be able to send an SMS, it looks like you have to publish for Flash
    Lite 3, and in the Publish Settings, set 'Local playback security'
    to 'Access network only'. I used the following code:
    on (release) {
    if (System.capabilities.hasSMS) {
    getURL("sms:" + myNumber + "?body=" + myText);
    And it would only work when the publish settings were set as
    above. This was testing on a Nokia E65 with the developer edition
    of FL3 installed.
    Hope this helps!
    Darren

  • Fscommand is not working when opening PDF document in browser with Acrobat 9, why?

    We embedded a flash application in PDF using screen annotation. In the flash we use fscommand to call methods available in AcroJS.  In acrobat reader 9, if we view the document in Internet Explorer, we receive a security sandbox violation message saying that it cannot make fscommand calls to <unknown> (allowScriptAccess is ). But when we open the document in Firefox, it works fine.

    Have a read of this article on the web:
    http://www.actionscript.org/resources/articles/99/1/FS-Command-JavaScript-Library/Page1.ht ml
    The part that caught my eye was the following:
    "...These methods will not work with Internet Explorer on Macs. This lack of functionality is a brower issue with communication with plugins and cannot be resolved by anyone except MicroSoft. "
    I wonder if the same is true for Windows?
    Sabian

  • Quicktime plugin for screen capture does not work in flash player 11.2

    Hello,
                   I have created a quicktime plugin (it is .component file) for screen sharing purpose.
    I have used quicktime framework for that. plugin is detected in flash player.
    This plugin is working perfectly for flash player 11 and below.But,
    It does not working in latest flash player 11.2.
    I have seen following error on console -
    Google Chrome Helper EH[240:e92b] *** QTCaptureSession warning:
    Session received the following error while decompressing video:
    Error Domain=NSOSStatusErrorDomain Code=-8974
    "The operation couldn’t be completed. (OSStatus error -8974.)".
    Make sure that the formats of all video outputs are properly configured
    Note - Compression format used in plugin is kBMPCodecType.
    Please, help me.

    The issue ended up being the change in resolution to my external monitor. Flash was unable to detect the proper coordinates of the color I was trying to select because I was running my monitor in HD mode rather than selecting an actual resolution from my monitor preferences. Changing the settings to an acutal resolution, instead of generic "HD mode" fixed the issue.

  • Built in isight camera not working with flash

    My built in isight camera on my macbook works just fine in photobooth and in skype or ichat.. but just in the past week or so, it will not work when im on websites that use flash. I've seen some threads that say that I need to go into settings and make sure that the camera chosen is the USB. When i go into flash settings, the only options are Google1, Google2, or Built in isight. It doesn't work with any of them. Does anyone have any idea how I can make it work again?

    zeppelinfan1234 wrote:
    I don't have google add ons. I followed the path but i have no Google folder in Application Support. Any other suggestions?
    Your problem is not the same as that posted by the OP, and your system info shows you using Mac OS X (10.5.6).
    For your symptoms with this system, I suggest you do the following:
    (1) Apply the 10.5.8 Combo Update using the following process:
      • Backup your Mac and turn off Time Machine
      • Disconnect peripherals and restart Mac
      • Use Disk Utility to repair permissions
      • Download and install
       http://support.apple.com/downloads/MacOS_X_10_5_8_ComboUpdate
      • Repair permissions again immediately following the restart that finishes the update.
      • Test whether Flash works for you now.
     (• Turn Time Machine on later when you are satisfied that the update worked.)
    (2) After applying the 10.5.8 Combo, if you are still having problems, download and install the latest Flash player compatible with your system:
      http://get.adobe.com/flashplayer/otherversions/
    Also check any other third-party browser plugins or other add ons. Apply all available updates and uninstall any third-party items that are known to be incompatible with your system.
    Message was edited by: EZ Jim
    Mac Pro Quad Core (Early 2009) 2.93Ghz Mac OS X (10.6.5); MacBook Pro (13 inch, Mid 2009) 2.26GHz (10.6.5)
    LED Cinema Display; G4 PowerBook 1.67GHz (10.4.11); iBookSE 366MHz (10.3.9); External iSight; iPod touch 4.1

  • The pdf security is not working in Flash Paper

    Is anyone facing a similar problem.
    The pdf security if applied with a passsword to select the
    text & graphics, printing, etc does not work. It selects any
    and every text in flash paper and pdf. Does anyone know how can one
    prevent to copy any text or graphics ...

    I have the same issue. My phone says the files are corrupt and they stay corrupt if I forward then from my phone. It like the phone checks for something in the PDF, when it never did before.

  • Captivate 5.5 not working with Flash 11.4?

    I had Flash 11.4 and published a module with click boxes that jump to URLs.  The click boxes don't appear in either preview or published mode.   No hand cursor, no click box, no URL, nothing.  I've double checked the settings on the click boxes three times... they are correct, and the box is the top most thing on the slide.
    Based on advice I found on this forum on other flash problems, I tried uninstalling Flash 11.4 and going back to 10.3.  Now every time I try to launch the module I immediately go to the Flash 11.4 download page, and get the message "this content requires Flash to play - download now".  So apparently you can't install an earlier version of Flash and use it with Captivate.
    Which isn't a solution anyway, because my I don't want my viewers to have to do that to take this training.  So what do I do?  How do I make these urls available?
    I won't waste my time calling Adobe support... I've made that mistake in the past.  I'm really hoping someone here can help me.  Upgrading to Captivate 6 isn't an option...it's not in the budget.   They need to make 5.5 work with Flash - it's not that old.  It's SO frustrating that every time there is a Flash upgrade I have problems with this stupid software.  If they are going to publish to Flash, they need to keep the software current.  They own both products for goodness sake - why don't they work together?   Please help!
    Thanks for your help.
    Toni Rexrode

    I doubt that Flash 11.4 is the cause of these issues.  Having Flash 11.4 installed on your box doesn't mean your end users will need it..  Captivate 5.5 and 6 will only publish as high as Flash 10.2.  So all your end users would need is that version or above.
    I assume when you say you have check the settings on your click boxes, you made sure you have them configured to show the hand cursor?  If this is not turned on then the normal mouse pointer is all that will be visible.  But I'm betting you've checked that already.
    What you may not realise is that sometimes Captivate will APPEAR to show your click boxes are on the top layer of the timeline when you look at it in Edit mode, but in fact they may be buried down under other objects in the layers and NOT be clickable at runtime.  This has caught me out a few times.
    To ensure that your clickboxes ARE on the top layers, select each click box in the timeline and then click the icon on the main toolbar to Bring Selected Objects to the Front.  Then publish and test again.

  • Arrays not working in flash lite

    I could not get a multidimensional array to work in flash
    lite, then tried a regular array - it is not working either.
    This code works:
    var myVar;
    myVar = 5;
    answer_true_button_btn.onPress = function() {
    points_txt.text = String( myVar );
    This code does not work:
    var myVar:Array = new Array(5);
    myVar[0] = 5;
    answer_true_button_btn.onPress = function() {
    points_txt.text = String( myVar[0] );
    Now do multidimensional arrays.
    I have tried in Flash Lite 2 and 2.1.

    Here was the problem: I had ActionScript 1 selected (even
    though Flash Lite 2.1 was selected in the "Version" box) in the
    publish settings. Apparently, you write in AS 1 or AS 2, and
    publish in Flash Lite x.x.
    Flash Lite 1.1 does not support arrays, except for the latest
    version.

Maybe you are looking for

  • html:textrea is not rendering

    I have a simple struts jsp page. All the controls are properly displayed but the below code to display textarea is not working. i mean, text area is not rendered (displayed) also, in the view source, the same appears instead of HTML version. Struts c

  • G4 MDD Dead?

    Installed two new DVD-writers yesterday (Pioneer DVR112). When I restarted, I noted that the jumper settings were wrong (both drives opened when I hit Eject!), so I powered-down and changed the drives to Cable Select. When I tried to restart, the pow

  • Can't download music on to my iPhone 6

    When I go to sync music from iTunes to my new iPhone 6 i can get the bar to show all the music I want on there. Then it goes through the download and none of the music goes to my phone.

  • New Subscription with existing subscription

    Hello, I want to avail a new 400 Minutes call to India/per month subscription. Presently I am using the 60 minutes/month subscription. When I am trying to avail it show a message that It will overlap your current subscription. I would like to know if

  • How to split an A3 page to two A4 pages?

    Hello, I need to scan an A4 booklet to upload, but I cannot cut it in order to have a bunch of pages to scan. Therefore I'm scanning it spread on a fladbed scanner, resulting in a series of A3 spreads. How can I split these A3 pages into two A4 pages