Could not find flash elements in cs6

hi, Can anyone can help how to find Flash Elements from Insert option. I want to create Image slide show without adding Html. But could not find Flash Elements and Image viewer from Media option,
If anybody can help please.
Thanks
Khan

Flash is not functional for a huge number of users on portable devices.
Try any of a zillion slideshows available by Google search.
For example:
http://jquery.malsup.com/cycle2/demo/

Similar Messages

  • Error while crawling LOB contents in SP 2013:'Could not find default endpoint element that references contract in the ServiceModel client configuration section

    Hi,
    I created custom BDC Model using Visual Studio. In ReadList method i am getting data using Web Service call. Using this External Content Type (BDC Model) i created one external list and it is populating with data.
    I created one new content source in search service application using this BDC Model and when crawled this content source i am getting the below error.
    Error while crawling LOB contents. ( Error caused by exception: Microsoft.BusinessData.Runtime.RuntimeException MethodInstance with Name 'ReadList' on Entity (External Content Type) with Name 'Entity1' in Namespace 'bcsex.BdcModel1' failed
    unexpectedly. The failure occurred in method 'ReadList' defined in class 'bcsex.BdcModel1.EntityService1' with the message 'Could not find default endpoint element that references contract 'ServiceReference1.Service1Soap' in the ServiceModel client configuration
    section.
    I included the bindings and client end point configuration settings in web.config file located at
    \\Inetpub\wwwroot\wss\VirtualDirectories\Port_Number, but still getting the same error.
    Please help. Thanks a lot.

    The Issue resolved by including the bindings and client end point configuration settings in
    machine.config file located at C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\ and also restarted the server after config changes.

  • Warning Messages - Could not find schema information for the element applicationSettings - App.Config of a console app

    This is my app.config file
    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
        <configSections>
            <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
                <section name="IntelBrandFX.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
            </sectionGroup>
        </configSections>
      <appSettings>
        <add key="connStr" value="Data Source=tmvnasql1.tmvn.com;Initial Catalog=brandplan;Integrated Security=True"/>
      </appSettings>
      <applicationSettings>
        <IntelBrandFX.Properties.Settings>
          <setting name="IntelBrandFX_rollupViewerService_extract" serializeAs="String">
            <value>https://viewer.rollup.com/omdsp2008/extract.asmx</value>
          </setting>
        </IntelBrandFX.Properties.Settings>
      </applicationSettings>
    </configuration>
    And the Warning messages  are
    Message 1 Could not find schema information for the element 'applicationSettings'.
    Message 2 Could not find schema information for the element 'IntelBrandFX.Properties.Settings'.
    Message 3 Could not find schema information for the element 'setting'.
    Message 4 Could not find schema information for the attribute 'name'.
    Message 5 Could not find schema information for the attribute 'serializeAs'.
    Message 6 Could not find schema information for the element 'value'.
    Althought they do no hinder me from successfully running the project. these messages are annoying. I have seen many articles on the web but could nowhere find the exact schemas for that the above elements that I could add to the  DotNetConfig.xsd file.
    Could somebody give me an idea how to create xsds for the elements above and include in the dotnetConfig.xsd.
    I understand what needs to be done but not sure of the exact way to do it.
    Thanks,

    You don't need to modify the dotnetconfig.xsd.  All you need to do is generate an XSD for your section and let VS know where it is at.
    1) Create your XSD using any of the various tools available or by hand.
    2) Copy your XSD into the <VSDir>\Xml\Schemas directory.
    3) Create a catalog file for your schema.
    4) Restart VS and it'll load the XSD and give you Intellisense.
    Here's the MSDN documentation for it: http://msdn.microsoft.com/en-us/library/ms255821.aspx
    Michael Taylor - 8/18/09
    http://p3net.mvps.org

  • Custom Timer Job to execute WCF web service error - Could not find default endpoint element that references contract

    Hi,
    I am currently creating custom timer job to call WCF web service to perform nighty job to update employee document library metadata. If I update regular list/library items it updates correctly on a specified interval basis. However when I try to integrate
    the WCF client, it throws error shown below :
    Could not find default endpoint element that references contract EmployeeServiceReference.
    EmployeeServiceClient in the ServiceModel client configuration section. This might be because no configuration file was found for your application, or because no endpoint element matching this contract could be found in the client element.
    I followed exact instructions Andrew Connell has provided but included my logic in execute()
    public
    override
    void Execute(Guid
    targetInstanceId)
    var empClient =
    new
    'ServiceReference.EmployeeServiceClient();
    var employee = empClient.EmployeesMethod();
    I have tried all approaches to manually adding app.config settings in sharepoing web.config but still it throws the error mentioned. It seems that application config and sharepoint site config binding issue still exist and cannot be resolved.
    <system.serviceModel>
    <bindings>
    <basicHttpBinding>
    <binding
    name="BasicHttpBinding_EmployeeService"
    />
    </basicHttpBinding>
    <netTcpBinding>
    <binding
    name="CustomBinding_EmployeeService">
    <security>
    <transport
    protectionLevel="None"
    />
    </security>
    </binding>
    </netTcpBinding>
    <wsHttpBinding>
    <binding
    name="WSHttpBinding_EmployeeService">
    <security
    mode="None"
    />
    </binding>
    </wsHttpBinding>
    </bindings>
    <client>
    <endpoint
    address="http://services.mycomp.com/EmployeeService.svc"
    binding="wsHttpBinding"
    bindingConfiguration="WSHttpBinding_EmployeeService"
    contract="EmployeeServiceReference.EmployeeService"
    name="WSHttpBinding_EmployeeService"
    />
    <endpoint
    address="http://services.mycomp.com/EmployeeService.svc/soap"
    binding="basicHttpBinding"
    bindingConfiguration="BasicHttpBinding_EmployeeService"
    contract="EmployeeServiceReference.EmployeeService"
    name="BasicHttpBinding_EmployeeService"
    />
    <endpoint
    address="net.tcp://crmapp.mycomp.com:5050/EmployeeService.svc/tcp"
    binding="netTcpBinding"
    bindingConfiguration="CustomBinding_EmployeeService"
    contract="EmployeeServiceReference.EmployeeService"
    name="CustomBinding_EmployeeService">
    <identity>
    <userPrincipalName
    value="[email protected]"
    />
    </identity>
    </endpoint>
    </client>
    </system.serviceModel>
    Will you please help resolving this issue?

    Hi,
    You can use any of the three approaches:-
    1) Access web application's web.config programmatically in Execute() method.
    http://praveenkasireddy.wordpress.com/2012/12/14/access-web-application-configuration-values-in-timer-job-sharepoint/
    2) Store the configuration in xml and upload it to SharePoint document library then read from there
    http://www.sharepointdynamics.net/2011/08/using-an-xml-settings-file-to-store-values-for-your-sharepoint-projects/
    3) Programmatically configure a WCF endpoint.
    http://msdn.microsoft.com/en-us/library/ff647110.aspx
    Regards, Shruti

  • Could not find the file "flash.ocx"

    I have Windows XP and the latest version of Flash but keep
    getting a error message popping up saying - Could not find the file
    "flash.ocx"
    Does anyone know how i can sort out this problem!
    Thanks!

    Salutations rajmak2000, tu nous disais :
    > I have Windows XP and the latest version of Flash but
    keep getting a
    > error message popping up saying - Could not find the
    file "flash.ocx"
    Hi !
    If you've got the latest version of flash, the message should
    says
    something like "could not find the file flash8b.ocx" instead
    of
    "flash.ocx" (who is, it seems, flash 7.0).
    I suspect, once again, that registry rights are broken.
    Try this script :
    http://docxp.mvps.org/b1n/FlashRepair.exe
    Bye
    ~Jean-Marc~
    http://docxp.mvps.org
    http://msmvps.com/blogs/docxp/

  • Error: Could not find the file "flash.ocx"

    I have been receiving the error COULD NOT FIND THE FILE
    "FLASH.OCX" for the past couple of months - I have been watching
    the message boards and have seen a lot of "fixes" and beta's come
    up errors (not sure that it's this exact error though).
    I get this error continuously throughout the day - no matter
    if I have nothing running on my computer or I have 10 things open.
    This morning it occurred to me that my screen saver is not coming
    on and it seems to me that the above errror is popping up everytime
    my screen saver should start. I HAVE TIMED THIS TODAY AND CHANGED
    HOW LONG BEFORE MY SCREEN SAVER STARTS - AND IT IS DEFINITELY
    GETTING THE ERROR EVERYTIME THE SCREEN SAVER IS TRYING TO START.
    Last week, I deleted the version of Flash that I had and then
    re-installed; still getting the error.
    I was getting the error when I had IE6 so I thought maybe
    switching to IE7 would correct it - but it didn't (that was a few
    weeks ago).
    My computer does not freeze up but it is SOOO annoying to
    continually throughout the day get this error.
    IE7.0
    ADOBE 9,0,28,0
    WINDOWS XP - SP2
    PLEASE HELP!

    Ah-ah! The workaround is to map my network folder to a drive, say... M:\
    So, when I select Edit->Edit in Audition->Sequence, I can select the Browse button to alter the Path destination. Instead of seeing '\\Zeus\Projects\...', I select the mapped M: drive so the path reads 'M:\Projects\...' instead.
    Then, Audition loads and is able to find the sequence or clip.
    So... that solves my problem!

  • Error "Could not find a capable video driver. Update display drivers." in Pr CS6

    Please help! I can't open my Pr CS6 - keep on getting error "Could not find a capable video driver. Update display drivers." How do I fix this?

    Display driver http://forums.adobe.com/message/4943624 may help
    For the future, please list this information when asking a question
    Information FAQ http://forums.adobe.com/message/4200840
    You need to post the EXACT brand and model of your graphics card, and the device driver number
    If you have nVidia...
    How to determine your nVidia driver version
    Right click in any open area of the Windows desktop
    Select NVIDIA Control Panel from the popup window
    Select SYSTEM INFORMATION at the lower left corner
    Driver version should be the 1st line in Details
    I have a GTX285 using driver 296.10

  • I could not find the "burn tool" in Photoshop 7, so I purchased Photoshop Elements 12, and I still cannot find the "burn tool". Where is it?

    I could not find the "burn tool" in Photoshop 7, so I purchased Photoshop Elements 12, and I still cannot find the "burn tool".
    Does the "burn tool" still exist? If so, where is it???
    Thanks

    Well, as I always say... If I want things done right, I have to do them myself.
    I found the solution on the Internet... One must place your pointer on the icon that is presently showing and then press the letter "o" key to toggle between the Burn, Dodge, and Sponge tools.

  • Error during start up of Premiere Pro CS6.  "... could not find any capable video play modules..."

    During start up of Adobe Premiere Pro CS6, I get the following error message.  "Adobe Premiere Pro could not find any capable video play modules.  Please update your video display drivers and start again."  This does not occur on After Effects, and the program runs successfully.  Premiere Pro will not open, and in the start up window the last thing the status line states before the error message occurs is: "Loading ImporterQuikTime.prm"
    I have added an NVidia GPU card to my system and have installed the latest video drivers from the NVidida website (GeForce 310.70).  This did not help.  I have QuikTime on my computer, but am not sure if it needs to be in a certain file location.
    I have also gone in to BIOS after installing the GPU and disabled internal graphics, but that did not help either.  Not sure what to do next.  Any suggestions?
    Thank you,
    Rhoadman

    Thank you everyone for the replies.  Although I don't have a laptop, the following seems to work. 
    Solution 1  
    On Windows 7, right-click the shortcut to Adobe Premiere Pro, and choose Run as Administrator. 
    Using this method, Premiere Pro opened successfully.  Using the shortcut directly, the error persists.  It looks like we will just have to open the program using this method.
    Many thanks for the replies.

  • Using Project Settings creates an app.config and dozens of errors about "Could not find schema information for the element...

    I am trying to work with Application settings.  I would just like to put together a very simple example of using these, but I can't get the most basic example to work.  Virtually every tag regarding the new Settings produces an Error "Could not find the schema information for the element "applicationSettings". or the element "Settings" etc. etc.  I am not using IIS, this is not a Web Project, and I am not working with User Settings.  Just simple read-only Application Settings.  I've read every MSDN page regarding this subject, I don't see that I am missing a reference - HELP !!!
    REPRODUCING THE PROBLEM:
    Step 1. Create a new C# solution and Windows Forms project. 
    Step 2. Add a reference to System.configuration
    Step 3. Right click the project, choose Properties, then Settings.
    Step 4. Using the Settings Designer, create ONE setting called "MySetting" as a String with the value "MyValue".
    RESULT: Observe the Errors like these, complaining about all of the Settings tags and elements.
    Message 1 Could not find schema information for the element 'applicationSettings'. 
    Message 2 Could not find schema information for the element 'LoadOriginalLists.Properties.Settings'. 
    Message 3 Could not find schema information for the element 'setting'. 
     HERE IS MY APP.CONFIG, AS GENERATED BY THE SETTING DESIGNER TOOL:
    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
    <configSections>
    <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
    <section name="LoadOriginalLists.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    </sectionGroup>
    </configSections>
    <applicationSettings>
    <LoadOriginalLists.Properties.Settings>
    <setting name="MySetting" serializeAs="String">
    <value>MyValue</value>
    </setting>
    </LoadOriginalLists.Properties.Settings>
    </applicationSettings>
    </configuration>

    Ummmm... okay so these are Messages that are in the Error List.  Whether or not they are actually Errors is debatable.  They are in the Error List, so they are errors. 
    The application runs, so my question is slightly changed to the following.
    I would like to use Application Settings.  However, having settings in my app.config pollutes my Error List with a bunch of meaningless messages like "Could not find the schema information for...".  These messages then hide real errors. 
    Am I missing some setting or is there something I can do to make Visual Studio not show me these messages? 

  • Adobe photoshop extended CS6  not complete command could not find Javascript Plugin

    When I open Photoshop Extended I get the error could not complete command could not find javascript, I have update the Java program, Reloaded the photoshop program, I still get the error message.

    Java and Javascript are not really related to one another at all (except that they have 4 letters in common :-)
    When Photoshop starts on Windows it looks for and tries to run this:
    C:\Program Files (x86)\Common Files\Adobe\Startup Scripts CS6\Adobe Photoshop\photoshop.jsx
    Which is the "startup script". It's possible you've deleted yours or it has become corrupt.  Reinstall is your best bet.
    It's also possible that your Photoshop instance was configured to run something on application start using File -> Scripts -> Event Manager and Photoshop Event "Start Application". For example I set my CS5 to use "Welcome" at startup, then renamed welcome and got this message:
    Which provides a big clue what is wrong.  If you're seeing the above (or something similar) make note of the file listed and select "Yes".
    On a 64-bit version, you can look here:
    C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Presets\Scripts but there doesn't seem to be the equivalent.
    Not sure where to look on the Mac.

  • Keep getting this on certain sites but was ok on older mac. Could not find element with id: "flashcontent"!

    Keep getting the following message on some websites on a new mac, old mac was fine.
    Could not find element with id: "flashcontent"!

    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Press and hold Shift and left-click the Reload button.
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Cmd + Shift + R" (MAC)
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Firefox > Preferences > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox > Preferences > Privacy > Cookies: "Show Cookies"
    Did you copy any files from the old computer to the new computer?
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    You can try to reset Firefox.
    *https://support.mozilla.org/kb/reset-firefox-easily-fix-most-problems
    Reset creates a new profile and tries to import some settings from the old profile leaving the old profile intact.
    *https://support.mozilla.org/kb/Recovering+important+data+from+an+old+profile

  • Flash CS5.5 and Android: Could not find an Android device to connect to...

    I am trying to deploy/debug an application from CS5.5 to an ASUS Transformer TF300 Tablet.  Every time I publish in Flash Pro I get the following error:
    "Could not find an Android device to connect to. Please ensure that you have a device connected, and the device has USB debugging enabled."
    I have tried everything I can find regarding this problem to no avail.  Some details:
    Running Android 4.0.3
    Running Flash Pro CS5.5 on MacOS 10.7.3
    Tried turning USB debugging then back on, multiple times
    Tried turning on/off all other debugging options
    Tried several Flash projects
    Downloaded latest AIR runtime to tablet
    Restarted everything several times
    Still no dice.  Anyone have experience with this? 

    OK I figured it out, or rather found someone else who had.  Thanks to Nick Collins for this extremely helpful tidbit:
    http://nc-design.net:8080/blog/-/blogs/debugging-air-mobile-on-the-asus-transformer-prime- tf201-?p_r_p_564233524_tag=flash+builder&p_r_p_564233524_resetCur=true&_33_redirect=http%3 A%2F%2Fnc-design.net%3A8080%2Fblog%3Bjsessionid%3Df4944a1069029314f050ccd45b5a%3Fp_p_id%3D 33%26p_p_lifecycle%3D0%26p_p_state%3Dnormal%26p_p_mode%3Dview%26p_p_col_id%3Dcolumn-1%26p_ p_col_count%3D1%26p_r_p_564233524_tag%3Dflash%2Bbuilder%26p_r_p_564233524_resetCur%3Dtrue# aqnd_messageScroll16520

  • "Could not find  Dreamweaver Fluid Grid style sheet error" in Dreamweaver CS6

    I have error in Adobe Dreamweaver CS6 which is part of the Creative Suite 6 Master Collection.
    Error  was when I trying to use "rubber" <div> layout: "Could not find  Dreamweaver Fluid Grid style sheet". When I clicked on the button in the  sidebar, in the new document.

    #1 Go to File > New FluidGrid Layout > select 3rd item > Hit Create button.  See screenshots.
    #2  DW will prompt you for a file name and location for your new FluidGrid.css file.  Give your style sheet a name without spaces or special characters eg. MyFluidGrid.css.  Save.
    #3 From the SourceCode tag, hit Ctrl+S to Save your HTML Page.  DW will set the corrected path to your external files: 
    MyFluidGrid.css
    boilerplate.css
    respond.js
    That's all there is to it.
    Nancy O.

  • While transfering to flash drive I get this message Could not find this item,no longer located in I:

    Hp touchscreen model #310-1125y

    Hi,
    This is an Explorer error, please use the following methods to fix:
        http://answers.microsoft.com/en-us/windows/forum/windows_7-files/error-could-not-find-this-item-this...
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

