How do I open one .mxml from another?

I suppose I would make a "link" some how, just like in an html page.  What would the URL look like?  What is the ActionScript command to open that other .mxml file?  (Which may be a form or just another page)
Thanks in advance.

to open another .mxml file within your project? Like a sub window within your main app? You can do it as a popup;
      var win:[MXML FILE NAME] = PopUpManager.createPopUp(this, [MXML FILE NAME], true) as [MXML FILE NAME];
      PopUpManager.centerPopUp(win);
or, if it's a completely different app you're trying to link to;
navigateToURL(new URLRequest('http://wherever/the/compiled/html/is.html'),'_self');
quite unsure about what exactly you want though...

Similar Messages

  • My slide presentation (with sound) is done. How can I change one song from another?

    My slide presentation (with songs) is done. How can I change one song from another?

    Do you still have your Aperture Slideshow project? Then open the slideshow and select the one of the green audio file clips in the film strip that you want to replace. Press the "delete" key and drag another audio file from the Media Browser directly onto the slide, where the sound should start.

  • HT3529 How do I disconnect one iphone from another iphone's iMessage?

    How do I disconnect one iphone from another iphone's iMessage?

    He needs to get his own Apple ID.
    Have him logout from your Apple ID at settings>>iCloud .
    He should then set up his own Apple ID.

  • How can I see one mac from another mac?

    I have two macs, an imac at home and a MBPro.
    If I have them both at home, how can I see one Mac´s hard drive from another?
    Is this possible? with back to my mac??
    thanks
    J

    Do you have a home network?
    Personal File Sharing: You can connect Macs on a local network with Tiger’s Personal File Sharing, which allows you to mount folders from the sharing Mac on the master Mac—note that the slave Macs do the sharing; the master Mac doesn’t have to. To turn on Personal File Sharing on the slave Mac, do this:
    Open System Preferences.
    In the System Preferences window, click Sharing.
    In the Sharing pane, click Services.
    In the Select a Service to Change Its Settings list, select the Personal File Sharing checkbox.
    Now that the slave Mac has sharing turned on, you can mount it on the master Mac’s Desktop:
    In the Finder, choose Go -> Network.
    In the Network window, select the sharing Mac.
    Click Connect.
    In the Connect to Server window, click Registered User, enter the user account name and password for the sharing Mac, and then click Connect.
    In the window that appears, select the volume that contains the folder you want to sync with, and then click OK.
    LN

  • How do I subtract one sum from another and show a balance in another box

    In numbers how do I show the difference in total from one column and another as a balance amount?

    =SUM(range_one)-SUM(range_two)
    Details available in iWork Formulas and Functions User Guide.
    Yvan KOENIG (VALLAURIS, France) samedi 9 juillet 2011 15:45:36 iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • How can i call one report from another report (Drill Down Approach)

    Hi Friends,
    I've two reports in completely different layout format.
    One is in Crosstab & another is in Tabular.
    Now i want to call my Tabular report(report 1) from my Crosstab (report 2) without using BO's default drill down feature. Or, you can show using BO's feature if it supports my requirement.
    How to do that?
    Is it at all possible?
    Please share your thoughts. Thanks in advance for your time.
    Regards.
    Satyaki De.

    hi
    you can use openDocument for this.
    [http://help.sap.com/businessobject/product_guides/boexir31/en/xi3-1_url_reporting_opendocument_en.pdf]
    I would suggest to use variables that build the HTML code for the hyperlinks dynamically, and display them in your crosstab. Set the display option for the related cells (ie. the cells where your variables are displayed in) so that the cell's contents as interpreted as HTML code.
    Regards,
    Stratos

  • How do I open library file from another application?

    I'm trying to upload a picture from my IPhoto library to the internet. When the internet program asks me to name a file, I browse my "Pictures" folder. And I see the iphoto library there, but it is not available to select. I need to be able to select an individual photo file.
    I've worked around this by first copying the file from the library to my desktop, but that's cumbersome and shouldn't be necessary.
    How can I do this?
    Thanks,

    There are many, many ways to access your files in iPhoto:
    *For Users of 10.5 Only*
    You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Apple-Click for selecting multiple pics.
    Uploaded with plasq's Skitch!
    You can access the Library from the New Message Window in Mail:
    Uploaded with plasq's Skitch!
    *For users of 10.4 and 10.5* ...
    Many internet sites such as Flickr and SmugMug have plug-ins for accessing the iPhoto Library. If the site you want to use doesn’t then some, one or any of these will also work:
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. However, if you're using Gmail you can use iPhoto2GMail
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    *If you want to access the files with iPhoto not running*:
    Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    Regards
    TD

  • Opening one window from another

    I've created a method which opens a window that takes an input from the user and then closes and returns the input to the main program. When I called this method from a test program it seemed to work perfectly but when I tried to call it from my main GUI via an action listener on a button it just seems to crash.
    So my input window would wait until the return button was pressed, I set up a while loop which delays the program until a flag is changed by pressing the return button. As far as I can tell it is this while loop which is causing the problem. Has anyone got any idea why this method works with my test program but not through a GUI? I expect that there is also a better way of retrieving this information from my input window and that I have probably just forgotten something very simple. If anyone has got any suggestions I would be very grateful.
    Thanks, Tom

    Hi Tom,
    the while loop is not very suitable for this situation.
    The best solution, in my opinion, is to attach ActionListener to the 'submit' or 'ok' button of your child window, from the main GUI.
    Let's say A is your main GUI class and B is the JDialog (better if modal) that should return the value. Proceed as following:
    1. in the class B implement a method that attaches a listener l to the Ok button
    public void addOkListener(ActionListener l)
      okButton.addActionListener(l);
    }2. in the class A, create a ActionListener object like:
    ActionListener al = new ActionListener()
      public void actionPerformed(ActionEvent)
          do whatever you like, this code is executed when the user clicks
          on the button OK in the JDialog.
          For example you may want to retrieve the value from the JDialog:
          System.out.println(b.getMyValue());
    }3. in the class A, attach the listener to B:
      b.addOkListener(al);Antonio :)

  • How to call one .SWF from another?

    How do I call one .SWF from another. I built a very beefy
    base .SWF, and want to add music overlay, and an intro slide show
    to the exsting Flash animation, but put it in a second .FLA/.SWF
    file. How do I call one from the other?
    This will be embedded in an HTML file but I assume this is
    superfluous to my question.
    F.Z.

    I think you should open that Another SWF (FLA),
    and add some actionscript..
    For example, you could create a movie clip, and write
    actionscript in the
    first keyframe:
    loadMovie("
    http://www.somewebpage.com/movie.swf",
    this);
    "FredZimmerman" <[email protected]> wrote in
    message
    news:ftnjas$mj5$[email protected]..
    > How do I call one .SWF from another. I built a very
    beefy base .SWF, and
    > want
    > to add music overlay, and an intro slide show to the
    exsting Flash
    > animation,
    > but put it in a second .FLA/.SWF file. How do I call one
    from the other?
    >
    > This will be embedded in an HTML file but I assume this
    is superfluous to
    > my
    > question.
    >
    > F.Z.
    >

  • Open the form from another form...

    How can I open the form from another form with the PL/SQL code???
    The my form are create from OracleDesigner and developed with OracleBuilder.
    Regards
    Basilisco Giorgio

    You can read "About calling reports, displays, and other forms from generated forms" topic in the Designer on-line help. By the way in Forms there are CALL_FORM,OPEN_FORM and NEW_FORM built-ins.
    Helena

  • My new Photoshop Elements 12 has a RAW file plug-in, but when I try OPEN to select a photograph, there are only generic icons instead of pictures-- I can't tell one photograph from another! How can I fix this so I can tell which photograph I want to open?

    My new Photoshop Elements 12 has a RAW file plug-in, but when I try OPEN to select a photograph, there are only generic icons instead of pictures-- I can't tell one photograph from another! How can I fix this so I can tell which photograph I want to open? Thank you!

    Thanks R_Kelly:
    Adobe Photoshop Elements Version: 12.0 (12.1 (20140303.12.1.49334)) x32
    Operating System: Windows Vista 32-bit
    Version: 6.0 Service Pack 2
    System architecture: Intel CPU Family:6, Model:15, Stepping:11 with MMX, SSE Integer, SSE FP, SSE2, SSE3
    Physical processor count: 4
    Processor speed: 2400 MHz
    Built-in memory: 3069 MB
    Free memory: 1631 MB
    Memory available to Photoshop Elements: 1598 MB
    Memory used by Photoshop Elements: 69 %
    Image tile size: 128K
    Image cache levels: 8
    Video Card: ATI Radeon HD 4800 Series
    Video Mode: 1680 x 1050 x 4294967296 colors
    Video Card Caption: ATI Radeon HD 4800 Series
    Video Card Memory: 512 MB
    Application folder: C:\Program Files\Adobe\Photoshop Elements 12\
    Photoshop Elements scratch has async I/O enabled
    Required Plug-ins folder: C:\Program Files\Adobe\Photoshop Elements 12\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Photoshop Elements 12\Plug-Ins\
    The first thing I did was UPDATE. I have all the latest updates available (according to the updater). The Camera Raw Plug-in says it is version 8.0.
    The RAW files are from a Canon T3i. It's a very common camera, I can't believe it wouldn't be supported.

  • How can I open tabs on one computer from another computer

    I used to be able to open a tab from my home computer while using my computer at work. Now, I don't seem to be able to do it. I have a sync account set up. How can I open a tab from one computer at a different computer?

    First, be sure you're Syncing correctly:
    https://support.mozilla.org/en-US/kb/how-do-i-set-up-firefox-sync?esab=a&s=Sync&r=4&as=s
    As far as I know, Last Session is synced, too, so you can use
    History -> Restore Previous Session
    or
    History -> Recently Closed Tabs

  • How do I can link from one MXML to another in the same project?

    I planned to create a login page separated in my new Flex
    application. Maybe I am too attached to the WEB philosophy but I
    prefer to do it in that way. The login page will simply validate
    the login through a call to a CFC. While the CFC will also create
    the session variables I will need over the navigation of the user
    (once the login is validated), the variables (or more specifically
    the values of those variables) will serve as reference during the
    user's navigation. And those values are contains in the ColdFusion
    Session and can be accessed through CFCs.
    If the login is a success, I need to redirect the user to the
    appropriate page (in my case, the application is a help desk system
    so if the user is identified as a technician will go to the
    technician.mxml or if the user is identified as a sysadmin, will go
    to the sysadmin.mxml - simple as that). Now, I know it is possible
    to redirect using ExternalInterface.call function but is there
    anything more specific to Flex redirection from one MXML to
    another? Just like classes (where you can create dependency of a
    child classe to is parent)?
    Thank you

    I finally decided to use simply the method
    ExternalInterface.call to do this and it works fine! I passed
    parameters through the URL and I actually created CFM page that
    contains a copy of the HTML code generated by FlexBuilder (the CFM
    page give me the possibility to deal with the parameters).
    But I though that Flex can actually call another Flex and
    passing parameters directly without passing by the HTML page
    itself. A kind of memory scope but I guess I wish too much!!!
    ;-))

  • How can I edit my website from another computer? and how can I create a new website next to the one, I have already? Can anyone help, please?

    How can I edit my website from another computer? and how can I create a new website next to the one, I already have? Can anyone help, please?

    Move the domain.sites file from one computer to the other.
    The file is located under User/Library/Application Support/iWeb/domain.sites.  Move this file to the same location on the other computer and double click and iWeb will open it.  Remember, it is your User Library that you want and not your System Library, as you will not find iWeb there.
    Just create a new site on the same domain file and it will appear below the other site.  If you want them side by side then duplicate your domain file and have one site per a domain file and they can then be side by side.

  • If I imported a CD into my iTunes library from one computer how can I listen to it from another computer?

    If I imported a CD into my iTunes library from one computer how can I listen to it from another computer?  I imported music from a CD into my compter at work and when I got home and went to my iTunes account none of the songs were in my library.  I also noticed that on my Work computer there were a couple songs that I had to click on the little 'cloud' icon before I could listen to them (these were not songs I imported they were songs that were already in my library).  Not sure if this makes semse...help.

    jamie171 wrote:
    My question is since I have imported them into my iTunes library from one computer why can't I access them from my iTunes library from another computer that I have authorized to access whats in my library?  Is there no way to import songs only once into the library and then access them from all my authorized computers?
    Only if you have iTunes Match or of the computers are on the same local network.

Maybe you are looking for