How can I hide the Event Index by default in Connect 9 recordings?

We do not use the Event index in our recordings, and the fact that it is open when the recording launches for anyone who views it, is problematic.  We embed the recordings on our website, and it is messing up the embeds (the Event Index is taking up too much space.)  Is there a way to make it hidden by default in Connect 9 recordings?
Thanks,
Kerry

Hi Kerry,
Did you find a solution on this issue? I have the same problem.
Thanks,
Dan

Similar Messages

  • How can I hide the events in a delegate calendar

    Hi,
    My boss is asking me how can we hide the event information in the delegates, in order that the delegates can see that he is busy but not to know in what he is busy?

    There was earlier a thread on column level secuirty in 11g. PFB the link. See if it helps.
    Column level security does not seem to work in OBIEE11g
    Also, in 10g for column level security we had used choose statement. Am not sure if same can be used in 11g. PFB link for getting information on choose statement.
    http://obiee101.blogspot.com/2008/09/obiee-choose-statement.html

  • How can I hide the time of the day in calendar events in OS 10.9?

    How can I hide the time of the day in calendar events in OS 10.9?

    Currently, the order in which the phone numbers appear (in a contact) is dependent on the sequence to which you enter them. There is no way to change that order other than re-entering them in the desired order.

  • How can I hide the class file ??

    Hi !
    I has a question, when i write a program of Java, then use the command "javac" to compiler to class file for other people using, but the class file can be disassembled and convert to source code. How can I hide the class file and let people can not disassemble, or can not see the source code. Thinks

    See these....
    http://www.saffeine.com/
    http://www.jarsafe.com/
    I recently read this. This will help you.
    http://developer.java.sun.com/developer/qow/archive/160/index.jsp
    Enojy....
    Rajesh

  • How can I hide the scroll bar in TextArea?

    How can I hide the scroll bar in TextArea?

    Hi. To remove the horizontal scrollbar you can do this:
    textArea.setWrapText(true);
    To remove the vertical scrollbar you can do this:
    ScrollBar scrollBarv = (ScrollBar)ta.lookup(".scroll-bar:vertical");
    scrollBarv.setDisable(true);  and set the opacity to 0 in the css file:
    //css file
    .text-area .scroll-bar:vertical:disabled {
        -fx-opacity: 0;
    }Here is an example:
    import javafx.application.Application;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.ContextMenu;
    import javafx.scene.control.MenuItem;
    import javafx.scene.control.ScrollBar;
    import javafx.scene.control.TextArea;
    import javafx.scene.input.ContextMenuEvent;
    import javafx.scene.layout.StackPane;
    import javafx.stage.Stage;
    public class TextAreaSample extends Application {
        @Override
        public void start(Stage primaryStage) {
        final TextArea textArea = new TextArea();
            textArea.setWrapText(true);
            StackPane root = new StackPane();
            root.getChildren().add(textArea);
            Scene scene = new Scene(root, 300, 250);
            primaryStage.setScene(scene);
            primaryStage.show();
            scene.getStylesheets().add(getClass().getResource("style.css").toExternalForm());
            ScrollBar scrollBarv = (ScrollBar)textArea.lookup(".scroll-bar:vertical");
            scrollBarv.setDisable(true);
        public static void main(String[] args) {
            launch(args);
    }

  • How can we hide the coloumn in h:datatable

    Hi Friends,
    How can we hide the coloumn in h:datatable. <h:dataTable id="catalogueTable" rows="10" width="100%" binding="#{searchCatalogue.catalogueTable}" value="#{searchCatalogue.screenList}" var="catalogue" >
                                                <h:column >
                                                    <h:selectOneMenu id="searchModes" value="#{catalogue.selectedType}">
                                                        <f:selectItems value="#{catalogue.searchModesList}" />
                                                    </h:selectOneMenu>
                                                </h:column>
                                                <h:column>
                                                    <h:outputLabel value="#{rb.ofthesewords}" />
                                                </h:column>
                                                <h:column>
                                                    <h:inputText id="searchTerm" value="#{catalogue.searchTerm}" style="width:100%" />
                                                </h:column>
                                                <h:column>
                                                    <h:outputLabel value="#{rb.in}" />
                                                </h:column>
                                                <h:column>
                                                    <h:selectOneMenu id="currCustIndx" value="#{catalogue.currCustIndx}" >
                                                        <f:selectItems value="#{catalogue.customIndexList}" />
                                                    </h:selectOneMenu>
                                                </h:column>
                                                <h:column>
                                                    <a4j:commandButton value="+">
                                                        <a4j:support event="onclick" action="#{searchCatalogue.addOneRowAction}" oncomplete="visibleListView()" reRender="catalogueTable,suggMsg" />
                                                    </a4j:commandButton>
                                                </h:column>
                                                <h:column>
                                                    <a4j:commandButton value="-" >
                                                        <a4j:support event="onclick" action="#{searchCatalogue.removeOneRowAction}" oncomplete="visibleListView()" reRender="catalogueTable,suggMsg" />
                                                    </a4j:commandButton>
                                                </h:column>
                                            </h:dataTable> Initially i want to hide the this coloumn
                                                     <h:column>
                                                    <a4j:commandButton value="-" >
                                                        <a4j:support event="onclick" action="#{searchCatalogue.removeOneRowAction}" oncomplete="visibleListView()" reRender="catalogueTable,suggMsg" />
                                                    </a4j:commandButton>
                                                </h:column> so how can i hide this one.
    Edited by: Edukondalu_Avula on Nov 4, 2008 8:33 PM

    at initial time i want to hide that coloumn(+means commandbutton coloumn). when i click + symbol button i want to show the datatable with all the coloumns at this time how can i show the hidden coloumn
    Edited by: Edukondalu_Avula on Nov 5, 2008 12:51 AM

  • How can I get the events from a java program?

    I want to make a monitor to watch a java program.How can I get the events from the GUI of this program some as mouse cliking, keyinput. So I can watch these in my monitor.
    Thanks

    Hi,
    To put a monitor to the events occuring in the GHUI u need to register required components with the appropriate EventListeners.
    Liek if u want to get notified when a mouse is clicked, then u need to add The MouseListener to the component which u want to be monitored.
    Say
    myFrame which is the JFrame object which shuld be monitored for the events.
    Then in ur program u have to add following code
    myFrame.addMouseListener( someObectReference );
    Here the someObjectReference should be an instance to a concrete class ..i.e. U write a class like the following
    public class MyMouseListener implements MouseListener {
    // override the followig methods
    public void mouseClicked(MouseEvent me){ sop("MOUSE CLICKED ON THE FRAME");}
    public void mousePressed(MouseEvent me){}
    public void mouseReleased(MouseEvent me){}
    If u dont want to use another class for listening to the events. Then u can make teh current class monitor the events. To do so ur class should implement the appropriate listener and should override the required methods.
    and u should say myFrame.addMouseListenet( this );
    thats it

  • How can i hide the menu bar at the bottom of the app in itunes

    how can I hid the bar at the bottom of the App screen in itunes. Where it shows how much audio, app etc space you have left on your device

    Unforrtunately the status bar doesn't make any difference, however I have worked out that the bar does show when I go into full screen. 
    I would have thought it should also work when not in full screen - it certianly used to.

  • How can I hide the password and user name in url???

    Hi experts,
    I'm creating a login page and know I have a problem.
    The Username and password are verified in a Java class, after checking the user and password, the user should be linked to the portal.
    So far everything has worked well.
    But when I call the lin like this
    res.sendRedirect ("/ irj / portal j_user =" + UserN + "& j_password =" + passw);
    then the user name and Pwasswort appears in the url.
    Can someone tell me how can I hide the password and user name???
    It will be very helpful.
    Thank you
    Edited by: Cilvaring on Aug 5, 2011 12:00 PM

    If there is no specific reason that you have to use sendredirect...thne you can try request.forward.....
    RequestDispatcher rd = request.getRequestDispatcher("pathToResource");
      rd.forward(request, response);

  • How can I hide the borders and keep it as an option?

    How can I hide the borders and keep it as an option?  I had someone go into the css I believe, and make it so there were no borders visible on the page (I could see the dotted outline while working on it, but when pushed, it wasn't visible (which is what I wanted).  They called it "noborders."  Since I had to reinstall, it went away.  Help?
    I have Dreamweaver CS5.5

    Try this site:  CSS Border
    Add code then type in a zero. Later add border size you want.
    examples:  border: 0px solid black;
    or
    border: 1px 000000;
    or
         border-top-style: solid; 0px 000000;
         border-right-style: dotted; 0px 000000;
         border-bottom-style: solid; 2px 000000;
         border-left-style: dashed; 1px 000000;

  • How can I disable the "Events" how can I disable "Faces"

    buona sera
    how can I disable the "Events"
    how can I disable "Faces"
    grazie

    You can not
    Events are one of many views or your photos in your library - as are faces
    YOu can simply ignore both but you can disable them
    LN

  • How can I hide the recipients of a group text message?

    How can I hide the recipients of a group text message?

    This is Illustrator, no matter which version you are using.
    It doesn't work like in other programmes and Illustrator's behaviour is often undesired.
    There is no good trick that I'm aware of to mimic Draw's or Freehand's way to do it.

  • How can I hide the por:8080 on the broswer

    http://www.mydotcom.com:8080/examples/.....jsp
    How can I hide the port 8080, cause this is what shows on the URL.
    thanks

    I have no problem running with tomcat that contain chinese, but when I run the apache which is the same code as the tomcat are running, it cause error 500. I debug it , and found out that it was the chinese that cause the problem. once I took out the chinese, then it works find. Can any one tell me why?
    thanks

  • How can I hide the preview content of the text on ios 5?

    How can I hide the preview content of the text on ios 5?

    one complement. I want to hide it in the popup window.

  • How can I hide the version of ColdFusion showing in COldFusion Administrator

    How can I hide the version of coldfusion being shown from the coldfusion administrator login page? Right now I have the Version: 6,1,0,83762 showing.

    For security reasons.
    If there are known vulnerabilities with a specific version of a software release, you don't want to have someone who is scanning to be able to pull that information and then be able to try known attacks that will increase their chances of compromising your site/application.

Maybe you are looking for

  • I am looking for a 3D model drawing software program

    I am using autocad mechanical desktop for my 3D models. I can not find any way to export the files and convert them for the loader. Perhaps I could use a different program for making my models. Can you suggest an inexpensive software program with par

  • Problem with quick start guide in J2EE SDK 1.4 Beta2

    Hi, I started the application server and tryed to confirm that the Server is Running as below. http://localhost:1024 However, I got a "server not found" error. So, I tried as below. http://localhost:1024/index.html Now, it is working. Do you know why

  • 2 OAS on the same server

    we have installed a OAS 10.1.3.0 on Linux. is it posble to install OAS 10.1.3.3 on the same server, is there any confliction? if it posible, how can I change the port number for the 2nd OAS? or will it detect the port have been used and choose diffre

  • Structure design issue

    I am designing an EDD. I have an element  which can contain a large hierarchy of subelements.There is text I want to display at the start and end of the element (same text in both locations), but I don't want the user to have to enter it twice. If it

  • Nikon Df ? I need help

    Yesterday I had shot a boudoir marathon (so indoor portraits) and i had kept the D-lighting active shooting feature on high to even out the shadowed areas and keep everything very even and more flat. Upon uploading them last night something really we