Adding an animation causes an error in menus

All - any help would be appreciated.
The minute I add an animation from the library, such as a
flashing arrow, all of my drop-down menus in Captivate are
unusable. Example: I add an arrow animation, then go to "File", the
drop-down menu flashes then goes away, not allowing me to select
anything under it. It happens anywhere there is a drop-down. If I
right-click, the drop-down appears then flashes away. I can click
the Save button to save it, then I have to re-open the project and
the menus work fine....until I add another animation.
THoughts??
Thanks...
Erika

Just found a similar thread on the Import section of this
forum
If you click on an item in the library, Captivate seems to go
back to 'normal' and you can click on the pulldowns

Similar Messages

  • Adding Engine component causes: "Compiler errors occurred when generating a Windows Forms wrapper...​"

    I got this error when I tried to drop a TestStand Engine class onto my main form in VisualStudio.NET.
    Compiler errors occurred when generating a Windows Forms wrapper for ActiveX control 'AxNationalInstruments.TestStand.Interop.API'
    The error message went on to say that it saved the source in ./obj/AxInterop.TS.cs so I added that to the project. When I try to build it, I get this error:
    The designer must create an instance of type 'System.Windows.Forms.AxHost' but it cannot because the type is declared as abstract.
    I am using TestStand 3.0 evaluation, Version 7.1.3088 of Microsoft Development Environment 2003, and .NET Framework 1.1 Version 1.1.4322 SP1.
    Is this aximp.exe problem?
    Can someone suggest how to fix this?
    Thanks,
    Jeff

    TestStand installs pre-built interop wrappers for the TestStand engine and all the TestStand UserInterface controls. You can find them in \API\DotNet\Assemblies\CurrentVersion\.
    However, the best thing to do is usually to add the ApplicationMgr control to your .NET form and then call form.axApplicationMgr1.GetEngine() to get the engine. Doing this automatically adds references to the interop assemblies to your project. You can find this control in the TestStand tab of your .NET toolbox when you have a form active.
    Ideally, you should start with the .NET simple operator interface examples which are in \OperatorInterfaces\NI\Simple\CSharp\ and \OperatorInterfaces\NI\Simple\VB.Net\
    - James

  • A view, function and TO_DATE causing an error.

    I have the following statement which calls a view, VW_DIST_RPT_WORK_LIST which in turn calls a function which returns either 'Null' or a date string e.g. '07 Oct 2003' as a VARCHAR2 (alias PROJECTED_DELIVERY_DATE).
    Statement:
    SELECT CUSTOMER_NAME, PROTOCOL_REFERENCE, SHIPPING_REFERENCE, CUSTOMER_REFERENCE, COUNTRY, PROJECTED_DELIVERY_DATE, STATUS, NOTES,
    TO_DATE(PROJECTED_DELIVERY_DATE)
    FROM VW_DIST_RPT_WORK_LIST
    WHERE EXPECTED_DESP_DT IS NOT NULL
    AND UPPER(PROJECTED_DELIVERY_DATE) NOT LIKE('NULL%')
    AND EXPECTED_DESP_DT <= TO_DATE('07/10/2003', 'DD/MM/YYYY')
    AND TO_DATE(PROJECTED_DELIVERY_DATE) <= TO_DATE('31/12/2003', 'DD/MM/YYYY') --< Problem here
    I need to be able to specify a date filter on the PROJECTED_DELIVERY_DATE field and hence used the TO_DATE(PROJECTED_DELIVERY_DATE) <= TO_DATE('31/12/2003', 'DD/MM/YYYY') but this is generating an ORA-01858: a non-numeric character was found where a numeric character was expected.
    I think the problem lies with the fact that this field can contain 'Null' which cannot be converted to a date using TO_DATE. I've tried adding a NOT LIKE ('NULL%') statement to catch any nulls which may be creeping in bu this doesn't solve the problem.
    I've added TO_DATE(PROJECTED_DELIVERY_DATE) to the select above to determine if the nulls are being caught and if the TO_DATE in performing the conversion correctly which it is on both counts.
    Any ideas anyone ?

    The answer provided above by Monika will work for this situation. However, you should seriously think whether you should be using a string for date datatype. Ideally, you should rewrite the function that returns PROJECTED_DELIVERY_DATE and change the return type to DATE. The least you should do is to return NULL (instead of the string 'NULL') from the function. Oracle handles nulls perfectly, there is no reason you should write code to handle nulls;
    One more thing. Looking at the type of error you are receiving, it seems that you are using rule based optimizer. Why do I think so? Because, in rule based optimizer, the conditions are evaluated in a specific order (viz, bottoms-up for AND clauses). To show this, look at the following simple demonstration. I did this in Oracle 8.1.6 (also in 9.2.0.4.0 on Windows).
    -- Check the database version
    select * from v$version;
    BANNER
    Oracle8i Enterprise Edition Release 8.1.6.1.0 - Production
    PL/SQL Release 8.1.6.1.0 - Production
    CORE 8.1.6.0.0 Production
    TNS for Solaris: Version 8.1.6.0.0 - Production
    NLSRTL Version 3.4.0.0.0 - Production
    -- Create the test table
    create table test (a number(2));
    insert into test(a) values (0);
    insert into test(a) values (1);
    insert into test(a) values (2);
    insert into test(a) values (3);
    insert into test(a) values (4);
    insert into test(a) values (5);
    insert into test(a) values (6);
    insert into test(a) values (7);
    commit;
    -- See that I have not analyzed the table. This will make use of RULE based optimizer
    select * from test
    where a > 0
    and 1/a < .25;
    and 1/a < .25
    ERROR at line 3:
    ORA-01476: divisor is equal to zero
    -- Look at the query clause. Even though I specifically asked for records where a is positive
    -- the evaluation path of rule based optimizer started at the bottom and as it evaluated the
    -- first row with a=0, and caused an error.
    -- Now look at the query below. I just re-arranged the conditions so that a > 0 is evaluated
    -- first. As a result, the row with a=0 is ignored and the query executes without any problem.
    select * from test
    where 1/a < .25
    and a > 0;
    A
    5
    6
    7
    -- Now I analyze the table to create statistics. This will make the query use the
    -- cost based optimizer (since optimizer goal is set to CHOOSE)
    analyze table test compute statistics;
    Table analyzed.
    -- Now I issue the erring query. See it executes without any problem. This indicates that
    -- the cost based optimizer was intelligent enough to evaluate the proper path instead of
    -- looking only at the syntax.
    select * from test
    where a > 0
    and 1/a < .25;
    A
    5
    6
    7
    Does the above example seem familiar to your case? Even though you had the AND UPPER(PROJECTED_DELIVERY_DATE) NOT LIKE('NULL%') in your query, a record with PROJECTED_DELIVERY_DATE = 'NULL' was evaluated first and that caused the error.
    Summary
    1. Use dates for dates and strings for strings
    2. Use cost based optimizer
    Thanks
    Suman

  • Adding external DOCTYPE causes "UnknownHostException" in x:parse

    Hi,
    I am using the following JSTL to parse and retrieve data from an xml file:
    <c:import url="starfleet.xml" var="sf"/>
    <x:parse doc="${sf}" varDom="dom"/>This works great but I am needing to add a DOCTYPE to the XML document:
    <!DOCTYPE starship SYSTEM "starfleet.dtd" >As soon as that line is added I get the following error message on the JSP page:
    org.apache.jasper.JasperException: javax.servlet.ServletException: javax.servlet.jsp.JspException: java.net.UnknownHostException: starfleet.dtdHowever placing the DOCTYPE internally brings up no problems e.g.
    <!DOCTYPE starship [
    ]>
    Any ideas why adding an external doctype is causing an "UnknownHostException"?
    Thanks
    Edited by: 4fingers on Jan 7, 2010 10:09 PM

    Hi Dev,
    When you create an external dimension, whether by creating it directly in an XML file or by transforming it from a source file, the dimension must conform to Endeca’s external_dimensions.dtd file before you import it into your project. The dtd file can be found here: $ENDECA_ROOT/conf/dtd. Also make sure to declare the dtd file in your XML:
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!DOCTYPE external_dimensions SYSTEM "external_dimensions.dtd">
    HTH,
    Pankaj.

  • For the Seaon I Added an Animated Snow Globe to my Collage Toolkit

    I  Updated my Photo Collage Toolkit for Photoshop Adding an Animated Snow Globe Action, Template and Video Demo.
    If you just want the Animated Snow Globe I created a bare bone mini package you can download.
    The SnowGlobe Zip file contains
      1.) SnowGlobe.atn - The action that drive the full process
    2.) InteractivePopulateCollage.jsx - Toolkit script used to populate the Template
    3.) Photo Collage Text Styles.asl - Text Layer style the script list
    4.) Photo Collage Styles.asl - image layer style the script list
    5.) SnowGlobe4x3.psd - Animated Photo Collage Template
    The image files used in the video demo to populate the Background and Globe images
    The demo also used the stamp Filename option th have the names stamped onto the images.
    6.) Merry Christmas 2012.jpg
    7.) Drink.png
    Drop the Action .atn file and the layer styles .asl files onto Photoshop to load them into Photoshop.
    Copy InteractivePopulateCollage.jsx into Photoshop's Presets\Scripts folder
    Video Demo: http://www.mouseprints.net/old/dpr/SnowGlobe.html
    Mini Package: http://www.mouseprints.net/old/dpr/SnowGlobe.zip
    Toolkit: http://www.mouseprints.net/old/dpr/PhotoCollageToolkit.html
    While the toolkit works with CS2 through CS6. The SnowGlobe template require CS5 or CS6 for easy moving.
    There is also a Bug in CS6 Scripting. CS6 is the buggiest version of Photoshop ever released. Adobe failed to add "Bicubic Automatic" support into Photoshop's scripting DOM. If your Photoshop "Interpolation" preference is left set to Adobe's new default setting "Bicubic Automatic" some Photoshop Scripts will fail with an internal scripting error.
    Before CS6 if you wanted to use a particular interpolation method transforming a layer you needed to change Photoshop Preference to do that. In CS6 Adobe has added an interpolation method to some forms of transform. However to use a particular interpolation method while transforming a smart object layer your still required to do this the old way. It is not possible to retrieve and restore a users Photoshop interpolation preference using Adobe's scripting DOM when the current setting is "Bicubic Automatic". The above script will fail in CS6 if your Photoshop interpolation preference is "Bicubic Automatic".

    Hi
    My first thoughts are
    • iMovie ill behaving - Trash the iMovie pref file - use to set things right
    • in reg. to Photos - Did You change iPhoto Photo Library - Then iMovie get's lost as it peeks into iPhoto on start up to see where photos are stored. Set iPhoto back to first Photo Library (when iMovie is not running) then start iMovie.
    Yours Bengt W

  • When I publish my site on one specific page where i've added {tag_pagecontent} I get the error:Some files on the server may be missing or incorrect. Clear browser cache and try again. If the problem persists please contact website author.

    When I publish my site on one specific page where I've added {tag_pagecontent} I get the error:
    'Some files on the server may be missing or incorrect. Clear browser cache and try again. If the problem persists please contact website author.'
    I'm trying to get a blog module going, I've even deleted the html insert bog with the tag in and re-published which then I don't get the error but as a result no blog either. But then I add the tag in again and publish the error comes back. I've used the dev console and it says that my musicians sample.css is out of date but why is it only out of date when I add in html to my muse site?
    HELP!!!! I've searched other threads and to no avail I'm publishing so no direct ftp going on. the only thing I changed in business catalyst was the module stylesheet in order to style the blog. I've tried uploading and replacing all files nothing seems to work. the site is here:
    http://www.musicstudentsforhire.co.uk/musicians-samples.html
    It's only this page as it has the blog on. Also I've noticed when I've re-published occasionally it will show the mobile version on my desktop and not the desktop version??? no idea why that's happening so I've had to turn that off. any explanation on why that is happening would also be much appreciated.

    I haven't received an answer as of yet, I'll post t on here when I do. I de-activated the mobile site because it's my clients site so he needs it to be operational during the day. I hope someone gives me an answer soon.

  • I am trying to install current Firefox 3.6, as I am currently running an older Firefox on my Windows ME, but I keep getting this error message: "Setup has caused an error in SETUP.EXE Setup will now close."--Please help?

    I have downloaded all IP changer Privacy software I have purchased and am trying to install it, and although it is made to work with WindowsME that I am currently using on my computer, it now says it requires Firefox 3 or above to be able to install the software. Therefore, I am trying to update my Firefox to current 3.6 but once Firefox 3.6 downloads it doesn't install. Instead I just keep getting the same error message: Setup has caused an error in SETUP.EXE. Set up will now close. Several times, I have also tried restarting the computer as the error message also recommended But I just still keep getting the same error message when I try to update/install Firefox 3.5. Please help/advise on how I can fix this problem. Many thanks in advance!

    Firefox 2.0.0.20 is the last ever version of Firefox for Win98 / SE / ME.
    You can get it from here, but you are better off using K-Meleon (derived from Firefox) or Opera instead an old version of Firefox:
    [ftp://ftp.mozilla.org/pub/firefox/releases/2.0.0.20/win32/en-US/]
    You can try KernelEx to get Firefox 3+ to work, but it would be very slow with an old PC of less than 750Mhz. 3.5 and later supposedly doesn't work.
    http://sourceforge.net/projects/kernelex/

  • Photoshop CS4 for Mac What can cause the error: Plug-in failed to load - NO VERSION

    With Photoshop CS4 for Mac I install the Kodak Plug-in DIGITAL GEM Airbrush Professional v2.1.0. When Photoshop starts I get an error:
    Plug-ins that failed to load:
       DIGITAL GEM Airbrush Professional v2.1.0 NO VERSION -  - from the file “DigitalAIRProv2.plugin”Flash:
       Connections
       Kuler
    This plug-in works fine on my Mac Pro with Photoshop CS4 and OS 10.6 but fails on a new Macbook Air.
    Reinstalling the plug-in did not make any difference. What can cause this error?

    Thanks Chris, That was my first thought too but this same plug-in works on another installation of CS4. This is a Mac installation and the plug-in is Universal so it should work. Is there any other possible cause for this error? Would Photoshop refuse to load a plug-in in a low memory situation?
    Also, The Flash extensions:Connections and Kuler are working OK, I just copied a little more out of the System Info report than I needed to.

  • DESADV01 E1EDP07 segment per line item causes EDIFACT error

    When a Sales Order has the PO Number + Date populated, the subsequent outbound Delivery IDoc (DESADV01) contains a parent E1EDP07 segment for every child line item segment (E1EDP09).  For a SO without PO Date, the IDoc is created with a single E1EDP07 with multiple child E1EDP09 segments.  This is standard SAP - do you need to code around this?
    The first scenario causes an error in EDIFACT mapping, as a limit of 9 RFF segments is allowed (E1EDP07 is a level 1 segment).  Partner systems reject this.

    Hi,
    Segment field should be optional, so check the posting keys in OB41, check the GL account which hit this posting and check the FIeld status in OBC4 and make the segment field as optional.
    while posting the transactions you can check in more then Profit center and segment details will be updated in the postings.
    try out, this might help. check the new ledger document types also.
    Regards,
    Padma

  • Please advice on adding 3D-animation files into a PDF with Acrobat Pro DC.

    Hello,
    Where is the button animation in Acrobat Pro DC?
    Can you give me advice on adding 3D-animation files into a PDF with Acrobat Pro DC.
    I have Acrobat PRO DC .
    Thank you.

    Hi George,
    I just tried adding the files as attachments; however I didn't like doing that because it increased the file size of my PDF document quite a bit. 
    I'm not sure if you're familiar with the "Insert Object" command in MS Word, but I want to do the same thing in my PDF document...but the key is, anyone must to be able to open the embedded file from any location.
    I created an MS Word document with several embedded objects.  I was later asked to PDF the Word document, but since embedded MS Word objects do not migrate to the PDF, I am now trying to embed the same files I embedded into my Word document into my PDF document over top of the icon image.  The file types I'm trying to embed include MS Word, Excel, PowerPoint, and Adobe PDF.  Does this make more sense?  I want to create a hyperlink over top the icon image that was PDF'd from the MS Word document which allows any user to click on the link and open the separate file.

  • Does anyone know what is causing this error please?

    I recently ran sfc /scannow. It completed without giving me any notifications other than a number of:
    "Files that are required for Windows to run properly must be copied to the DLL cache."
    I was prompted to insert my XP SP3 installation CD and click on 'retry'.
    The scan lasted for around 40 minutes then closed.......at no stage was I advised that it had been unsuccessful.
    When I restarted my computer directly afterwards, half way through booting a 'please wait' appeared, as if something was taking place.
    I thought all had gone well until I looked in Event Viewer later. There are approximately 90 Windows File Protection entries there mostly with the following information:
    The system file ........ could not be copied into the DLL cache. The specific error code is 0x800b0100 [No signature was present in the subject]. This file is necessary to maintain system stability.
    Does anyone know what causes that error and what I need to do to resolve it please?

    Thank you very much for helping.
    I have already tried to run the Microsoft Fix it from there for XP SP3, the os I have>>>>>>>"This troubleshooter does not apply to your system. We're sorry, but this troubleshooter is not compatible with your current system's configuration."
    That was the only Microsoft information I could find on the specific error code I received: 0x800b0100......although the article applies to Microsoft Updates, I thought it might cover this too.
    I have now run SFC three times, but errors still showed in Event Viewer.
    I regularly run Chkdsk, last few times no errors.
    I am actually having my computer checked for malware right now by specialist malware removers......all the malware scans I regularly run have given me the all clear for some time (McAfee Stinger, Hitman Pro, Malwarebytes - MBAM, TDSSKiller) but there has
    been malware on my computer in the past, which was removed (not serious I was told).
    In two of the scans the techs asked me to carry out there are
    hundreds of dll cache entries under
    Files/Folders - Created Within 30 Days on the date I run SFC.
    I am waiting for this to be confirmed, but it looks to me as if SFC was actually successful to a large extent and the entries in Event Viewer are some failures (not all as I previously thought)?
    I also have a serious problem in relation to Microsoft Updates (please see my other question).

  • [svn:fx-trunk] 11999: Fixed: ASC-3889 - Using setting in a for loop causes Verify error

    Revision: 11999
    Revision: 11999
    Author:   [email protected]
    Date:     2009-11-19 11:37:09 -0800 (Thu, 19 Nov 2009)
    Log Message:
    Fixed: ASC-3889 - Using setting in a for loop causes Verify error
    Notes: emit pop after callstatic to a void function to balance the stack.
    Reviewer: jodyer+
    Testing: asc,tamarin,flex checkin tests
    Ticket Links:
        http://bugs.adobe.com/jira/browse/ASC-3889
    Modified Paths:
        flex/sdk/trunk/modules/asc/src/java/macromedia/asc/semantics/CodeGenerator.java

    Blacklisting the ahci module does indeed get rid of the error. Would be nice to figure out why it was conflicting with the ahci module though.
    I have not yet tried the 173xx drivers, but the latest drivers for the Quadro FX 580 are the 256.53 drivers according to nvidia.
    Posted at the nV forums (http://www.nvnews.net/vbulletin/showthread.php?t=155282), so we'll see what they suggest.

  • [svn:fx-trunk] 11530: Fix ASC-3790 ( conditional expression in for loop causes verifier error) r=jodyer

    Revision: 11530
    Author:   [email protected]
    Date:     2009-11-06 13:23:05 -0800 (Fri, 06 Nov 2009)
    Log Message:
    Fix ASC-3790 (conditional expression in for loop causes verifier error) r=jodyer
    Ticket Links:
        http://bugs.adobe.com/jira/browse/ASC-3790
    Modified Paths:
        flex/sdk/trunk/modules/asc/src/java/macromedia/asc/parser/ConditionalExpressionNode.java

  • How to find the cause ofan error at runtime in forms (10g)

    hi
    can u please tell me how to find the cause ofan error at runtime.
    in forms 6i, the shortcut key is shift+f1
    i needthe shotcut key in 10g forms.
    thanx

    or just look in you menu help, -- last error or you can find the list of shortcut keys there ...
    \Erwin

  • The query against the database caused an error in https: site

    Hi
    I have created a new Data source and External content type in sharePoint 2013
    I have also given all the permission to this Content type (including "Users(Windows)")
    I also having edit permission in the Sql-database.
    I have tied almost all the possibilities given in the net for this error.
    still the error("the query against the database caused an error") is there.
    Is this because of "https:/ " in the url?
    Can any one give a suggestion / solution for this?
    Thanks
    S H A J A N

    Hi,
    Can you please check ULS Log as well as event viewer, to see if there's any related error reported?
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com

Maybe you are looking for

  • Microsoft Windows: "Do you want to Scan and Fix" message

    Every time I plug my Ipod up to my computer, I get a window with this: "Do you want to Scan and Fix ...(L:)?" There might be a problem with some files on this device or disc. This can happen if you remove the device or disc before all files have been

  • Outlook 2013 XLS Attachments cannot be opened in Excel 2013 due to Trusted Center restrictions with Outlook Secure Temp Folder

    Dear all, I'm having some serious issues with Office 2013's Trusted Center settings. In Outlook 2013 XLS Attachments cannot be directly opened in Excel 2013 with double-clicking due to Trusted Center restrictions for Excel 2013 regarding Outlook's Se

  • Oracle Fusion Middleware 11G  B2B Document Type not getting Identified

    Hello, I have installed Oracle Fusion Middleware 11g on my local machine and created a custom document type with proper .xsd definition and XPath Expression Identifier in Oracle B2B interface and configured its trading partners ( Host & Remote ) alon

  • Gmail Syncing Problem

    My 2G iPod Touch is giving me a headache. For the past few days my Gmail account which is set up for the mail.app isn't working right. When I send an email or delete an email all the messages are put in the default "All Mail" folder the app creates a

  • Create new report

    Hi everybody, I need to create a new report with a format very similar to "Inventory(Stock) in Warehouse Report". I created a query in Query Generator that recovers the data that I need. However, I need for the report to insert a title with the name