Is it possible to goto a scene or frame based on URL?

If I have a Flash movie with several scenes that I want to
use as different "pages" on my site, rather than creating 4
versions of this file with "gotoAndStop("scene2",1) at the
beginning of the page to get it to the right place...
Is it possible to have the Flash movie automatically goto a
specific scene (or frame) based on what the URL, or perhaps the
HTML in the page says?

yes. you can use the _url property of movieclips to detect
the swf file name and you can use the externalinterface class and
javascript to detect the html file name.
but don't use scene info for navigation and don't use the
goto functions. use frame numbers or labels and the goto
methods.

Similar Messages

  • Is it possible to dwnload a file from web with given URL into our local sap

    Hi every Body!
    Is it possible to download a file from web with given URL into local PC with abap.
    thanks
    vikram.c

    hi
    good
    go through this link, i hope this ll help you solve your problem
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f5d3c40a-0801-0010-55b7-9e3b01745a40
    thanks
    mrutyun^

  • Is it possible to automate wifi "on" and "off" based on geofencing

    Is it possible to automate wifi “on” and “off” based on geofencing so that it only turns on wifi when I am at home?  I  don’t want it connecting to Karma/pineapple router at Starbuck’s?  If I understand correctly when wifi is turned “on” my phone is constantly probing and asking networks if they are my home network and Karma will respond that it is.  I’m not sure how Karma handles WPA If my Phone expects the network to be secure,  but I don’t want my phone handing out my e-mail password, so I’d feel better if it automatically switched to cellular when I leave the house.

    SWF file is a compiled code. This means that it comes in form of encrypted code and needs its own interpreter - Flash player plugin. As Ned said, no other program can see compiled code. Browser sees only <object> and it positions it according to DOM architecture. Firebug is a proxy that is capable to display network requests along with DOM architecture, JS, and CSS. Firebug has no access to SWF code either.
    If your question is about how to expose particular parts of your application - the way to do that is to implement traces inside Flash. These traces can be output in some debugging software (for instance FlashTrace) at runtime. But, again, these tools cannot see more than traces.

  • Is it possible to remove blemishes from video frames with photoshop cc?

    Is it possible to remove blemishes from video frames with photoshop cc?

    Again, show us reference screenshots and we will advise. Otherwise this could become an endless theoretical discussion. Depending on what you want to do you can import the video directly using Layer --> New Video Layer e.g. when covering up fied spots with a brush blob on a layer on top of the footage, but you may also need to create separate layers for each frame using the Frames to Layers script so you can paint on each of them individually. There's really too much we don't know and the possibilities are potentially infinite...
    Mylenium

  • Is it possible to get the updated table records based on date & time.

    Is it possible to get the updated table records based on date & time in oracle.
    Thanks in advance.

    no, actually i am asking update records using 'UPDATE
    or DELETE' statement, but not insert statement.
    Is it possible?
    I think we can do using trigger on table, but problem
    is if i am having 20 tables means i have to write 20
    trigger. i don't want like this.Of course it's still possible, typically you'll find applications with a column LAST_UPDATE, probably a LAST_UPDATED_BY and so on column. You don't say what your business need is, if you just want a one of query of updates to particular records and have a recent version of Oracle, then flashback query may well help, if you want to record update timestamps you either have to modify the table, or write some code to store your updates in an audit table somewhere.
    Niall Litchfield
    http://www.orawin.info/

  • Error #1009 when switching scene or frame.

    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at map_fla::MainTimeline/limit()
              at map_fla::MainTimeline/moving()
    here is my code
    backS1.addEventListener(MouseEvent.MOUSE_DOWN, goS1);
    function goS1(Event):void{
            gotoAndStop(1, "Scene 1");
    F5.addEventListener(MouseEvent.MOUSE_DOWN, gotoF5);
    function gotoF5(Event):void{
            gotoAndStop(5);
    var toR:Boolean=false;
    var toL:Boolean=false;
    var toU:Boolean=false;
    var toD:Boolean=false;
    stage.addEventListener(KeyboardEvent.KEY_UP, notClick);
    stage.addEventListener(KeyboardEvent.KEY_DOWN, onClick);
    stage.addEventListener(Event.ENTER_FRAME, moving);
    function onClick(event:KeyboardEvent):void {
        switch (event.keyCode) {
        case Keyboard.RIGHT :
            toR=true;
        break;
        case Keyboard.LEFT :
            toL=true;
        break;
        case Keyboard.UP :
            toU=true;
        break;
        case Keyboard.DOWN :
            toD=true;
        break;
    function notClick(event:KeyboardEvent):void {
        switch (event.keyCode) {
        case Keyboard.RIGHT :
            toR=false;
        break;
        case Keyboard.LEFT :
            toL=false;
        break;
        case Keyboard.UP :
            toU=false;
        break;
        case Keyboard.DOWN :
            toD=false;
        break;
    function moving(event:Event):void {
        limit(map);
        if (toR) {
            map.x-=5;
        if (toL) {
            map.x+=5;
        if (toU) {
            map.y+=5;
        if (toD) {
            map.y-=5;
    navU.addEventListener(MouseEvent.MOUSE_DOWN, goU);
    navD.addEventListener(MouseEvent.MOUSE_DOWN, goD);
    navR.addEventListener(MouseEvent.MOUSE_DOWN, goR);
    navL.addEventListener(MouseEvent.MOUSE_DOWN, goL);
    navC.addEventListener(MouseEvent.MOUSE_DOWN, goC);
    function goU(Event):void{
        map.y += 25;
    function goD(Event):void{
        map.y -= 25;
    function goR(Event):void{
        map.x -= 25;
    function goL(Event):void{
        map.x += 25;
    function goC(Event):void{
        map.x = stage.stageWidth/2;
        map.y = stage.stageHeight/2;
    map.addEventListener(MouseEvent.MOUSE_DOWN, Drag);
    map.addEventListener(MouseEvent.MOUSE_UP, Drop);
    map.addEventListener(MouseEvent.MOUSE_OUT, Drop);
    function Drag(Event):void {
        map.startDrag();
    function Drop(Event):void {
            map.stopDrag();
    function limit(o:MovieClip) {
       if (o.x + 364.5 < 500) {
           o.x = 500 - 364.5;
       else
       if (o.x - 364.5 > 50) {
           o.x = 50 + 364.5;
       if (o.y + 309.5 < 375) {
           o.y = 375 - 309.5;
       else
       if (o.y - 309.5 > 25) {
           o.y = 25 + 309.5;
    when I run my code, it's going well. the problem when I switch to another scene or frame it shows error #1009 and become lagging. but the code can still running. I dont know where the problem is. I'm totally noob. ty in advance.

    One way would be to remove the event listener that calls the moving function whenever you leave the frames where map exists...
    stage.removeEventListener(Event.ENTER_FRAME, moving);
    Another option would be to test for the existence of map in the moving function before you execute any code that targets it.

  • Edit Scene Time Frame Count

    Created a new file & new layer with 300 frames.
    Only used 150 frames for the animation.
    How do I edit (trim) the scene / project down to JUST the frames I need (ie 300 to 150) prior to export as swf?

    When you create a new layer in a file, you don't automatically create a fixed number of frames in that layer (unless this is something new I have never heard of, which is always possible).  Whatever you publish should only incorporate the timeline that you have populated with content/frames.
    Again, if you can take a screenshot and show what you are describing, it may help clear things up.

  • Is it possible to show the same repeating frame in 2 columns?

    Hello, and thank you all in advance for any help!
    Here is the situation:
    I have simple report with 1 repeating frame and 3 data columns in it.
    I want to be able to have a second column on each page that continues the data from the repeating frame. That is to say, one the left the data would go from top to bottom like normal, then instead of going to page 2, it would go into a column to the right on the same page.
    The repeating frame is small enough to fit at least 2 of them horizontally.
    I cannot seem to find the way to make this layout work. Is it possible?
    Thanks again,
    -Arin

    Nevermind everyone!
    I got it to work with Print Down/Across...silly me.
    Thanks anyway!
    -Arin

  • Is it possible to addChild on a specific frame?

    If I have a symbol and I want to add that child to the stage at the symbol's second frame, is it possible to use addChild to do this? How?

    yes and no.
    you can create an on-stage movieclip in the 2nd frame of your symbol and apply addChild to that d.o.container.

  • Possible to use menuBar with task flow based ADF menus?

    Hello -
    I've just worked through the " [Create ADF Menus for Page Navigation|http://www.oracle.com/technology/products/jdev/11/cuecards111/adf_set_43/ccset43_ALL.html] " tutorial. It shows how to create menus based on your task flows.
    My question: is it possible to use the af:menuBar with these menu models (instead of navigationPanes or breadcrumbs) ?
    I am using JDev 11g 11.1.1.1.0
    Thanks.
    Edited by: scott.turnquist on Nov 5, 2009 12:07 PM

    Hi,
    The XML menu model extends the Trinidad TreeModel, which extends Collection model. This allows you to access the hierarchical menu structure so that you can use af:iterator to build a structure to display in a af:menuBar
    Frank

  • Is it possible to create a cisco config file based on a polycom config file?

    Hello,
    We have 12 spa509g phones that are barely working with our provider (voxox).
    My provider gave me the config files that are used to set up polycom phones as those are the only phones they support.
    Features that currently work: incoming calls, outgoing calls, blind transfer, voicemail, call hold
    Features that do not work: call presence - solid orange lights, attended transfer, paging 
    I've upgraded the firmware to 7.5.6 and configured the phone through the GUI as much as i can but I can't seem to enable the above features.
    Any help would be highly appreciated as I'm about to buy polycom phones if we can't figure the configuration out.
    Attached are the configuration files from voxox concerning polycom phones. confidential data says "removed"
    If anyone thinks that this is possible, I can send a copy of my current cisco configuration file. 
    Thanks,
    Philip

    Well, I have no polycom phone, not I have personal experience with voxox. I wish the following document may help a lot - it describe Polycom configuration somewhat. As you have no Polycom, you have no current <mac>-directory.xml. So you don't know the device name you should subscribe to. But it seems to be a DID-number.
    Just try it.
    On the other side, ask Voxox for help. Don't ask for configuration files, ask for configuration instructions expressed in terms of the SIP protocols. Consider switch to more friendly and technically skilled VoIP operator if they will not understand what the SIP stand for ...
    By the way, wrong forum. Your issue has nothing to do with XML Phone Application interface. I'm not sure someone will respond you here.

  • Is it possible to have two Overhead rates-one based on Material and one based on direct labor?  I am implementing a SAP Business 1 System.

    Is it possible in SAP business one to have two Overhead Rates-- one based material cost and one for direct labor dollars?

    Hi Dick,
    Business one experts will be available on Business One forum and not  here (Accounting and financial close). Click on the below link and start a discussion. Good luck.
    SAP Business One Application
    Thanks and regards
    Sam

  • How can I perform a "jump" or a "goto" from a sequence frame to a previous one?

    At a point of my program, I need to jump from a sequence frame to a previous one. How can I do it?
    Thank you.

    Hi
    That is not possible! You cannot jump from one frame to another frame. A workaround is to replace a sequence structure with a case structure insight a while loop. When you wire the iteration terminal of the loop to the selector terminal of the case structure you have a "sequence structure" with the advantage to stop it in each frame. Returning to your question: Work with a state machine approach! For that you need a case structure insight a while loop with a shift register! So you can always say what the next frame must be.See under the VI templates for an example! => National Instruments\Labview\templates\state machine.vit
    Regards,
    Luca

  • Possible to use Web Cache to map sites to URL?

    We've just installed Collaboration Suite 10g. We'd like to setup public URL's to point to different components of OCS. I've already configured our public URL's to point to the OCS Application Server, but I want to take it one step further and configure them to map directly to the specific component.
    Examples (Current Behavior):
    http://meeting.company.com:7778 maps to http://ocs.company.local:7778
    The behavior I want is:
    http://meeting.company.com:7778 mapped to http://ocs.company.local:7778/imtapp/app/prelogin.uix
    Is this possible?

    This should be possible:
    http://download-uk.oracle.com/docs/cd/B14099_17/caching.1012/b14046/intro.htm#i1041096
    You can also do it at HTTP Server level (redirect or rewrite) or with an index.html file that redirects the user.

  • It's possible to set the number of frame?

    It is recommand to set the number of channels as low as possible, and it is easy to do. But it is recommended to decrease the number of frames? If yes, how can i do it? It seems to me that the manuals do not mention this aspect.
    Thanks.

    Yes but if it is so why it is recommended to set the numbers of channels as low as possible?
    It is sure that is not possible to to set the number of frame? I remember that long time ago  maybe I find something about how to set the frame's number, but
    it is possible that I'm wrong. 
    Thank you.

Maybe you are looking for

  • Data Recovery from an encrypted Time Machine HD

    Does anyone have eny experience with having data retrieved from a time machine hard drive that is encrypted? I've clean installed Mountain Lion and now can't get at my time machine to restore files. Apple support recommended I posted here and explore

  • How to OCR an image embed in a pdf page that already has some text?

    I have a pdf page that has both texts and an image on it. I can not run OCR on the whole because I see the following error message. Acrobat could not perform recognition (OCR) on this page because: This page contains rederable text. Is there a way to

  • Iphone 5c time and date not working right

    hi guys I would really appreciate your help if you have any information or similarities on this. I have an iPhone 5c and the date and time are both lacking, I don't know what is wrong and can I fix it? its also messing with my 3g and wifi thanks, gem

  • Link Problem While Using Libdb Built by Myself

    Hello, Do you have any idea why I could not use libdb which I built myself? The application crashed as: (gdb) p envp->set_cachesize $3 = (int (*)(DB_ENV *, u_int32_t, u_int32_t, int)) 0x7fe829167c80 <__env_set_errpfx> (gdb) p *envp $5 = {db_errcall =

  • "original file could not be found" message for all music files in library

    So, after spending all day trying to figure out how to recover my library of music after this stupid upgrade (like so many other people, I see) I now not only am missing a lot of the newer music I purchased, but now an "!" appears in front of all my