Themes panel "invisible"in Captivate 6

I'm a Creative Cloud subscriber who also owns eLearning Suite 2.5, which includes Captivate 5.5. I've downloaded the trial of Captivate 6 (6.0.1.240). I'm using Windows 8 Home 64-bit on an ASUS Essentio 6830.
In Captivate 6, the Show/Hide Themes Panel option is checked, but I do not see the Themes Panel in my Classic workspace. However, if I click where the themes should be, I get a message that is the same as if I had chosen a theme. So it seems like the Themes Panel is there, but "invisible". I've tried activating / deactivating the panel, but the themes do not appear. When the Theme Panel is deactivated, clicking in the themes area does not cause the behavior I mentioned above. So again, it looks like it's working as it's supposed to, but I just can't see it. Very strange.
Any help would be appreciated.

It is just an idea but Captivate 6 is not approved for Win8 yet AFAIK.
Did you try to change the workspace? Or use the option Show Themes panel in the Themes menu?
Lilybiri

Similar Messages

  • How can I programically make a top level VI panel invisible?

    How can I programically make a top level VI panel invisible?

    You can use VI Server's 'Close FP' method to close the front-panel. You will need a reference to that VI to invoke the method. One easy way is to launch the VI with the VI Server and hold on to its reference.
    See the attached diagram -- the top-level.vi is launched and run, we wait for 5 seconds, and then close its front-panel.
    Hope this gives you some ideas.
    Khalid
    Attachments:
    close_fp.png ‏38 KB

  • Adobe Color Themes Panel in PS CC. Does it show all your themes?

    For some reason, my Color themes Panel in PS CC2014 does only show a certain amount of colour themes, and it is not resizable any further. There is also no scrolling available. Only half of my themes show up that way. I can bump them to my favourites and when synced again they show up in the favourite section, so they are synced … Anyone out there found a way to access all your themes from within the Panel/MyThemes?
    thx,
    J

    For some reason, my Color themes Panel in PS CC2014 does only show a certain amount of colour themes, and it is not resizable any further. There is also no scrolling available. Only half of my themes show up that way. I can bump them to my favourites and when synced again they show up in the favourite section, so they are synced … Anyone out there found a way to access all your themes from within the Panel/MyThemes?
    thx,
    J

  • How to make Navigation Panel invisible on portal screen????

    Hi,
    I need to create two roles ( X and Y ).
    when the user is assgned role X: he should see standard portal screen
    When user is assigned role Y: he should see customized portal screen.
    Features of customized portal screen:
    All features of portal should not be seen. The user should see only the iview and nothing else.
    What I have done:
    Created Role ( X and Y ) and respective iviews
    With Framework page:
    I copied standard framework page. made all iviews invisible except Desktop Innerpage.
    I opend the Innerpage. I made all all iviews invisible except the Content Area.
    With Desktop:
    I create new desktop and assigned the new framework page to deaktop and made it default.
    With Rule Collection: I created new rule collection where:
    if Role = Y
    display: new desktop
    if role = X
    display: default desktop
    Result:
    when I login with role X it shows default Desktop
    Problem Area: When i login with ROLE Y, No portal feature is visible But We can still Expand and collapse Navigation panel.
    Requirement: I do not want the user should see the navigation panel. It should not be visible on screen even though it is empty.
    I tried lots almost all properties. Please help.
    Any help would be highly appreciated.
    Thanks and Regards,
    Aditya Deshpande

    hi;
    Then you have to create Role Y without workset or Page only with iViews, so no Navigation will be generated. :h1
    But if you habe Workset and Page in your role , just go to all Page and workset and set this properties>navigation>Invisible in Navigation Areas  to false.
    I Hoppe it will help
    Take care
    Gede

  • Great job! New panel Swatches in Captivate 7

    I waited for this so long time!!! Today I have instaled new update Captivate 7, Win7. Now we have new panel Swatches, so finally I can save my colors into swatch and save it as ASE file - exchange format for color swatches. Great job Adobe CP team! It need in the future some more enhacements, but for this time I am happy, it is here!
    I tried import to Captivate 7 my swatch.ase from Illustrator CC and it works fine. But after exporting another swatch from Captivate 7 as ASE and import it to Illustrator CC or Photoshop CC, it show error dialog. Hope, will be fixed.
    Somebody know, what other new capabilities contain this update?
    best regards
    Yarik

    Yes, I'm very happy with the enhancements to Advanced actions and variables! It pushed me at blogging at least once again but Sreekanth already mentioned it http://blog.lilybiri.com/new-features-in-captivate-7-dot-01
    Lieve

  • Making Multiple Panels invisible and visible

    So I have this problem, Im trying to make different panels visible and invisible by the means of a button. I believe my code is sound, but its not working. I would really appreciate it if someone were to look at my code and solve this problem. Basically my button isnt working.
    import java.awt.image.*;
    import java.awt.geom.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.Scanner;
    public class panels extends JFrame
    private JPanel panel1, panel2, panel3, panel4;
    private JLabel title;
    private JButton test;
    public panels ()
    setSize (400,800);
    JButton test = new JButton ("test");
    title = new JLabel ("");
    JPanel panel1 = new JPanel();
    panel1.setPreferredSize(new Dimension(200,200));
    panel1.setLayout (new GridLayout(5,2));
    panel1.setBackground(Color.black);
    JPanel panel2 = new JPanel();
    panel2.setPreferredSize(new Dimension (200,200));
    panel2.setBackground(Color.red);
    JPanel panel3 = new JPanel();
    panel3.setPreferredSize (new Dimension (200,200));
    panel3.setBackground(Color.orange);
    JPanel panel4 = new JPanel();
    panel4.setPreferredSize(new Dimension (200,200));
    panel4.setBackground(Color.green);
    Container container = getContentPane ();
    container.setLayout (new GridLayout(4,1));
    container.setBackground (Color.white);
    container.add(panel1);
    panel1.add(test);
    container.add(panel2);
    container.add(panel3);
    container.add(panel4);
    ButtonHandler handler = new ButtonHandler ();
    test.addActionListener (handler);
    setVisible (true);
    public static void main (String args[])
    panels application = new panels ();
    private class ButtonHandler implements ActionListener
    public void actionPerformed (ActionEvent event)
    if (event.getSource () == test)
    panel1.setVisible(true);
    panel2.setVisible(false);
    panel3.setVisible(false);
    panel4.setVisible(false);
    }

    Take a look at this example and you will see that your code is missing a few things.
    http://www.javaprogrammingforums.com/java-swing-tutorials/278-how-add-actionlistener-jbutton-java-swing.html
    There are plenty of examles on the web of how to do that
    http://www.youtube.com/watch?v=GvTZ2Huo0T4

  • MOSS 2007 Custom Theme Images Invisible to Users

    Hi,
    Our MOSS 2007 Site uses Custom Theme and the theme uses image for styling navigation background. The issue is the when a user logs in to site he is not able to view the navigation background image whereas when a user with full control
    logs in to site he can view the navigation background image.
    Kindly suggest.

    Hi,
    Is the image stored in a location that standard users have access to (style library)?
    Is the image checked-in and published/approved?
    Cheers
    Matt

  • N73 ME. Themes get invisible after installation.

    Hello ..
    My N73 Music edition is jsut 2 months old. When I install new themes, only some of them get installed properly others give message "certificate expired".
    couple of times this has happened tha ti have installed a theme applied it for a while but when i changed it .its gone from the list forever.and when i try to install it again. it gives message update error.
    I dont know whats happeing.exactly two times happened the same thing.

    Thankx Rahul for your reply. But hte question is ? do I have to change the date whenever i am installing any theme ? If yes then Why ??
    Software update , date is april 2007 , phone was manufactured in 2007, then why we have to change the date ? Any idea ?
    Secondly I have noticed whenevr date is changed the alarm is removed.
    In the mean time I have installed couple of new themes and couple of old ones vanished again.. They were properly installed and working. No I will never be able to install them again they will give message "Installation Error".

  • Assets panel invisible

    I seem to have lost the assets panel. Ctrl-Shift D doesn't seem to do anything, nor does the menu. Where is it hiding?
    Aha -- reboot computer, back into Muse website, open master page, assets and other panels appear. Edit another page, assets and other panels disappear again. Won't return except by above silly procedure. Any ideas?

    Hi,
    Try clearing the preferences by moving the following folder to the desktop,
    Windows:
    %appdata%\AdobeMuse
    MAC:
    /Library/Preferences/AdobeMuse
    Let me know if that helps.
    Regards,
    Abhishek Maurya

  • How can I Apply themes again in Captivate 7?

    Hi I was modifing themes then when I start a new project and I want apply some theme tell me it's not possible. How can I fix it? Please help me

    I have the same problem.  I had no issue with themes but now, after creating a custom theme and saving it, every time I try to apply ANY theme (in new or existing projects) I get the same error message, "Cannot apply the new theme". 
    I went into my Adobe folders and it looks like in my "Themes" folder, somehow my skins are now in there.  All I'd like to do is be able to go in and reapply the default themes that come with Captivate 7.  What's weird is that I can see the themes in the "Themes Panel" but when I click on any of them to apply, I get the same "Cannot apply the new theme" message.  I'm SO FRUSTRATED!!!

  • Can't apply a new theme to Captivate 7 projects

    Anyone else experiencing a problem applying a new theme in Captivate 7.0.0.118 on Windows and.or Mac?
    Whenever I try to apply a new, or built-in theme I get a popup stating "Cannot apply the new theme". 
    I haven't had the need to do this recently, but now that I do, it doesn't work in either of my development environments of several projects.
    Can anyone offer a solution, or is something recently broken in Cap7?

    That didn't help.  But let me tell you a bit more about the scenario, symptoms, what I found and how I resolved it.
    Scenario and Synptoms:
    After creating some new styles affecting nearly every object in the Object Style Manager, I created a new theme and added it to my themes panel.  The new theme saved successfully, with not indication of errror. I then relauched C7 and opened an existing project.  When I tried to apply a standard theme, it appeared to be working until the end, when it popped a window stateing the new theme could not be added (no indication as to why).  When I tried to apply my new custom them C7 crashed immediatly, with no error message at all and not even a message when I relaunched C7 that there had been a problem during the previous runtime.
    I followed your directions on Win7 and the problem did not change. 
    Findings and Resolution:
    Suspecting a corrupt or bad theme, I renamed it and relaunched C7. This time when I tried to change to a standard theme, everything worked as expected.
    I then created another custom theme like my original (before the extensive style changes) and everything still works as expected.
    If I try to apply the suspected theme now, it appears to work the first time, but if  I try and changeit  the problems start over again as I described above.
    Summary:
    I suspect the custom theme was somehow corrupted.  If Adobe is interested in testing further, perhaps I can send you the corrupted theme.  For now, I have a reasonable work-around.
    Thank you.

  • Is there a way to import a theme from Powerpoint so that it becomes a theme in Captivate 7

    I have a powerpoint theme that I'd like to use for my captivate eLearning. Is it possible to import this theme so that I can quickly apply it to my captivate projects?

    Hello Kurt,
    Welcome to Adobe Forums,
    I don't think that you will be able to import the themes from Powerpoint in Captivate.
    As the extension in which themes are saved in powerpoint is (.thmx) and Captivate doesn't provide any option to import .thmx file
    Thanks and Regards
    Himanshu Satija

  • Invisible Layers Showing Up When Publishing

    I'm using Captivate 5 and the layers that I have made invisible are showing up when I publish the file. Does anyone know how to correct this? I make the layers invisible by clicking the eye icon on the layer. The red X shows up, but the layer is still visible when the file is published. The layer is not visible when I preview the slide, however. I don't see any options or preferences to adjust this. 

    Hello and welcome on the forum,
    This is a common misunderstanding: setting a layer to invisible on the Timeline is only meant for editing reasons, not to hide the object. One example: if several objects are in the same place and you want to edit the one that is down in the stack order, hide those above. It has however no result when publishing. So your 'issue' is expected behavior. If you want to hide objects, you have to set them to invisible in the Properties panel, uncheck the option 'Visible' in the upper part.
    I explained the functionalities of the Timeline in a dedicated blog post, if you like to have a look, here is the link:
    Tiny Timeline Tidbits
    Lilybiri

  • Easy question about buttons and panels

    Hey all,
    I have a problem with button visibility.
    When I put buttons on a panel and then make the panel invisible,
    you can still see the buttons if you move your mouse over them!
    Strangely enough this only happens when I use a panel in a seperate class. Does anyone know why this happens, or better yet; a solution?
    Thanks

    Somehow I don't believe you. What do you mean "...you can still see the buttons if you move your mouse over them...". Is there a chance that you hae mixed AWT and Swing? Please post a small code example(of course formatted using the 'code' button).
    Mike

  • HIDE / SHOW active panels

    hallo another tweak to my tiny script...
    I know its a little foolish to be tweaking such a little nonsense script BUT hey everybody has to start somewhere and THAT'S what a forum is about :)
    I got this problem:
    Iam trying to hide all panels i have currentlly visible and later show them again as they were before... i can do it in two separate scripts (scriptHIDE, scriptSHOW) thats fine with me...
    i just need to script an exact functionality of pressing TAB key (show/hide panels)
    when i use "app.panels.everyItem().visible = false" all the panels dissapear BUT there is no way to show them back :) they are gone
    when i in contrary use "app.panels.everyItem().visible = true" InDesign shows EVERY panel possible...
    isnt there some smarter and cleaner way to toggle ON / OFF panels but only those which are currentlly visible (including Tools and Control)...

    Hi Rosta,
    My idea is to save "visible" property of every panel in an array, and then after making every panel invisible you can restore the visible state of the panels:
    // remember which panels visible and invisible in array
    var arr = app.panels.everyItem().visible;
    // make every panel invisible
    app.panels.everyItem().visible = false;
    // restore settings from the array
    for (i=app.panels.length -1; i>=0; i--){
    app.panels[i].visible = arr[i];
    Kasyan

Maybe you are looking for

  • 3.1EA2 bug still not fixed - Members of package body not listed in the tree

    Hi, I was working today with SQL Developer again and found that this bug is still not fixed even when it was reported more than 1 year ago!!! I did a quick search and found it here Package Body Tree not always showing The problem is when you expand t

  • Pxi ethernet streaming

    hi i want to know if anyone has experimented with streaming using ethernet on a PXI(e) platform? i want to stream from a 100 Msps PXI digitizer to a non-pxi PC? what are the issues at hand...? currently my system is windows XP, ethernet gigabit on a

  • OnMouseOver Calendar Link Tooltip

    Hi, I would like to use the above on a calendar region so when a user hovers over the event for a day, they will see the text associated with the event as a tool tip. I have this working for a report column link which has the Link Attribute field to

  • Logic Pro 9.1.6 in 32-bit not in 64-bit. Why?

    I upgraded to LP 9.1.6 and when the app is launching it tells me it's running in 32-bit and not in 64-bit. I don't understand why, I am running the latest OS on the latest model MacBook Pro 15". Any ideas on why this happens and how to change it? Tha

  • Program is crashing when you click on preferences

    I have installed Lighroom. Everything is working fine except preferences. The moment I click on preferences the program is crashing. I removed, rebooted and re installed. Still the same problem. Please advise