Maybe you are looking for

  • Xml select query performance

    the table i have create table test of xmltype; and the xml that i have loaded is <root>      <company> <department> <id>10</id> <name>Accounting</name> </department> <department> <id>11</id> <name>Billing</name> </department> </company>      </root>

  • ITune icon missing in my iphone4

    my itune in my phone is missing even i try enable my Restrictions and reset my home layout.. its still the same : ( im really getting crazy if still like this..

  • The time of download using the toolkit NXT for labview is about 5 - 8 minutes !!!

    I created a VI using the "LabVIEW_Toolkit_for_LMS_NXT_Getting_Started_Guide​" then I downloaded this to the NXT such as the Guied said but te time of download is  5 - 8 minutes.  then I did another program a litle bit more big and it never get dowloa

  • Mac not reading VOB files on some burnt DVD-R

    I want to use Mpeg Streamclip to convert VOB files to a quicktime file. I'm successful in doing this when I burn a DVD-R from Mac software. But when I put in a dvd-r into my Mac that was recorded "on-the-fly" on my Panasonic DVD recorder, it shows th

  • I cannot reinstall OS X on my Macbook Pro

    My little over 3 years old Macbook recently decided the harddrive was corrupted and just died on me. It would start and then on the grey loading screen would shut down. After reading a few support groups I then got into the disk utilty menu. So far i