SEO step question

I think my problem is to do with referring to the scene, but not sure.  When I try

var screen:Sprite = new Sprite();
screen.graphics.beginFill(0x111111, .75);
screen.graphics.drawRect(0,0, stage.stageWidth, stage.stageHeight);
screen.graphics.endFill();

I get the error

TypeError: Error #1009: Cannot access a property or method of a null object reference.

If I change stage.stageWidth, stage.stageHeight to numbers, it works fine.  So I think that the problem is to do with referring to the scene.  Whats confusing me however is that if I put what precedes a number, later in my code I

TweenLite.to (loaderHolder, 1, {x: (stage.stageWidth - loaderHolder.width) / 4, y: (stage.stageHeight - loaderHolder.height) / 6, onComplete:zoomInFinished, scaleX: 1, scaleY: 1});

So I'm referencing the scene here.  However, it works without problem.

If it makes a difference, I work within a movieclip that is in my library and added to the scene on the main timeline.  In this clip, I do things like stage.addChild, so it works without problem.  Why the first bit of the code could throw a null reference error?

see you soon

because you are trying to reference the stage before before your item is added to the display list.  to remedy this, use the addedtostage event before trying to make reference to the scene.

Tags: Adobe Animate

Similar Questions

  • Feature of blogging in June 2015 update Muse... Incorporation of blog, private blog and SEO implication questions.

    After reading this link by adobe, it seems that there is a work around for the performance of a muse blog. This method involves a blog already running, and just incorporating a RSS feed on a website muse.

    My question is simple. How do you create a WP, Eblogger, or any blog CMS so that it cannot be found anywhere, but on the site of muse? On another discussion I found that the custom of the RSS feed method works on a private blog. How to prevent people to access the blog site and instead to send them directly to the version of the blog muse?

    Finally, what are the implications of the RSS SEO - lies a blog in a muse Web site?

    Thank you

    How to prevent people to access the blog site and instead to send them directly to the version of the blog muse?

    You can not. A stream is just another URL, and once known, people and search engines may do with it what they want.

    Finally, what are the implications of the RSS SEO - lies a blog in a muse Web site?

    No, because the food belongs to the blog, not the site of Muse.

    Mylenium

  • First three steps Questions with RV180

    I recently bought the router RV180. I have a few quick "getting started" questions about its use:

    1. is the "static DHCP" screen I need to use in order to reserve addresses DHCP (see attachment)? That's where I was reserving all my DHCP addresses with. I'm just that I have the correct screen.

    2. what I have to do something for my setup of "backup", or my settings will always be around every restart of the RV180?

    3. I have to run a check on the RV180 firmware update and how can I update the firmware on the RV180 (as well as the SG200-18), or it usually comes with the latest out-of-the-box firmware? If I get ahead and put a contract on the RV180 and the SG200-18 service, will I automatically receive my updates? Are numbers of reference for service contracts the same for the RV180 and the SG200-18?

    Thank you!

    Hello

    1. is the "static DHCP" screen I need to use in order to reserve addresses DHCP (see attachment)? That's where I was reserving all my DHCP addresses with. I'm just that I have the correct screen.

    Yes, this is the right place to set DHCP reservations.

    2. what I have to do something for my setup of "backup", or my settings will always be around every restart of the RV180?

    Whenever you click on save after completing a change you configuration is saved and will survive a reboot.

    If you want to save the backup copy of your file from your Setup simply go in Administration > backup/restore settings.

    3. I have to run a check on the RV180 firmware update and how can I update the firmware on the RV180 (as well as the SG200-18), or it usually comes with the latest out-of-the-box firmware? If I get ahead and put a contract on the RV180 and the SG200-18 service, will I automatically receive my updates? Are numbers of reference for service contracts the same for the RV180 and the SG200-18?

    You must manually update the firmware of the RV180.  This firmware is available here:

    Firmware RV180

    It is simply a file, you download under Administration > Firmware Upgrade.  There is no bootcode for routers (as if he was with the switch)

    You can find this in the future in the same way you SG200 firmware (because this link may change) on Cisco's Web site.

    Regarding the service contract, the part number for two of these machines will be CON-SBS-SVC2.

    Hope that helps and I will try to get to your other questions sometimes today as well.  Also since you have purchased you are of course welcome to call and get support by phone, your two devices come with 1 year of technical support, and it looks like you have found or contracts, so I guess that make only 3 years.

    Cisco Small Business Support Center phone numbers

    Thanks again for choosing Cisco,

    Christopher Ebert - Advanced Network Support Engineer

    Cisco Small Business Support Center

    * Please note the useful messages *.

  • SEO step through Flex component Flex made in Flash

    Hello. I'm developing a component Flex in Flash CS4, called Navigator. The browser is just a slider (I'll use the slider to zoom in on something). It consists of a MovieClip with a child MovieClip named "magnifying glass" that is the cursor handle. Here's the class browser:


    package {
    import flash.display.MovieClip ;
    I have
    mport flash.events.Event
    import flash.events.MouseEvent
    import flash.geom.Rectangle
    Import mx.flash.
    UIMovieClip;

    public class Navigator extends {UIMovieClip}
    private var _dragging: Boolean ;
    private var _zoom: numberof;
    public var _bounds: Rectangle ;

    public void {Navigator()}
    _dragging = false;
    _bounds = new Rectangle(68,22.5,100,0);
    _zoom = 0;
    this.magnifier. buttonMode = true;
    this.magnifier. addEventListener (MouseEvent.MOUSE_DOWN, startDragging);
    stage. addEventListener (MouseEvent.MOUSE_UP, stopDragging);
    }

    private function startDragging (event: Event):void {}
    this.magnifier. startDrag (false, _bounds);
    _dragging = true;
    }

    private Function stopDragging (event: Event):void {}
    if (_dragging is true) {
    this.magnifier. stopDrag ();
    _dragging = false;
    _zoom = ((loupe. x-68) * 100) /(168-68);
    dispatchEvent (new event("zoomChanged"));
    }
    }

    public function get zoom(): {number }
    Return _zoom;
    }
    }
    }

    This code works on Flash, but in Flex I get this error "TypeError: Error #1009: cannot access a property or method of an object. null reference '-on the red line. Probably because it refers to the Flex and not Flash. It's my MXML Flex component:

    <? XML version = "1.0" encoding = "utf-8"? >
    < mx:Canvas "" xmlns:mx = "http://www.adobe.com/2006/mxml" width ="220" height = "64"creationComplete = "init ()" >
    < mx:Script >

    <! [CDATA]
    Import flash.display.MovieClip;
    Import mx.core.UIComponent;

    privé var UI:UIComponent = new UIComponent();
    privé var : browser = new Navigator();

    public f anointing init():void {}
    navigator.addEventListener ("zoomChanged", onZoom);
    ui.addChild (navigator);
    this.addChild (IU);
    }

    public function onZoom(event:Event):void {}
    trace (navigator.zoom);
    }
    []] >
    < / mx:Script >
    < / mx:Canvas >

    The purpose of the internship is the same for Flash and Flex.  It is not available in

    Flex after APPLICATION_COMPLETE or ADDED_TO_STAGE.  And in general, it

    better not to add listeners as MOUSE_UP until needed.

  • Flash SEO optimization question

    I developed a site entirely in Flash MX 2004, with the plan to manage the people that I would be network with at the my web site by word of mouth. Since then, I decided it would be wise to optimize my site so that people could find by google, the search as well, so I see two roads to go: 1) develop a recipricol with dreamweaver site using html and create a referral page that people can choose to enter in the full flash site or the normal non flash version. (2) somehow optimize my site flash by means I have yet to discover.

    I see clear benefits to the options and inclination towards the concept of dual site, but anything you can let me know my options would be greatly appreciated!

    You can register your site with Google and they you will have to create a site map, upload to your server so it is parsed more easy... you can also integrate your site using SWFObject, that will help... In addition, use the right metatags and keywords...

  • How to install the new hard drive and windows key?

    Hello

    I have a aspire v5-121-c72g32nkk.
    I have just updated to Windows 10, don't panic, but I want to upgrade my HD drive to a SSD drive.

    You can find the steps to do this?
    Windows was preinstalled, how I reinstall on another drive?
    I have no serial key or whatever it is.
    I'm a bit lost, you have an idea?

    Best,

    There are several ways to do this, anyone have product keys, since

    If you want to do a clean install:

    Windows 7-8 - 8.1 keys are embeeded on your BIOS

    Windows 10 use a generic key during the upgrade, so just skip the steps questions about a product key and the first time you connect on the web, it will authenticate to.

    You must decide:

    (1) do a clean install of your operating system to factory

    (2) make a disk - image of the system image and reload

    (3) to do a clean install of windows 10

    option 2 is the fastest at the end, as you create a copy of your HARD drive and reload it to your PC.

    you need a bootable windows 10 (USB or DVD) media and little space on external HARD drive.

  • you need give the administrator permission to copy

    New windows 7 Home Edition premium install on hard drive formatted, i7-2600 12 g RAM

    trying to copy/save other readers on the system, I get the error
    you will need to provide administrator permission to copy, save, etc. this file
    I'm going to properties\security to the drive, make sure that my user (the only user of the system) as a "full" permissions -same error.
    I go to properties\security\advanced\owner and change myself to the owner of the car - same error.
    Any other ideas?

    Hello

    Refer to the suggestions suggested by Vijay B clicking on the http://answers.microsoft.com/en-us/windows/forum/windows_7-security/how-to-restore-default-security-permissions/ab58f918-da72-42c0-ba71-161d52b73d46link. If after completing the steps question persists, an update accordingly and we will help you to solve.

  • How recovery works after an online backup

    Hello

    Although conceptually tent understand how backup and restoration works, I stumbled upon a question about the hot (on-line) backup.
    It is a conceptual question (I'm trying to understand how things work), is not a ' how can I do / what should I do step by step "question.

    As far as I understand, an online backup of a tablespace can be done by copying files operating system place a tablespace while the database is in place and used (i.e. transactions are changing data in the database). Before the copy of the operating system starts, the Oracle RDBMS should be informed that an online backup is taken through 'ALTER '.... BEGIN "(such as additional information are written to the log again, that may be required for subsequent recovery using the backup online BACKUP). During recovery, the Oracle RDBMS uses copies of the OS as well as the line and archived files redo logs in order to rebuild all committed transactions and it uses more (uncommitted) transactions ongoing restoration UNDO tablespace.

    Think about it, it seems to me that, so that it works in all possible scenarios to cancel it, information from moment has been the backup may be required. So the UNDO tablespace backup suits as well (see the explanation of this assumption below). However browsing the internet (including the Oracle online documentation) I find all instructions for the backup of the UNDO tablespace when an online backup is taken. More I couldn't understand when exactly such a backup of the UNDO tablespace must be done to ensure that the database can be retrieved in all scenarios.

    I believe that the cancellation as soon as the last hot backup information can be held for example in the following scenario:
    Suppose we take a backup of a given tablespace hot, i.e. we copy all files of the OS that make up this tablespace, while the database is potentially used. Either D1 one of the data files in the space of our table and let the T1 transaction change datafile D1. Allow transaction T1 still be engaged during the copy of datafile D1 are made and allow of (at least part of) T1 changes included in backup D1' D1 (because DBWR has already written the changed blocks to the moment where they have been copied to the backup). Allow transaction T1 be restored once the copy is complete. D1' will therefore include changes in T1, while D1 do not.

    Now some time later, the D1 data file is lost. When you get the copy of D1 D1 ", recovery logs (archived) apply to D1. Before that, transaction T1 must be restored in the copy of D1 ", because changes to the T1 should not appear in the version retrieved from the database.
    I have however not, understand the information in the statement rollback transaction T1 out exactly. It can still be in the current UNDO tablespace. I guess however that rollback information is not maintained in the UNDO tablespace forever. I see three possible answers to this
    (a) there are some requirements that missed me so far for the backup UNDO tablespace whenever a hot backup is found.
    (b) given that the Oracle "RDBMS" must be notified that you made an online backup, it can store all the information relevant cancellation (e.g. write it in the redo log) when the tablespace is put in backup mode.
    (c) there are situations where recovery is not possible due to the "old UNDO information missing.

    Answer (b) seems the most plausible to me. However, I found no confirmation of this and if (b) is really the answer, I'd be interested to understand what information is stored where by the RDMBS Oracle and how it is used for recovery.

    To summarize, I have the following questions:
    (I) is there any obligation to save the UNDO tablespace and an online of a tablespace backup, and if so, where is this stated in the Oracle documentation?
    (II) mechanisms to ensure that uncommitted transactions can be identified the copy a tablespace online (potentially very long once the copy has been made)?
    (III) you know all the links (Oracle documentation or other online resources) explaining these datails?

    Thank you for any advice and answers
    Kind regards
    Martin

    However I don't see how T cancellation of transaction information can be recovered without such a backup of the UNDO tablespace

    Taking your scenario that only datafile D is lost and only this data file must be restored when the loss is discovered in time t8:

    At the time the restored datafile D t9 is from t4.

    However, Oracle notice now that, while the rest of the database (i.e. all the other data files) from t9, this data file is from the t4. This cannot be permitted (a data file cannot be inconsistent with the rest of the database unless it is offline). That's why Oracle requires you to RECOVER DATAFILE D.
    Get it BACK then if applies to all again them (archivelogs) T4 starting until t9 that relates to this data file.
    The price drop happened in the t6 is also re-played - of the redo (no cancellation). {Don't forget that again picking up all of the changes, including restorations! so the cancellation at the t6 was also captured in it again!}
    For example, the data file is presented in a consistent state without having to redo cancel them.
    No matter if the information contained in the cancellation had been released and crashed between t6, t8 and t9.

    When Oracle made a recovery of media to a data file, there no need to cancel - media recovery does not care if the blocks are table, index, LOB, transactions, commits, restorations; It was simply a record physical of all the changes.

    PS: This has nothing to do with what version you use V6 11.2
    If the tablespace is called 'UNDOTBS1' or 'RBS' is irrelevant.

    Hemant K Collette
    http://hemantoracledba.blogspot.com

    Published by: Hemant K grapple Sep 28, 2010 22:16

    Published by: Hemant K grapple Sep 28, 2010 22:21

    Published by: Hemant K grapple Sep 28, 2010 22:22

  • Step 2 verification question

    I have recently implemented stage 2 verification for my Apple ID. I get a text Message whenever I connect to my Apple account. The other day, I created iCloud and now when I connect to my Apple account on my mac I get the code on my mac. Is this normal?

    For Apple ID - Apple Support two-factor authentication

    Frequently asked questions about the audit in two steps for Apple ID - Apple Support

  • I recently dropped my laptop and it is weird, one day he int open up to 4 start times and sometimes it shows me a folder and a question mark in the interface and sometimes asked to reset my password, what are the steps to take?

    I recently dropped my laptop and it is weird, one day he int open up to 4 start times and sometimes it shows me a folder and a question mark in the interface and sometimes asked to reset my password, what are the steps to take?

    Anything can be corrupted on your MacBook Pro, but from what you say, it seems that the cable drive/SSD/flash memory/SATA hard was seriously damaged. Him "question mark" means that your Mac is unable to find any bootable device, meaning that it does not yet detect your OS X drive.

    You should make a backup of your files (if you can still do it) and take the Mac at the Apple Store or dealer to get a diagnosis. There may be several damaged parts.

  • Questioning the DataCardSet members using Cloud Connector API program steps

    Hello people,

    I have a very simple question about cloud connector API. For not writing something in epic proportions, I've attached a screenshot of the issue, and a couple of issue I for its.

    I hope that someone out there has an answer.

    Thank you

    -Philippe Mougin

    Have you tried to build two programs, one with the default contact type, with the default value for the type of data card and tried to use two steps of the program?

    We have customers using connectors of cloud against data card programs.  The joint program and step (contacts and data cards) may be the cause. Try it and let me know.

    Aaron.

  • vCenter device vcsa - step.html question

    Hi all

    When I try to launch vCenter device vcsa - step.html I get this error that is given in the attached screenshot even I installed the plugin for customer integration, but the question is always the same. Any help will be appreciated

    Solution was the installation of the Plugin VMRC installation that was missing.

  • Adobe Muse - questions SEO my site decommissioning

    Dear all

    I undertook a lot of SEO work with my own site Adobe Muse (before I start working on my clients sites later this week).

    All the scanners, webmasters etc. include the following:

    • Page - requests demand more HTTP s your site Internet, it becomes the slowest. Combine files to minimize the number of requests. How can you do that in Muse?

    • Compression - resources Compress JavaScript and CSS when possible to help your site to run faster... How is it possible in Muse?

    • Make block - delete or postpone JavaScript and CSS that interferes with loading the content above both. How is it possible in Muse?


    I'm not too confident to export websites in HTML and then use software to answer the above questions (which I assume is the only way to do it in Muse) that is to say reduce the etc.


    Surely the Muse developers should ensure that the sites are compressed/set up correctly when transferred via FTP.


    Anyway, to put this out there, but it's a serious problem for those who use the Muse who wants to rank really high on Google, Bing etc.


    Also webmasters etc. do not recognize the shapes on Muse or my blog which is inserted into an iframe Tumblr. Too, it's very bad for the referencing of sites. Does anyone have a solution?


    Help!


    See you soon


    Mike

    I don't see any problem. It's just generic stuff. None of this has nothing to do with the Muse se, in any case. Things like compression are part of the configuration of the server and refer to use of HTTP stream compressed, not packed files. Similarly, the number of page requests depends on how the server handles the workload. Of course Muse split different files for each page and create redundant duplicates is in cause, but none that makes the world come to an end, and it can always be optimized. Deferring scripts depends on their specific requirements, here again, it's a generic general statement, with little practical value. The rest, that nobody can answer without seeing things. Suffice it to say that the embedded content does not work is not really useful.

    Mylenium

  • Interface strange question - everything that we step back, evil framework presented in preview in the comp Viewer

    Hello

    I'm trying to fix a problem with After Effects CS6 that has appeared recently. The Comp Viewer seems to be rendered behind which sits the playhead of a picture. For example if I use PageUp and PageDown move forward and backward between frames, the frame that appears is the previous frame to that indicator sits to the timeline. As soon as I hit the previous or following once again it shows the frame which would have disclosed last.

    Also if I use the mouse wheel to zoom in/out of the comp Viewer, it also accused a step behind, i.e. to zoom, nothing happens... Zoom again, zoom to the 1 step... To zoom out, zoom IN another step... To zoom out, zoom 1 step.

    Everything works perfectly until I recently updated to Quicktime, Nivida pilots and adjusted some parameters for another program (Cubase) to work with the video. After that, I was unable to get After Effects works again. The strange thing is that I now properly installed Windows 7 and tried running AE at different stages (print drivers and version of QT), then updated everything (including all Adobe, graphics drivers, Quicktime products) and I have exactly the same problem on all points. CS6 is currently the only program on the computer.

    I tested this problem with. R3D (Red camera) files with H264 'normal '. MP4 files. I also tried to use the files from an external drive. Exactly the same problems in all cases.

    Data sheet:

    Windows 7 64 bit

    16 GB of RAM

    2 x Nvidia Quadro FX1700

    Help would be greatly appreciated that I can't find anyone else encounter this problem.

    Thank you very much

    Ben

    SOLUTION:

    I diagnosed the problem; It relates to the use of dual screen with two separate graphics cards. The problem can be tested for by race AE full-screen on one monitor, then the other. The question should be on one of the two screens. Once sent, I was able to run AE on each screen OR spanning the two without problem.

    TO SOLVE:

    After effects CLOSED, open Nivida Panel and select 'manage 3D settings '. Choose "Open GL made GPU" in the list of options and select 1 of the 2' or 2 of 2' but not 'Auto '. Apply the changes and the re - open After Effects.

    I very much hope that that someone saves some time!

    Ben

  • Quick SEO question - new domain

    Just a quick and I'm sure that the answer is a resounding no, but wanted to check I'm someone give the right info.

    Basically, someone I know has a site for a company and had a falling out with his partner, who threatens to take down the site.

    Then the other guy wants to make a copy of the site to a new domain that he has a master's degree.

    So the question is will be the new site / domain keep / inherit all rankings SEO of the site existing under it is the same exact content?

    As I said, I would be sure that the answer is no.

    It would be only if the domain name is the same. Who has control of the domain name? That's who is listed as the owner of the domain for the domain name?

Maybe you are looking for