Loaded Captivate MovieClip properties changing

I have a 25 frame main movie which I call the wrapper.
Frame 1 initializes variable for first movie clip url to be
loaded (actually Captivate single slide instructions) and holds
preloader
Frame 2 loads default movie clip (from Frame 1) and has a
menu to allow the user to load 3 other Captivate movie clips.
(Demo, Sim, or Test) It is 20 frames for animation onto stage
Frame 25 is just stop()
My problem is that formatting on a slide in Captivate is
changing when loaded into my wrapper.
As I am not setting any formatting on the screen or on the
loader, I am confused as to how to prevent this from happening.
Below is the ActionScript. Both the wrapper and the CaptivateMovies
are running 30 fps. All are published to Flash 8 player.
=========================
Frame One AS2
================
stop();
myURL="xxxxxxxxxxxxxxxxxxxxxxxxxxxx/swstart.swf"
//DO NOT REMOVE THIS LINE
//this._lockroot = true;
SIMPLE PRELOADER CODE
this.onEnterFrame = function () {
if(this.getBytesLoaded() == this.getBytesTotal()) {
delete(this.onEnterFrame);
gotoAndPlay("start");//start is Frame 2
============
Frame 2 AS2
======================
mode="START"//Mode is a dynamic text display so the
participant knows which movie is playing, Start, Show Me, Let Me
Try or Test Me
//-------------Movie Clip Loader-----------------\\
myLoad = function(){
var mcLoader:MovieClipLoader = new MovieClipLoader();
mcLoader.loadClip(myURL, myLoader);
myLoad();
stop();
=================================
Menu movieClip AS2
======================
stop();
menu_btn.onRollOver=function(){
play();
showMe_btn.onRelease=function(){
_root.mode="SHOW ME";
_root.myURL="xxxxxxxxxxxxxxxx/demo.swf"
_root.myLoad();
play();
meTry_btn.onRelease=function(){
_root.mode="LET ME TRY";
_root.myURL="xxxxxxxxxxx/sim.swf"
_root.myLoad();
play();
testMe_btn.onRelease=function(){
_root.mode="TEST ME";
_root.myURL="xxxxxxxxxxxxxx/test.swf";
_root.myLoad();
play();
jobAid_btn.onRelease=function(){
getURL("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.pdf","_blank");
idPro_btn.onRelease=function(){
getURL("xxxxxxxxxxxxxxxxxxxxxxx.html","_blank");
support_btn.onRelease=function(){
getURL("mailto:[email protected]?subject=Perception%20Software%20Support%20Request");
}

no.
but, you can re-add the child movieclip with each loop.

Similar Messages

  • How to load a movieclip from libary with a button?

    Hi!
    I am kinda new to Flash and i have a queston.I made a
    movieclip that i keep in the libary. I have a button that i want to
    load the movieclip on the screen while pressing it. Queston is: how
    or what kind of code do i put for the button to load the movieclip
    wich is in my libary? As i see there is no simple soulution for
    this with the script assistent? I got the option load movie but it
    only loads external files or i get error messages when trying to
    load my movie.
    Please help me with this.
    /Tobias

    there are a few things you'll need to do in order to achieve
    this, but it's not to complicated. First right-click the MC in the
    Library and select 'properties', then in the 'Linkage' section
    select the check box 'Export for ActionScript' and the type a name
    in the 'Identifier' field, hit OK. now you can access the MC by the
    linkage ID.
    the next thing you will need to know is 'where' you want to
    place the MC, figure out the x,y position. then on the main
    timeline, handle the 'button' code and we'll use 'attachMovie' to
    bring the MC to the Stage. within the attachMovie method we'll also
    pass the position you've decided upon. so it would look something
    like this:

  • Problem accessing variables in loaded Captivate swfs when run locally

    I'm loading Captivate 3 swfs into a custom Flash player. Here
    is pseudocode that just gets to the point:
    var cp1_mc:MovieClip = this.createEmptyMovieClip("cp1_mc",
    1);
    cp1_mc.loadMovie("captivate1.swf");
    [wait for (cp1_mc.rdcmndGotoSlide != undefined) via
    setInterval]
    // ***** cp1_mc.rdcmndGotoSlide is FOUND
    var cp2_mc:MovieClip = this.createEmptyMovieClip("cp2_mc",
    2);
    cp2_mc.loadMovie("captivate2.swf");
    [wait for (cp2_mc.rdcmndGotoSlide != undefined) via
    setInterval]
    // ***** cp2_mc.rdcmndGotoSlide REMAINS UNDEFINED
    INDEFINITELY
    The thing is, this problem does not happen when testing the
    movie in Flash, nor does it happen when the player.swf is run on a
    server. It happens when the player.swf is playing locally in an
    html page.
    Can anyone give me a clue as to what's going on? My best
    guess is that it has something to do with Flash Player Security,
    because it only happens locally in a browser, but I just don't get
    what's happening.

    Turns out it was a Flash Player security issue and I had to
    set security settings to "always trust" for my local
    directory.

  • Other problems with loading Captivate files into Flash AS3 project

    I have a Captivate file done with Captivate 3, published to
    Flash player 9 that is being loaded into Flash AS3. The captivate
    is a simple recording of some mouse clicks in a browser. I am
    displaying the playbar along the bottom, and its buttons all work
    fine except for the progress bar, where you can drag the knob and
    scrub back & forth in your presentation.
    This progress bar is not working as it should. I see the
    mouse cursor change to a hand, but when I click I cannot drag the
    knob to control the progress bar. The other buttons in the playbar
    do work (replay, pause, play, back, forward).
    This is a unique problem in that it is only happening when
    viewed in IE (7) when loaded into my Flash AS3 project. When viewed
    in Firefox in my project, or as a standalone SWF, or as a SWF
    simply embedded onto a plain HTML page, it works just fine.
    Does anybody have any insight?
    Another thing I notice with loading Captivate files with AS3
    is the the amount of output messages it displays. Rather annoying
    (unless this is a "feature" I've yet to be aware of - heh)

    Hi,
    I know exactly how you feel, there is simple answer; replace
    Captivate for Camtasia Studio 5 at techsmith.com. The weight on
    those shoulders will be gone! You'll smile more, be more
    socialable. One Happy Person.
    I am very happy person ;)
    Kind Regards,
    Boxing Boom

  • An Error Message when loading a Resource.properties File

    Hi, all:
    I tried to load a Resources.properties file in a JSP page:
    <%@ page import="java.util.*" %>
    <%
    ResourceBundle rb = null;
    try {
    rb = ResourceBundle.getBundle("Resources");
    } catch (MissingResourceException e) {
    rb = null;
    throw new RuntimeException("The resource is missing!");
    %>
    Test
    When I run it, I got the following error message:
    Error 500--Internal Server Error
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.5.1 500 Internal Server Error
    The server encountered an unexpected condition which prevented it from fulfilling the request.
    Any ideas what's going on here?
    Thanks
    Jeff

    Hi,
    I had a similar error just a few days ago. I could solve it by replicating the datasources again and activating the transfer structures via rs_transtru_activate_all. After that the load went fine.
    regards
    Siggi

  • Distribution Points properties changing permissions

    Hi everybody!
    How can we use RBA to lock down branch's admins DP properties changing permission....?
    Branch admin's could change PXE properties and etc.....Could we let them work with DP object only in read mode?
    In their role permission properties there are only "Read" and "Copy to DP" mark above "Distribution Point" object, but they still could change assigned to their scope DP's properties((

    You've got to remove the Modify permission on the Site
    object. In case you do want them to be able to modify other site settings, you can also create an additional scope configured to the specific distribution point. Then combine that scope and the role with less permissions on the site object together
    on the administrative user and you achieved your goal.
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • Dynamically loading a movieclip...

    Hi All..
    I know this sounds pretty pathetic.. but I can't get to load a movieClip dynamically...
    I have this code:
    import flash.display.MovieClip
    var myButton:MovieClip = new MovieClip;
    myButton.x = 30;
    myButton.y = 30;
    addChild(myButton);
    Also, I exported the movieClip to ActionScript with the name of myButton..
    When I test the movie- there're no errors, but there's nothing on the stage..
    Please help...

    if you have a movieclip in the library with class name myButton, use:
    var mybutton:myButton=new myButton();
    addChild(mybutton);

  • Loading 1 movieClip OVER another

    Hey,
    So I have a project were I'd like to load different movie
    clips into a section. each movie clip represents a page of my
    website. How can I call each one internally so that the new movie
    clip (page) builds while the last movie clip (page) is still
    underneath? Example:
    Btn_1 = page 1
    Btn_2 = page 2
    Btn_3 = page 3
    If I click btn_1 page apears on my stage when I click btn_2
    or 3 that page loads on top (not replaces) the other movie. If I
    hit btn_1 again page 1 will then load ontop(not inplace) of the
    existing page.
    Hope that make sense and thanks for any help anyone can
    provide.

    When you load into the same emptyMovieClip it will unload the
    existing movieClip.
    So if you want to avoid that just load you movieClips on a
    different emptyMovieClip and place them in different layers.

  • Disable Lazy Loading for Navigation Properties on Entities in EF 5

    Hello all,
    Can we disable Lazy Loading for Navigation properties on any entity?
    If yes, how we can achieve the same.
    Thanks,
    Naresh

    Hi Naresh;
    If you are using code first you can do the following to turn off Lazy loading for a given navigation property. For example
    lets say we have a Customers table and a Orders table and a Customer can have 1 to many Orders the following POCO class has a ICollection that is mark as virtual, This causes Lazy loading to happen when a property of order is accessed.
    // Lazy Loading Enabled
    public class Customers
    public int Id { get; set; }
    public string Name { get; set; }
    public virtual ICollection<Order> Orders { get; set; }
    To turn off Lazy loading remove the virtual key word as follows:
    // Lazy Loading Is Disabled
    public class Customers
    public int Id { get; set; }
    public string Name { get; set; }
    public ICollection<Order> Orders { get; set; }
    To turn of Lazy Loading for all entities using Code First you can do the following in the constructor of the DbContext.
    public class MyContext : DbContext
    public MyContext()
    this.Configuration.LazyLoadingEnabled = false;
    If the above does not meet your needs please tell us what version of the Entity Framework, which context type you are using, for example ObjectContext or DbContext, and which modeling you are using such as Code First, Model First or Database First.
    Fernando (MCSD)
    If a post answers your question, please click "Mark As Answer" on that post and "Mark as Helpful".

  • Symbol Properties - changing class name

    Newbee question...
    I'm trying to change the class name of a movie clip symbol
    that I have in my library. I've changed the name of the symbol,
    I've change the name of the class in my AS3. I've changed the name
    in the advanced properties Class:, but at the bottom of the
    properties page there is a button that's labeled Symbol... when I
    click on it, nothing happens, next to the button is Symbol Name:
    [old name], but because the Symbol button does nothing when I click
    on it, I cannot change the name here to the new name. Below that is
    a check box that says always update before publishing, which I
    checked and then published, but it still didn't update to the new
    name. What am I missing?

    I believe there are a couple of aspects to that, and for what I offer, anyone who knows better should chime in.
    If you have an object in the library that you want to load dynamically, such as a MovieClip, you prepare it for that by selecting the option to Export for Actionscript, which lights up the ability to define a Class name for the object.  When you compile the file a class definition for that object is automatically generated if there is not already a class by that name in a separate .as file.
    So you can create a movieclip and have it be its own class.  Or you can create some entity and assign it a Class ID that already exists as a separate .as file.
    And in your AS code, to create a new instance of that class, you do it just like any other AS3 class...
    var newInstance:ClassNameAssigned = new ClassNameAssigned();

  • Captivate 5 - Properties for Captions - general option

    I am using CAptivate 5 with Windows XP.
    I click on a Caption, then look at the Properties pane, which typically contains a "General" pane, where I can change the type of my caption.
    Lately, the "General" pane disappeared from the "Properties" pane, when I click a caption.
    As a result, I am not able to quickly change the caption type.
    Is there a setting somewhere that dictates which panes appear in the "Properties" pane? If so, where is it?
    I could not find such a setting... So, I uninstalled and reinstalled Captivate 5. The "General" pane appeared again in the "Properties" pane, when I click on a Caption. After a day, I encountered the same problem - the "General" pane disappeared.
    The above is true for any of my projects.
    Can anyone help me find the settings options for the "Properties" pane itself?
    (I do not think that uninstalling and reinstalling the software every day is a reasonable solution).
    Thank you.

    Did you try to delete the Preferences folder already? You have to close CP first, then look for a folder Captivate 5 in your profile. On my OS it is situated in this path:
    C:\Users\MyProfile\AppData\Local\Adobe
    You can delete this folder, when you restart CP a new Preferences folder will be created. Give it a try?
    Lilybiri

  • Impossible to save properties changed in portal

    Hi,
    I would like to change properties in a tdms registered file (not loaded due to file size) in the portal and then save it (right clic in the portal and "save as" with the same name).
    Modification to the properties work fine but I get the following error :
    File system error : The "myFile.tdms" file is read only.
    If I check the file in the window explorer, it is not read only...
    Could anyone help me to save modifications made to tdms file properties (400 files to modifiy...).
    Thanks in advance.

    Hi bull balls,
    Actually, I had first attempted the same approach as Stefan but made 2 errors in my test code and incorrectly concluded that the DataFileHeaderAccess() object was not able to edit a TDMS file.  I fixed those errors and verified today that in DIAdem 11 you CAN edit the values of TDMS properties (File/Group/Channel) and even create brand new properties in the TDMS file, without loading the file, using this object.  So that would be my recommendation for the easiest way to edit the TDMS property set from a DIAdem VBScript.  Note that if you have the TDMS file register-loaded in the Data Portal that the DataFileHeaderAccess() object can not edit the TDMS properties.  In this case you need to then re-index the TDMS file for the updated properties to show up in the DataFinder.
    If, on the other hand, you are actually interested in programmatically editing the property values of the TDMS file, without loading it, using LabVIEW-- with no interaction with DIAdem or the Data Portal, then you can use the attached VI as an example of how this would work.  In this case you need to delete the existing TDMS_Index file and re-index the data file for the property changes to show up in the DataFinder.  The TDMS file can not be register-loaded in DIAdem when you delete the TDMS_Index file.
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments
    Attachments:
    Append TDMS Property.vi ‏16 KB

  • Report load is slow after changing database servers

    Here is the problem:
    Crystal Reports saves the design time database connection info in the rpt.  When our application tries to run a report against a production database, the rpt takes a long time (60 sec.) to load.  After it has loaded we can change the database logon (in our code) and the report runs successfully.
    It seems like Crystal is trying to connect to the development DB server (but it cannot see it from the production environment).  If we edit the rpt and save the production database connection info in it, the report loads in less than a second. 
    We are an ISV and our application is used at over 2000 sights so it is not practical to edit each rpt at each location.  We have 737 reports and 908 subreports in our application!
    We are currently using the Visual Studio 2008 version of Crystal Reports.  This did not seem to be a problem with VB6/CR8.5.
    Is there some way to tell Crystal not to try connecting to the DB during the report.load?

    I had the same issue with Crystal Report XI R2. The issue seems to be when loading the *.rpt file. The Crystal Report API reads the *.rpt file and read all the relevant info from the report file and store it in the ReportDocument object and generates the object tree. It seem to do a database lookup for every database or table it finds in the main report and all the sub-reports and also for every SQL Expression you have in each report. Since the development database is different to the runtime database I think it waits until it times out. So more sub-reports you have the longer time it takes to load.
    You can resolve this issue by adding the design-time database name mapped to a runtime database ip. For this you need to update the host file in C:\Windows\System32\drivers\etc folder with the relevant info. By adding this there will be no name lookup.
    For example, if the report have the service ID as RACE, add the name RACE and the runtime database ip address in to the host file. Then there will be no lookup. Earlier it took 2 minutes to load the report but then the entry it took only 1 second.
    e.g.
    10.0.0.1     RACE
    Also have a look at http://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/cb6d6fc9-9d57-486c-972e-33b03d4a5759
    Hope this helps.

  • Unable to Load Captivate files to Creative Cloud

    We have several captivate files that that for whatever reason we are unable to upload to creative cloud.  We have tried from both Macs and PCs and receive the same message.  "A virus was detected in Filename. This file will not be uploaded."   They function in every respect in both cp7 and cp8.  We have scanned them with mac and pc virus scanners.  I can remove all the contents of the file and it still fails.
    If I copy out all the slides to a new file, the file loads to cc. There is a lot of master template and advanced actions that would be lost if we have to port out the slides. This is not a great solution.  
    Can anyone suggest possible causes or remedies?  My hope this there is some resource missing or corrupted in the file structure and that can be repaired.
    Thanks for your attention.

    Warner,
    The only virus detection program that I found that recognizes this virus is ClamWin (Free Antivirus for Windows - Open source GPL virus scanner) I used it to scan the text animation swf files ( installed with my Adobe Captivate 8 64 bit program files. Below is the report. I hope this helps someone at Adobe to find and fix the issue as soon as possible. Since I now know there is a virus on my system, I really need a fix as soon as possible. What I read about this virus is that "it will be used as a backdoor to spread more malware, malicious, and other Trojan virus... usually monitors internet browsing activity and collects confidential information of the victims and then sends them to Cybercriminals...."
    Here are the results of my program directory scan. As you can see not all text animations are impacted but many are.
    Scan Started Tue Jan 27 07:36:59 2015
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Blade.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Blue_Aura.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Blurrywave.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Cascade_Dive.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Catapult.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Cloning.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\DePlume.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Elliptical.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Fade_In.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Feather.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Fillin_Blanks.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Flashlight.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Flight.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Flowright.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Fly_Away.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Fog_Lifted.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Futbol.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Giftwrap.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Green_Globe.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Gridright.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Hori_Scan.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\illusion.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Leading_Star.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Light_Passage.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Matador.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Mini_Starburst.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Modflare.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Multi_Wake.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Ornaments.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Paradigm.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Passby.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Pastel_Prism.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Pivot.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Prismflow.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Pythagorean.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Raindrops.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Red_Hot_Skew.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Reflect.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Rotate_Left.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Shufflecards.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Sidestep.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Slant_Slide_Blinds.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Sliced.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Sliding.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Slidingblinds.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Spindle.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Spintop.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Square_Roll.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Starburst.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Stuff_It.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Swingstack.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Take_Two.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Topsy_Turvy.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Tossup.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Trailing_Light.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Transition.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Trans_Pivot.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Trickle_In.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Turnabout.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Twinkle.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Twinkle_Trail.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Twirl_flip.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Typing Text With Sound.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Typing Text.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Wake.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Waltz.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Waveripple.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Whimsy.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Windblown.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Windmill.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Wizard.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\TextAnimations\Zoomout.swf: Swf.Exploit.CVE_2014_0564-2 FOUND
    ----------- SCAN SUMMARY -----------
    Known viruses: 3733799
    Engine version: 0.98.5
    Scanned directories: 1
    Scanned files: 85
    Infected files: 72
    Data scanned: 11.62 MB
    Data read: 5.65 MB (ratio 2.06:1)
    Time: 7.050 sec (0 m 7 s)
    Completed

  • LogonLabels.properties changes not updated in 7.3

    Helllo Experts,
    I have modified the logonLabels.properties to change the COPY_RIGHT label from tcsecumelogonui_core.jar and updated the EAR. Once deployed I cannot see the changes to labels in the log page. I am on EP 7.3 SPS3.  When I extract the deployed jar file from the file system the changes are visible. I have also specified this in the build path.
    Any suggestions why the change is not reflected?
    Thanks,
    Rao

    Hi Rao,
    I am using 7.3 SP8 and I have the same problem my logon EAR is with the my version of the tc~sec~ume~logon~ui.war that contains my logonLabels_XX.properties, but it is reading only form the standard. I tried copy my tc~sec~ume~logon~ui_core.jar to WebContent\WEB-INF, and WebContent, and WebContent\WEB-INF\lib. However, it is not working...
    Could you help me?
    Regards, Cleiton.

Maybe you are looking for

  • How can I add an audio file to each slide when I export to HTML Keynote 6.2

    How can I add an audio file to each slide when I export to HTML Keynote 6.2 I am trying to create an audio slide show instead of a movie

  • Getting system names of all the nodes that compose a cluster

    I need a way to get the names (weblogic.system.name) of all the servers that compose a cluster from a JSP or a servlet. Can anyone help ?           System: Weblogic 5.10sp10 on Solaris with SDK 1.3.0           [att1.html]           

  • Error during early phase of installation

    Hello, I am facing an error during an installation. Our setup is as follows: empty Oracle 10.2.0.2 Database on HPUX Installation of BO Enterprise Server on Linux To meet expected performance issues and ressource consumption it should be a distributed

  • Online Download of pdf.'s give Errors...How do I fix?

    I continuously receive an error when downloading a pdf from online. The error message states: "There is a problem with Adobe Acrobat/Reader. If it is running, please exit and try again. (4:9)". When I close everything down, it still does not present

  • Can't open IIS Powershell Module

    I'm having an authentication problem. i know that the error lies in the IIS Powershell. when i go to open it to correct "kerbauth" "Filename: \\?\C:\ProgramFiles\Microsoft\ExchangeServer\V14\ClientAccess\Powershell\web.config Line number: 33 Error Ca