Controll Flash from outside

hi,
i have a looped sound in one frame and changing pages in the
other frame. some of these pages have videos or other soundcontent.
how can i stop or fade the looped sound in a .swf file in
frame 2 by the startscript of flashmovies in mainframe, or with JS?
i'm using flash8 prof.
thanks in advance for any advice
rainer

in addition: i forget to make clear - frames are html-frames,
not flash-frames!
rainer

Similar Messages

  • Control Flash from HTML (k)

    I have a button in HTML that I want to use to control the
    flash on the
    page it sits on.
    When the button is rolled over, I want to pass a variable to
    the Flash
    movie so that something happens.
    How can I do this in Dreamweaver?
    -Kirk

    It's a stupid way of doing it, but I got it to work using the
    FSCommand.
    I send the user to a frame in the Flash movie. That frame has
    the
    variable set to the "On" state. I then have them go to
    another frame for
    the "Off" state.
    -Kirk
    W. Kirk Lutz wrote:
    > I know that it would be easier. But I have a very tall
    flash file of a
    > floorplan. I have a legend for the floorplan that I want
    to float in a
    > layer so that when someone scrolls down the page, the
    legend follows. I
    > Can make a scroller in flash, but would prefer to try
    and control Flash
    > via HTML.
    >
    > I know you can pass a variable in HTML to flash, but if
    it has to reload
    > the page each time the user will be throwing their
    machine out the window.
    >
    > Any way to control Flash?
    >
    > I've tried to send the user to a frame in Flash via the
    FSCommand, but
    > it doesn't seem to work. I have two scenes in my flash
    file. A loading
    > scene and the main scene. The FSCommand jumps me to the
    frame in the
    > loading Scene.
    >
    > -Kirk
    >
    >
    > -->dan mode wrote:
    >> It would be much easier to do the rollover button in
    Flash.
    >> Otherwise, you need a server side language that
    would populate a
    >> variable in the embedded swf code.
    >>
    >>

  • How to link into flash from outside

    This is something I have on my todo - or lookinto list if you
    will - for a long time.
    Is it possible to push commands into a flash site from the
    outside? For instance navigating to a specific frame inside the
    flash movie? I haven't a way myself, or seen sites that do this
    trick yet, butperhaps AS3 will allow this?
    Regards,

    Sure you can do that, implement it via the
    Flash.ExternalInterface class.
    Cheers,
    Gorka
    www.AquiGorka.com

  • Controlling JScrollPane from outside

    I'm making an application purposed for presenting. I use two JFrames, one for controlling which only i see, and one -the view- that the audience sees.
    My wish is that i can control the JScrollPane on the view-frame with a JScrollBar on the control-frame. How do i do this?
    I tried:
    * creating a JScrollBar on the control-frame and then define it as the scrollbar on the view-frame by a using jScrollPane1.getVerticalScrollBar();
    * creating a JScrollBar on the control-frame and then define it as the scrollbar on the view-frame by a using jScrollPane1.setVerticalScrollBar(jsb);
    * more...
    That all didn't have any of the wished effect.
    Could you help me?

    It is an interesting problem, so I had to try it myself. It works:
    import javax.swing.BoundedRangeModel;
    import javax.swing.DefaultListModel;
    import javax.swing.JList;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    public class ShareScrollBarModel
      private static final int MAX = 100;
      private JPanel mainPanel = new JPanel();
      private JScrollPane scrollpane;
      private DefaultListModel listModel;
      public ShareScrollBarModel()
        listModel = new DefaultListModel();
        for (int i = 0; i < MAX; i++)
          listModel.addElement(new Integer(i));
        JList list = new JList(listModel);
        scrollpane = new JScrollPane(list);
        scrollpane.getVerticalScrollBar().setEnabled(false);
        mainPanel.add(scrollpane);
      public JPanel getMainPanel()
        return mainPanel;
      public BoundedRangeModel getVertScrollBarModel()
        return scrollpane.getVerticalScrollBar().getModel();
      public DefaultListModel getListModel()
        return listModel;
    import java.awt.Dimension;
    import javax.swing.BoundedRangeModel;
    import javax.swing.DefaultListModel;
    import javax.swing.JDialog;
    import javax.swing.JFrame;
    import javax.swing.JList;
    import javax.swing.JPanel;
    import javax.swing.JScrollBar;
    import javax.swing.JScrollPane;
    public class ShareScrollBarModelTest
      private JPanel mainPanel = new JPanel();
      private JScrollPane scrollpane;
      private DefaultListModel listModel;
      public ShareScrollBarModelTest(BoundedRangeModel vertSBarModel, DefaultListModel listMod)
        JList list = new JList(listMod);
        JScrollBar vertBar = new JScrollBar();
        vertBar.setModel(vertSBarModel);
        scrollpane = new JScrollPane(list);
        scrollpane.setVerticalScrollBar(vertBar);
        mainPanel.setPreferredSize(new Dimension(400, 300));
        mainPanel.add(scrollpane);
      public JPanel getMainPanel()
        return mainPanel;
      public JScrollPane getScrollPane()
        return scrollpane;
      public DefaultListModel getListModel()
        return listModel;
      private static void createAndShowUI()
        ShareScrollBarModel ssbModel = new ShareScrollBarModel();
        ShareScrollBarModelTest modelTest = new ShareScrollBarModelTest(ssbModel.getVertScrollBarModel(), ssbModel.getListModel());
        JFrame frame = new JFrame("Frame Display");
        JDialog dialog = new JDialog(frame, "Dialog Display", false);
        dialog.getContentPane().add(ssbModel.getMainPanel());
        dialog.pack();
        dialog.setLocationRelativeTo(null);
        frame.getContentPane().add(modelTest.getMainPanel());
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
        dialog.setVisible(true);
      public static void main(String[] args)
        java.awt.EventQueue.invokeLater(new Runnable()
          public void run()
            createAndShowUI();
    }

  • How to access to EM Grid control from outside browser

    I want to access to EM Grid Control console from an other place, outside of my office but I can't, I configured my firewall with the default ports 1159,1830.
    I don't know if I have to add other port, I can't understand because I Have an other application e-business that I can access without any problems.

    You can get to grid control within your office?
    Try using the SECURE connection
    https://host.port#/em

  • Detecting Flash Player version from outside browser

    Hi there,
    I was wondering if it is possible to detect the version of
    the Flash Player on a Mac, but from outside of the browser. Our
    product needs to know what Flash version is present as installation
    time, so I need to detect it via shell / perl script.
    Does anybody know if this is possible, and what might be the
    most efficient approach?
    King Regards
    davewg

    Hi, just for reference, using a shell script to retrieve the
    CFBundleShortVersionString key from plugins plist seems like a good
    way to go. Plugin is in /Library/Internet Plug-Ins.

  • Can not foward into voicemail from outside call on CUE and CUCM 8.6

    Dear Team,
    I have CUE Utility and CUCM 8.6.
    I can call from local, if user busy or go out office then call will foward to voice mail.It is ok.
    But when i call from outside to my phone(direct line), then call can not foward to voice mail on CUE.
    Please help me some solution.
    Thanks.

    Hi nam,
    A couple of things to check. Have you set the Forward Busy/No Answer "External"
    on the DN config page in CUCM?
    Are the calls coming in using a codec other than g.711?
    Best Practices for Deploying Cisco Unity Express
    • Each mailbox can be associated with a primary extension number and a primary E.164 number.
    Typically, this number is the direct-inward-dial (DID) number that PSTN callers use. If the primary
    E.164 number is configured to any other number, use Cisco IOS translation patterns to match either
    the primary extension number or primary E.164 number so that the correct mailbox can be reached
    during SRST mode.
    • Each Cisco Unity Express site must be associated with a CTI route point for voicemail and one for
    AA (if licensed and purchased), and you must configure the same number of CTI route points as
    Cisco Unity Express ports licensed. Ensure that the number of sites with Cisco Unity Express does
    not exceed the CTI scalability guidelines presented in the chapter on Call Processing, page 8-1.
    • Cisco Unity Express is associated with a JTAPI user on Cisco Unified CallManager. Although a
    single JTAPI user can be associated with multiple Cisco Unity Expresses in a system, Cisco
    recommends associating each dedicated JTAPI user in Cisco Unified CallManager with a single
    Cisco Unity Express.
    • Calls into Cisco Unity Express use G.711 only. Cisco recommends using a local transcoder to
    convert the G.729 calls traversing the WAN into G.711 calls. You can configure Cisco Unified
    CallManager regions with the G.711 voice codec for intra-region calls and the G.729 voice codec
    for inter-region calls.
    • If transcoding facilities are not available at the Cisco Unity Express site, provision enough
    bandwidth for the required number of G.711 voicemail calls over the WAN. Configure the Cisco
    Unified CallManager regions with the G.711 voice codec for calls between the IP phones and Cisco
    Unity Express devices (CTI ports and CTI route points).
    • The CTI ports and CTI route points can be defined in specific locations. Cisco recommends using
    location-based call admission control between Cisco Unified CallManager and Cisco Unity Express.
    RSVP may also be used.
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/srnd/4x/42unityx.pdf
    Cheers!
    Rob
    "Far away from your trouble and worry
    You belong somewhere you feel free" - Tom Petty

  • Remote Screen Sharing (VNC) from outside of my LAN

    I often have to connect to my parents' Macs to help them out with various things. I commute between two cities and stay with them when I'm there.
    (I set up a dynamic hostname with DynDNS to point to our router, which defaults to port 443, which on the home network is reserved for the QNAP NAS that's set up. I set the router up to be reachable at port 455 but I'm not sure if it is successfully sending IP address updates to DynDNS. I don't see a way to check if it is. DynDNS seems to require a paid account for that functionality and my routers log is also not very helpful. In short, I'm having trouble getting the whole dynamic DNS thing to work reliably with our router, which is otherwise a great little box: a Fritz!Box Fon WLAN 7390).
    I use Jolly's Fast VNC (http://goo.gl/UmllQ) to connect to a personal server and that works wonderfully, but then there the details are taken care of for me by my provider and I just have to type in the details.
    What I'd really love is something like Edovia's Screens (http://www.edovia.com/)... except for the Mac rather than the iPhone/iPad (though I do own an iPhone copy of it and it's wonderful).
    We do share a MobileMe subscription in the family, but that's not very helpful here either.
    So far, we've used iChat, Skype screen sharing and I often end up using TeamViewer because of its speed and near non-existant setup.
    My goal is to find a way to connect to my parents' Macbooks even when they are not around so I can help them out with problems while they may not even be around. The key here is that I want to be able to control their screens without needing any action on their part.
    Suggestions for the simplest possible way to do this are very welcome.

    I didn't know TeamViewer could be set up to be accessible without a second user having to be around to give me the session ID and password. I wonder if it's worth looking into that if LogMeIn Free with its server always running is a perfectly acceptable solution? Any advantages to using TeamViewer's solution?
    The free LogMeIn account does NOT allow file transfer. The free for personal use TeamViewer does.
    LogMeIn server hides in the background, so it is less likely your parents will Quit LogMeIn.com, were as TeamViewer looks like just another app, so they might Quit from it to get it out of the way.
    Of course if you need to transfer a file (or 2), you could use DropBox.com for that, and it is a very easy way to transfer files between systems. Or you could store the file on your MobileMe account in a public place, then via LogMeIn copy the file from your public space into your Parent's Mac(s). Or your could use LogMeIn to start TeamViewer, and then use TeamViewer to transfer the file.
    Basically once you can start applications on your Parent's Mac(s), you can use any number of utilities for transferring data.
    We do have MobileMe. I was under the impression that the way Back to my Mac works is that it will show you YOUR remote Macs in the Finder's sidebar. You know, ones that you're also logged in with YOUR MobileMe credentials. We all use our own, unique MobileMe accounts. Am I missing something?
    Yes, all the Macs would need to use the same MobileMe account. Do you all really need separate accounts? Maybe a Family account.
    I could deal with the port forwarding and DynDNS but I'll have to set that up to remotely administer my router and NAS, which is turning out to be quite the pain. So if I can simplify, I will. LogMeIn or TeamViewer will do the trick just fine.
    Port forwarding is a once and done thing for your parent's router. It allows you to get to their Macs from outside their home. It should have nothing to do with remote admin, or your router and NAS. Also once you can Screen Share your parent's Mac, you can then use that Mac to talk from the inside to their router. Although one must be very careful about making router config changes as one "Oops" and you could loose your remote access, and have to visit Mom and Dad to get physical access
    By the way, I've been using VNC/Screen Sharing and AFP file sharing over ssh tunnels in conjunction with port forwarding on the destination router for years. I do this, even though it is more work, because it was available long before most of the above services were available, and because it has a lot more flexibility once you know how to use it. Oh yea, I'm also a Unix software developer and spend a lot of time using ssh anyway

  • Can't I stop the HOG Flash from Firefox? I use FlashBlock but a constant fight. Often both cores maxed at 100%,laptop very slow until I kill Flash in Tsk Mangr

    Flash is the problem. It often maxes both cores of my dual core processor and brings processing virtually to a halt.
    Originally, I killed flash in Task Manager whenever i heard my fan come on and also noticed slow system response. This was very distracting and took a lot of time.
    Then I installed FlashBlock, but it doesn't stop Flash unless you tell it for each and every website.
    When reading news, and opening a link, I will hear the fan start, so i click the block button/icon in Firefox to block the site from using flash. Some sites don't launch with the FlashBlock icon. I have to use the manual kill option for them. This extremely frustrating. I understand why Steve Jobs hated Flash.
    I don't like Apple's money-sucking wallet-leach behavior, so I use WinTel and live with the frustrations of which this is the biggest. HTML5 supposedly is the solution, but site builders use flash.
    FireFox needs a flash control switch built in the browser to give control of Flash - block/ask, etc. functionality.

    By the way, Firefox does have a Click-to-Play feature you can use for Flash. That will delay Flash from starting on a page until you approve it. However, the approval is per site, I believe, so you may need an add-on to control it per page.
    To set "Ask to Activate", open the Add-ons page using either:
    * Ctrl+Shift+a
    * orange Firefox button (or Tools menu) > Add-ons
    In the left column, click Plugins. Look for "Shockwave Flash" and change "Always Activate" to "Ask to Activate".
    When you visit a site that wants to use the Flash, you should see a notification icon in the address bar and one of the following: a link in a black rectangle in the page or an infobar sliding down between the toolbar area and the page.
    Not a solution, but hopefully will help a bit.

  • How do I remove an old version of Flash from addons after updating?

    I recently updated from Firefox 5.0 after a long period of not-updating to Firefox 22.0, and immediately had to update Flash (which I also hadn't updated in awhile as in FF5.0 updating past 11.2.202.235 borked Youtube). However, now I have two different listings in the Add-ons Manager for Flash, one for 11.8.800.94 and another, flagged as 'Shockwave Flash is known to be vulnerable and should be updated', for 11.2.202.235. I tried manually disabling it, but the next time I opened Firefox they were both disabled. Also, I'm having issues with Youtube videos stuttering and chugging (although, oddly, with no apparent drops in framerate) in Firefox after updating, that don't happen in Chrome, and I'm wondering if somehow thiis might be the cause?
    So I was wondering, is there a way to remove the 'old' Flash from Firefox? I already checked add/remove programs and there is only one Flash 11 there, at the date it was updated.

    Yes this is caused by a flash install problem, try removing it from the control panel (Both) and try again.
    * http://kb.mozillazine.org/Flash#Windows_installation_issues

  • Pass image name and path to flash from html

    Hello Flash Forum,
    I would like to use Flash to display a larger image in an
    HTML page that opens on top of a window with
    thumbnail images. The thumbnail page will be a php page. If
    the user clicks the thumbnail, I would like to open a swf that
    diplays the larger image. I would like to pass the path and name of
    the image to display to my swf. It would open a browser page (or
    just a swf file) over the thumbnail page. The use could then close
    the larger image display, and click another thumbnail, etc.
    How could I do this? I have a swf file that will display the
    image, but I would like to pass the image name from outside the swf
    file.
    Thanks for any tips,
    eholz1

    Hello jpsoul,
    Thanks for the suggestion. I did see some info on the query
    string aspect. I will take a look at the JavaScript
    external.ExternalInterface class as well.
    Thanks again,
    eholz1

  • WLC 5508 - LAP1242: Failed to handle capwap control message from controller

    Hello everyone,
    after finally successfully upgrading my WLCs from 6.0.199.4 to 7.6.100.0 there is another problem showing up...
    If I want to change any configuration regarding the APs on the WLCs (which doesn't work) I get the following error-messages from the APs:
    *spamApTask7: Feb 27 14:34:00.558: 00:3a:9a:d6:5d:30 Test-AP-09-03: *Feb 27 13:34:00.169: %CAPWAP-3-ERRORLOG: Validate Msg: msg type 12 does not supported payload 215
    *spamApTask7: Feb 27 14:34:00.558: 00:3a:9a:d6:5d:30 Test-AP-09-03: *Feb 27 13:34:00.169: %CAPWAP-3-ERRORLOG: Validate Msg: error in Unknown Payload(215) payload (received length = 9, payload type = 215)
    *spamApTask7: Feb 27 14:34:00.558: 00:3a:9a:d6:5d:30 Test-AP-09-03: *Feb 27 13:34:00.170: %CAPWAP-3-ERRORLOG: Failed to validate vendor specific message element type 215 len 9.
    *spamApTask7: Feb 27 14:34:00.558: 00:3a:9a:d6:5d:30 Test-AP-09-03: *Feb 27 13:34:00.170: %CAPWAP-3-ERRORLOG: Failed to decode Configuration update request.
    *spamApTask7: Feb 27 14:34:00.558: 00:3a:9a:d6:5d:30 Test-AP-09-03: *Feb 27 13:34:00.170: %CAPWAP-3-ERRORLOG: CAPWAP SM handler: Failed to process message type 7 state 11.
    *spamApTask7: Feb 27 14:34:00.558: 00:3a:9a:d6:5d:30 Test-AP-09-03: *Feb 27 13:34:00.171: %CAPWAP-3-ERRORLOG: Failed to handle capwap control message from controller
    Find attached some informations regarding the AP and the 5508.
    Any suggestions are, as always, highly appriciated.
    Regards
    Manuel

    Good morning,
    if I need free space at the flash: How much is "enough" to handle config changes?
    Here you can see the filesystem of one of my accesspoints (all are affected):
    AP#dir all-filesystems
    Directory of arch:/
        2  -rwx       91288  Feb 22 2014 18:16:42 +00:00  event.log
        8  drwx         448  Feb 22 2014 18:16:38 +00:00  c1240-k9w8-mx.124-25e.JAO3
        4  drwx           0   Nov 2 2011 23:32:18 +00:00  configs
        5  -rwx         397  Feb 22 2014 18:19:03 +00:00  env_vars
        6  -rwx        6168  Feb 27 2014 18:14:24 +00:00  private-multiple-fs
    No space information available
    Directory of flash:/
        2  -rwx       91288  Feb 22 2014 18:16:42 +00:00  event.log
        8  drwx         448  Feb 22 2014 18:16:38 +00:00  c1240-k9w8-mx.124-25e.JAO3
        4  drwx           0   Nov 2 2011 23:32:18 +00:00  configs
        5  -rwx         397  Feb 22 2014 18:19:03 +00:00  env_vars
        6  -rwx        6168  Feb 27 2014 18:14:24 +00:00  private-multiple-fs
    15740928 bytes total (10614784 bytes free)
    Directory of zflash:/
        2  -rwx       91288  Feb 22 2014 18:16:42 +00:00  event.log
        8  drwx         448  Feb 22 2014 18:16:38 +00:00  c1240-k9w8-mx.124-25e.JAO3
        4  drwx           0   Nov 2 2011 23:32:18 +00:00  configs
        5  -rwx         397  Feb 22 2014 18:19:03 +00:00  env_vars
        6  -rwx        6168  Feb 27 2014 18:14:24 +00:00  private-multiple-fs
    15740928 bytes total (10614784 bytes free)
    Directory of archive:/
    No files in directory
    No space information available
    Directory of system:/
        2  dr-x           0                      memory
        1  -rw-       17631                      running-config
    No space information available
    Directory of nvram:/
       30  -rw-           0                      startup-config
       31  ----           0                      private-config
        1  ----        4100                      lwapp_ap.cfg
        6  ----         528                      lwapp_ap_tlv.cfg
    32768 bytes total (26572 bytes free)
    Regards, Manuel

  • I need to link to a screen within a movie from outside the movie

    Hi,
    That last question was answered so quickly, I'll ask this
    next one right away:
    I need to link to a screen within a movie from outside the
    movie (so for example, from file1.cp, I need to open file 2, screen
    4).
    Am I able to do this in Captivate 1?
    Thanks,
    Kim

    I've just gotten a chance to check out these responses. About
    the Flash - no can do. Don't have it. And about breaking the file
    apart, that would get messy because I have several files already.
    OK. At least I know my options are limited to linking to page 1
    from outside, so I'll have to be creative.
    Thanks for the response.
    Kim

  • How to control Flash Player playback using JavaScript?

    I have a local file-based web page (HTML file) containing an embedded YouTube video.
    Now I want to write some JavaScript to control the Player's playback parameters, like volume, mute, play, stop etc., using JavaScript in the file. However, I don't seem to be able to access any of these function.
    Can someone please enlighten me on what I need to do to be able to control Flash Player from JavaScript?

    I'm not acquainted with Flash too much, I'm afraid... Both paged didn't give any example I could leverage.
    I'm searching for something equivalent to something like this:
    document.getElementById("MyMoviePlayer").mute();

  • Controlling flash in html.

    Here is my problem hopefully someone can help me.
    I need my swf to load a new level on a specific webpage url.
    There are a few ways I can think of doing this. (I am not a
    coder at all so bare with me)
    (a) inside flash a code that says this. If on www.webpage.com
    load swf on level 1000.
    (b) in html, I have no idea how to control flash, could move
    it to another frame. that would work. :)
    and I'm sure there is something I don't know. Please guys I
    am really stuck and need to figure this out.
    Any help is much appreciated. Thanks !

    Sounds to me like you need this:
    [quote]LOL, Adobe is definately paranoid... I can't write
    l-o-c-a-t-i-o-n in a post... so just remove the "-" in
    l-o-c-a-t-i-o-n below
    uh... maybe I'm completely wrong, but how about using
    ExternalInterface.call to access a Javascript function
    In HTML:
    <script type="text/javascript">
    function getLocation(){
    return(document.l-o-c-a-t-i-o-n.href);
    </script>
    From what I read you need to allow script access explicitly
    for this to work.
    <param name="allowScriptAccess" value="always" />
    In AS:
    import flash.external.*;
    String(ExternalInterface.call("getLocation"));[/quote]

Maybe you are looking for

  • How many times can i download 2.1?

    I bought a 2.1 update in the itunes store on my computer. But it has been download for many times and never succeed. So i wanna know whether downloading it for several times costs more money? And how many times can I download it?

  • File formats for RBS in sharepoint 2013?

    I have configured RBS with the threshhold of 1mb,i was expecting that all the videos,images greater than 1mb would go into blob storage but they are getting stored in content db,zip files greater than 1mb are getting stored in blob storage.I went thr

  • How to get current URL from Internet Explorer ?

    Hi, I have design an add-on for IE and I'm trying to get URL from IE which is currently opened that is which is currently user sees. Is there any way to get it? I want to store that address in label and use it for something useful. Is it possible wit

  • Exception 6A80 while setting Triple DES key inside the applet constructor

    In the applet definition part, I am having these definition: public static final byte DEFAULT_PERSO_KEY_SET_REFERENCE = (byte) 0x81;      public static final byte[] DEFAULT_PERSO_KEY_SET_ENC = {           (byte) 0x52, (byte) 0x57, (byte) 0x4d, (byte)

  • WLS 6.0 & WLCS 3.2 & interop between 5.1 & 6.0

    Hi, Apparently, WLCS 3.2 will support WLS 6.0 in spring (cf various posts). We are currently using WLS 5.1 for EJB dev & WLCS for JSP dev but wanted to migrate our EJB dev to WLS 6.0. Not possible !!! We thought of having two servers one for running