Getting multiple modules to launch from a single menu. Captivate 7.

Is it possible to create a menu in Captivate that can launch multiple external modules without getting a flash warning in adobe connect? I understand if you go into the global flash settings you can add this to the list of trusted sites. This is something that isn't going to work for our cleint if each user has to go into this menu and manually do this.
Does anyone know a work around for this? I've tried using an html page for the menu because I thought the security issue had to do with a swf file calling to an external swf. I'm not having any luck with this working either. This seems like something that more people should be having issues with because it's a relitively simple request. Is this a global or an Adobe Connect issue? Anyone?

You are correct that trying to get end users to configure Flash security settings is not a viable solution.
If you're getting a Flash security warning message then the issue is that Flash thinks you are crossing over to grab content from a different domain than the calling file.  This problem doesn't usually crop up when all files are being served from a web server.
What happens if you test taking all of the files involved and uploading them to a web server?  Do they work then?

Similar Messages

  • HT4363 Have content of iTunes on both Appletvs but can only play on one.  Tv menu won't let me choose both locations.  How do I correct this?  ITunes Home Sharing is on.  Multiple Airplay is on from the iTunes menu, too.

    Have content of iTunes on both Appletvs but can only play on one.  Tv menu won't let me choose both locations.  How do I correct this?  ITunes Home Sharing is on.  Multiple Airplay is on from the iTunes menu, too.  Thanks,  Taking too long to get music!

    If you have all your music on the cmputer then i would connect up my phone uncheck the Sync Music option and apply.
    This should take all the music off your phone .Then you can resync the music back on to it.
    If this doesn't work maybe a restore to factory settings and start from scratch is the way to go

  • I am trying to burn a cd from my playlist but after inserting my disc I do not get (burn playlist to disc) from drop down menu

    I am trying to burn a cd from my playlist but after inserting my disc I do not get( burn playlist to disc) from drop down menu?

    Hollie,
    Do things in the following order:
    Make the playlist you are going to burn, and open it.
    Have the blank CD-R handy.
    Use the command File > Burn Playlist to Disc.
    When it asks you to insert a blank disc, do so.

  • How to get multiple html output file  from an xml document via xslt?

    Hi,
    the purpose is to generate multiple html output file from one xml file
    depending on special tag.
    exp: i have an xml file which contains sevreral articles so how to get each article section in an independant html file
    Thanks for help

    Not a standard feature of XSLT. But Michael Kay's XSLT implementation, SAXON, provides that as an extension. Get it here:
    http://saxon.sourceforge.net/

  • Getting last year column value from a single table

    I am having the following columns in my table
    BRANCH_CD
    YYMM
    VNDR#
    VGROUP#
    SALES_TRGT_AMT
    SALES_ACTL_AMT
    CUM_TRGT_AMT
    CUM_ACTL_AMT
    i need to get sales_actl_amt from this year and sales_actl_amt from last year from a single table
    pls help
    thank you
    Edited by: 960991 on Nov 19, 2012 11:13 PM

    Hi ashish,
    but i can't use unions in my reports.
    once view my query :
    select t.branch_cd,b.branch_e_name,t.vndr#,v.vndr_name,
    sum(nvl(t.sales_actl_amt,0)) sales_actl_amt
    from inv_sales_trgt_val t,branches b,vendor v where
    t.branch_cd=b.branch_cd and
    t.vndr#=v.vndr# and
    (t.yymm between :fiscal_month and :fiscal_month2) and
    (:fiscal_month<>trunc(:fiscal_month2,-2)) and :fiscal_month2<>trunc(:fiscal_month2,-2)) and t.branch_cd between :from_branch and to_branch and
    t.vndr# between :from_vndr and :to_vndr
    group by t.vndr#,v.vndr_name,t.branch_cd,b.branch_e_name
    order by t.vndr#,t.branch_cd;
    how can i get last year sales_actl_amt .

  • Is it Possible to have multiple sheet Excel output from a single BI report?

    Hi,
    I am using Oracle BI Publisher Desktop veriosn 11.1.1.7
    JDE tool set 811.
    Is it possible to generate multiple excel sheet tabs from single report?

    Creating Excel Templates - 11g Release 1 (11.1.1)
    BI Publisher: Excel Template: 'Fixed' Multi-Sheet Template

  • How do I set the Launch window size (from launch from an LMS) in Captivate 5.5?

    When my project launches from the LMS, the lauch window is smaller that the actual project size and requires the user to resize the window to see the whole project. My LMS administrator tells me that the launch window size is not controlled by the LMS so I am trying to figure out how I can set this to match the project dimensions.

    The size of the browser window CAN be controlled by the LMS, but some LMSs are hopeless in this area and don't provide the settings to do so.
    Moodle for example allows you to specify that the course content will open in a new window each time an item in the LMS TOC is clicked and what the height and width of that window will be. However, all versions of SumTotal before the latest one did not give you this option (and that despite the exhorbitant price difference between these two products.)
    So your LMS admin might be correct in that HIS particular LMS cannot control the size of the launch window, but that's not because no LMS can do this.

  • I can using AirPrint from safari and email to my hp printer but do not get print as an option from the pulldown menu from the new york times and other apps. How can I print directly from these apps?

    I can't seem to print directly from apps like the new York times. Print is not an option from the pulldown menu. Print to my hp printer works  fine from safari and email though and from some other apps. Do some apps not permit printing? That doesn't right.

    sadie1 wrote:
    Thats funny. If go to ny times on safari therebis a print icon and no problem printing. On the app -- and I am a paid subscriber -- no print option ...  
    You can ask the NY Times why not.
    Standard behavior is that Airprint always works with iBooks, Mail, Photos, and Safari.  Apps are up to their author.
    http://support.apple.com/kb/ht4356

  • Get multiple Input/Output Stream from same socket ?

    For a better express of my problem i will put my test example
    I have those 4 classes
    package test;
    import...
    public class ReaderExecutor extends Thread{
            private InputStream in = null;
            private static int defaultID = 0;
            private int ID = getID();
            public ReaderExecutor(InputStream in){
                this.in = in;
            public void run(){
                try {
                    int c ;
                    while ((c=in.read())!=-1)
                        System.out.println("ReaderThread " + this.ID + ":" + c);
                catch (IOException e) {
                    System.out.println("ReaderThread "+this.ID+" stopped !");
            private static int getID(){
                return defaultID++;
    package test;
    import...
    public class WriterExecuter extends Thread{
        OutputStream out = null;
        private static boolean odd = true;
        private boolean isOdd ;
        public WriterExecuter(OutputStream out) {
            this.out = out;
            isOdd = odd;
            odd = !odd;
        public void run(){
            try{
                for (int i = isOdd?1:2;i<10;i+=2){
                    System.err.println(i);
                    out.write(i);
            }catch(Exception e){
                System.out.println("WriterThread stopped !");
    package test;
    import...
    public class Main { 
        public Main() {
        public static void main(String[] args) throws Exception {
            try{
                ServerSocket ss = new ServerSocket(9090);
                System.out.println("Ascult ... ");
                Socket client = ss.accept();
                new ReaderExecutor(client.getInputStream()).start();
                //Thread.sleep(2000);
                new ReaderExecutor(client.getInputStream()).start();
            }catch (Exception e){
                e.printStackTrace();
    package test;
    import...
    public class Main1 {
        public Main1() {
        public static void main(String[] args) {
            try{
                Socket s = new Socket("localhost",9090);
                WriterExecuter t= null ;
                t = new WriterExecuter(s.getOutputStream());
                t.start();
                t = new WriterExecuter(s.getOutputStream());
                t.start();
            }catch(Exception e){
                e.printStackTrace();
    }Now if i run successive Main , Main1 i get this output
    Ascult ...
    ReaderThread 0:0
    ReaderThread 1:0
    ReaderThread 0:0
    ReaderThread 1:0
    ReaderThread 0:0
    ReaderThread 1:0
    ReaderThread 0:0
    ReaderThread 1:0
    ReaderThread 0:0
    ReaderThread 0 stopped !
    ReaderThread 1 stopped !The question is can i get other Input/Output individual streams with a separate logic functionality from the same socket?
    From this example it seems i can't :(
    Thx
    Alex

    For what you are trying to do the simplest solution is to have one socket per "stream" that is the way they are designed to be used.
    However, you can multiplex multiple stream over a single socket, but you have do the coding yourself or use a solution which does this for you e.g. JMS. (There is no support at the socket level for this)

  • How to download multiple versions of iTunes from a single computer?

    Is there an Apple ftp or other site where any current version of iTunes can be downloaded?   I have a 32 bit Windows computer that can't do downloads, so I have to use another computer to download iTunes. If I try to download from a Mac it only offers the Mac version and my other Windows computer only offers the 64 bit version because it is 64 bit.  I could not find any link on the pages to download other versions of iTunes.  If I disable javascript I can see options to download all the versions but then the download button does not work.  So if anyone knows of a direct link to the different versions of iTunes and Quicktime, I would love to know what it is so I can get the updates I need.

    See the further information area of Troubleshooting issues with iTunes for Windows updates for direct download links for iTunes. iTunes no longer needs QuickTime so you could simply uninstall it. Otherwise this should do it: QuickTimeInstaller.exe (V7.7.5).
    tt2

  • How to automate multiple output file names from a single input image?

    I have about 100 eps cmyk 4000 pixel wide images to process daily.  The website needs several jpeg editions of the same image: 1000 pixel wide, 850 pixel wide, and 80 pixel wide.
    Question:
    Can I load the single source and save three differently named outputs through a single droplet?
    I was hoping for an Automation -> Batch answer, but I am a programmer.  I haven't touched ExtendScript nor scripted anything in CS, but I can certainly read about it.  Any examples I can download or references to methods that would do a "Save As" very similar to the Jpeg Save For Web?  Any links would be helpful.

    You will find many examples at ps-scripts.com
    IE: http://www.ps-scripts.com/bb/viewtopic.php?t=3247

  • I cannot get Elements 11 to launch from a new install.

    I have spent 1 1/2 hours trying to get elements 11 editor to start.

    Some more information would help: operating system?  Photoshop or Premiere?  How are you trying to start it, and what happens when you try?

  • Multiple (different) DVD outputs from a single Encore project

    I have 5 DVD's to output. Each of them is based off the same menu template. (see attachment) What will be changing from one DVD to the next are the number of buttons and the "workshop" title. Is it possible or advisable to copy the menu that I have done already, modify it and output it as a new dvd all in the same encore project file? (Without altering the one I have completed already) I hope that made sense. Or do I need to have a new Encore project for each DVD?
    TIA
    Dean

    I agree with the others, and it's basically the way that I have done multi-disc Projects.
    I first set up a Project, and Import all Assets, that are common across all Projects, arranging them in appropriate Folders/Bins. Then, I Save that Project, to be used as a "template," for each disc in the set. I also make a Copy of that Project (complete), just in case I forget the next step. I Open my "template" Project, and do a Save_As, with the disc number in the new name. I Import all unique Assets, modify my Menus, and do any required linking. If OK, I then output. For the next disc, I Open that "template" Project, and repeat the process, incrementing the Project's file name to reflect the next disc, say_02, in lieu of the first one's _01. Repeat.
    I've used this workflow for Projects that were up to 18 discs, with no problems.
    Just plan your "template" Project out, so that you will only have to Import material, that is unique to that disc.
    Good luck,
    Hunt

  • Does FireFox have a feature that supports the opening of multiple tabs or windows from a single URL?

    IE, clicking on or copy-pasting "http://www.google.com&http://www.aol.com" in the navigation bar would open two separate tabs or windows, one that shows www.google.com and one that shows www.aol.com.

    Yes, see https://support.mozilla.com/kb/Location+bar+search
    It doesn't work anymore in Firefox 7 if there are multiple domains like support.mozilla

  • Getting multiple intermittent calls for VOP_OPEN() and VOP_CLOSE() from kernel when copying files to my VFS

    When I try to copy a file to my mounted VFS, I get multiple VOP_OPEN() and VOP_CLOSE() commands intermittently. This behavior was not seen on OSX versions earlier to Mavericks. I used VOP_CLOSE() as event to trigger code to Check-in command to my server, as a result now I am getting multiple check-in requests from my kernel extension module which finally fail.
    How do I work around this issue on Mavericks?

    Hi Ncat,
    I might have had similar problems with yours. Finder stuck at 'Not Responding' while I boot my Macbook Pro with external HDD plugged in, my macbook heats up considerably maybe because it keeps trying to access the external disk. And Finder can only proceed after I unplugged my external hard disk.
    So what I did was:
    I rebooted my macbook into recovery mode (by holding cmd+R before / during the booting chime
    I used the Disk Utility from there (instead of from normal booting)
    Then I proceed to with 'Repair Permissions' and 'Repair Disk' for each and every partition of the external harddisk, and also my internal hard disk.
    Rebooted after everything's done, and now it seems to work.
    I hope that it will work for you

Maybe you are looking for