Files not found css and js in Jdev 11gR1 application

Hi Experts,
I have a UI Dynamic Shell template and i am trying to show a slider using the below code. However i am getting the following errors :
<JUApplicationDefImpl> <findBindingContainerIdByPath> /js/sliderman.1.3.7.js not found in oracle.ui.pattern.dynamicShell.model.DataBindings.cpx
<JUApplicationDefImpl> <findBindingContainerIdByPath> /js/sliderman.1.3.7.js not found in com.awrostamani.web.DataBindings.cpx
<JUApplicationDefImpl> <findBindingContainerIdByPath> /img/01.jpg not found in oracle.ui.pattern.dynamicShell.model.DataBindings.cpx
<JUApplicationDefImpl> <findBindingContainerIdByPath> /img/01.jpg not found in com.awrostamani.web.DataBindings.cpx
<JUApplicationDefImpl> <findBindingContainerIdByPath> /img/03.jpg not found in oracle.ui.pattern.dynamicShell.model.DataBindings.cpx
<JUApplicationDefImpl> <findBindingContainerIdByPath> /img/03.jpg not found in com.awrostamani.web.DataBindings.cpx
<JUApplicationDefImpl> <findBindingContainerIdByPath> /img/02.jpg not found in oracle.ui.pattern.dynamicShell.model.DataBindings.cpx
<JUApplicationDefImpl> <findBindingContainerIdByPath> /img/02.jpg not found in com.awrostamani.web.DataBindings.cpx
<JUApplicationDefImpl> <findBindingContainerIdByPath> /img/04.jpg not found in oracle.ui.pattern.dynamicShell.model.DataBindings.cpx
<JUApplicationDefImpl> <findBindingContainerIdByPath> /img/04.jpg not found in com.awrostamani.web.DataBindings.cpx
<JUApplicationDefImpl> <findBindingContainerIdByPath> /img/07.jpg not found in oracle.ui.pattern.dynamicShell.model.DataBindings.cpx
<JUApplicationDefImpl> <findBindingContainerIdByPath> /img/07.jpg not found in com.awrostamani.web.DataBindings.cpx
Page Template Code
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
  <jsp:directive.page contentType="text/html;charset=UTF-8"/>
  <!-- sliderman.js -->
  <!--af:resource type="javascript" source="js/sliderman.1.3.7.js"/-->
  <script type="text/javascript" src="js/sliderman.1.3.7.js"></script>
  <link rel="stylesheet" type="text/css" href="css/sliderman.css"/>
  <!-- /sliderman.js -->
  <f:view>
    <af:document id="d1">
     <af:resource type="javascript">
                          demo3Effect1 = {
                              name : 'myEffect31', top : true, move : true, duration : 400
                          demo3Effect2 = {
                              name : 'myEffect32', right : true, move : true, duration : 400
                          demo3Effect3 = {
                              name : 'myEffect33', bottom : true, move : true, duration : 400
                          demo3Effect4 = {
                              name : 'myEffect34', left : true, move : true, duration : 400
                          demo3Effect5 = {
                              name : 'myEffect35', rows : 3, cols : 9, delay : 50, duration : 100, order : 'random', fade : true
                          demo3Effect6 = {
                              name : 'myEffect36', rows : 2, cols : 4, delay : 100, duration : 400, order : 'random', fade : true, chess : true
                          effectsDemo3 = [demo3Effect1, demo3Effect2, demo3Effect3, demo3Effect4, demo3Effect5, demo3Effect6, 'blinds'];
                          var demoSlider_3 = Sliderman.slider( {
                              container : 'SliderName_3', width : 800, height : 200, effects : effectsDemo3, display :  {
                                  autoplay : 3000
                        </af:resource>
      <af:form id="f1">
        <af:pageTemplate viewId="/oracle/ui/pattern/dynamicShell/dynamicTabShell.jspx"
                         value="#{bindings.pageTemplateBinding}" id="pt1">
          <f:facet name="copyright"/>
          <f:facet name="about"/>
          <f:facet name="navigation">
            <af:decorativeBox id="db1" theme="light" dimensionsFrom="parent">
              <f:facet name="center"/>
            </af:decorativeBox>
          </f:facet>
          <f:facet name="globalLinks"/>
          <f:facet name="status"/>
          <f:facet name="globalToolbar"/>
          <f:facet name="globalSearch"/>
          <f:facet name="globalTabs"/>
          <f:facet name="welcome">
            <af:decorativeBox id="db2" dimensionsFrom="parent">
              <f:facet name="center"/>
              <f:facet name="top">
                <!-- Code realted to slider -->
                <f:verbatim>
                  <div id="wrapper">
                    <div id="examples_outer">
                      <h2>Sliderman.js Demo 3</h2>
                      <div id="slider_container_3">
                        <div id="SliderName_3" class="SliderName_3">
                          <img src="img/01.jpg" width="800" height="200" alt=""
                               title=""/>
                          <img src="img/02.jpg" width="800" height="200" alt=""
                               title=""/>
                          <img src="img/03.jpg" width="800" height="200" alt=""
                               title=""/>
                          <img src="img/04.jpg" width="800" height="200" alt=""
                               title=""/>
                          <img src="img/05.jpg" width="800" height="200" alt=""
                               title=""/>
                          <img src="img/06.jpg" width="800" height="200" alt=""
                               title=""/>
                          <img src="img/07.jpg" width="800" height="200" alt=""
                               title=""/>
                          <img src="img/08.jpg" width="800" height="200" alt=""
                               title=""/>
                          <img src="img/09.jpg" width="800" height="200" alt=""
                               title=""/>
                          <img src="img/10.jpg" width="800" height="200" alt=""
                               title=""/>
                        </div>
                        <div class="c"></div>
                        <div class="c"></div>
                      </div>
                      <div class="c"></div>
                    </div>
                  </div>
                </f:verbatim>
                <!-- end od slider code -->
              </f:facet>
            </af:decorativeBox>
          </f:facet>
          <f:facet name="innerToolbar"/>
          <f:attribute name="navSplitterDisabled" value="true"/>
          <f:attribute name="brandingTitle" value="Customer Portal"/>
        </af:pageTemplate>
      </af:form>
    </af:document>
  </f:view>
</jsp:root>please advice
thnks
Jdev 11.1.1.5

aahh..bad question ..i guess i got it

Similar Messages

  • I have lightroom 5.7 and a macbook pro 10.9.5.  Occasionally when I am editing a photo in the develop module, I suddenly get a "file not found" message and the editing ceases to work.  There is no "exclamation" icon below the histogram box in the Library

    I have lightroom 5.7 and a macbook pro 10.9.5.  Occasionally when I am editing a photo in the develop module, I suddenly get a "file not found" message and the editing ceases to work.  There is no "exclamation" icon below the histogram box in the Library module or on the photo in grid view, and the histogram is gone.  What is going on? Trying to find it using the "find missing photos" in the library menu does nothing.

  • Java File not Found Exceptions and other errors?

    Hello experts, an issue on our Portal has caught my attention. Every time the J2EE Engine is restarted, a large amount of errors are written on our Trace files. When looking at the trace files, I see that most errors are Java IO File not Found Exceptions. For example:
    [EXCEPTION]
    #1#java.io.FileNotFoundException: ./log/system/database.1.log (No such file or directory (errno:2))
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at java.io.FileInputStream.<init>(FileInputStream.java:66)
         at com.sap.engine.services.log_configurator.archive.ArchivingThread.archiveTask(ArchivingThread.java:77)
         at com.sap.engine.services.log_configurator.archive.ArchivingThread.run(ArchivingThread.java:40)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    #1.5 #0012799E98F6000F0000001800003A9E00044A5F2B9CCDEC#1207672520886#com.sap.engine.services.log_configurator.archive.ArchivingThread##com.sap.engine.services.log_configurator.archive.ArchivingThread######c3cfd920058911dd8ace0012799e98f6#SAPEngine_System_Thread[impl:5]_24##0#0#Error##Java###./log/system/server.1.log (No such file or directory (errno:2))
    [EXCEPTION]
    #1#java.io.FileNotFoundException: ./log/system/server.1.log (No such file or directory (errno:2))
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at java.io.FileInputStream.<init>(FileInputStream.java:66)
         at com.sap.engine.services.log_configurator.archive.ArchivingThread.archiveTask(ArchivingThread.java:77)
         at com.sap.engine.services.log_configurator.archive.ArchivingThread.run(ArchivingThread.java:40)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    #1.5 #0012799E98F6000F0000001900003A9E00044A5F2B9CE7BC#1207672520893#com.sap.engine.services.log_configurator.archive.ArchivingThread##com.sap.engine.services.log_configurator.archive.ArchivingThread######c3cfd920058911dd8ace0012799e98f6#SAPEngine_System_Thread[impl:5]_24##0#0#Error##Java###./log/system/security.1.log (No such file or directory (errno:2))
    [EXCEPTION]
    #1#java.io.FileNotFoundException: ./log/system/security.1.log (No such file or directory (errno:2))
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at java.io.FileInputStream.<init>(FileInputStream.java:66)
         at com.sap.engine.services.log_configurator.archive.ArchivingThread.archiveTask(ArchivingThread.java:77)
         at com.sap.engine.services.log_configurator.archive.ArchivingThread.run(ArchivingThread.java:40)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    #1.5 #0012799E98F6000F0000001D00003A9E00044A5F2BE5C172#1207672525667#com.sap.engine.services.log_configurator.archive.ArchivingThread##com.sap.engine.services.log_configurator.archive.ArchivingThread######c3cfd920058911dd8ace0012799e98f6#SAPEngine_System_Thread[impl:5]_24##0#0#Error##Java###./log/applications.1.log (No such file or directory (errno:2))
    [EXCEPTION]
    #1#java.io.FileNotFoundException: ./log/applications.1.log (No such file or directory (errno:2))
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at java.io.FileInputStream.<init>(FileInputStream.java:66)
         at com.sap.engine.services.log_configurator.archive.ArchivingThread.archiveTask(ArchivingThread.java:77)
         at com.sap.engine.services.log_configurator.archive.ArchivingThread.run(ArchivingThread.java:40)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    In summary, the system cannot find the files server.1.log, security.1.log, database.1.log and applications.1.log. I tried manually adding these files (I created them on my computer and left them empty) on the path written, but it did not work, for some reason they are deleted.
    Another error that is happening during restart of the engine is the following:
    #1.5 #0012799E98F6001B0000002000003A9E00044A5F2BCC28D7#1207672523990#com.sap.tc.logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]######c3c3f240058911dd9ed80012799e98f6#SAPEngine_System_Thread[impl:5]_10##0#0#Warning##Java###Attempting to change a formatter on active log ./log/system/httpaccess/responses.trc. reset() method must be called first.#1#java.lang.Exception: Attempting to change a formatter on active log ./log/system/httpaccess/responses.trc. reset() method must be called first.
         at com.sap.tc.logging.FileLog.setFormatter(FileLog.java:448)
         at com.sap.engine.services.log_configurator.admin.LogConfigurator.adjustConfiguration(LogConfigurator.java:795)
         at com.sap.engine.services.log_configurator.admin.LogConfigurator.applyConfiguration(LogConfigurator.java:1535)
         at com.sap.engine.services.log_configurator.LogConfiguratorContainer.prepareStart(LogConfiguratorContainer.java:545)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepareCommon(StartTransaction.java:223)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepareLocal(StartTransaction.java:176)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesLocal(ApplicationTransaction.java:365)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.runInTheSameThread(ParallelAdapter.java:132)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesLocalAndWait(ParallelAdapter.java:250)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationLocalAndWait(DeployServiceImpl.java:4450)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationsInitially(DeployServiceImpl.java:2610)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.clusterElementReady(DeployServiceImpl.java:2464)
         at com.sap.engine.services.deploy.server.ClusterServicesAdapter.containerStarted(ClusterServicesAdapter.java:42)
         at com.sap.engine.core.service630.container.ContainerEventListenerWrapper.processEvent(ContainerEventListenerWrapper.java:144)
         at com.sap.engine.core.service630.container.AdminContainerEventListenerWrapper.processEvent(AdminContainerEventListenerWrapper.java:19)
         at com.sap.engine.core.service630.container.ContainerEventListenerWrapper.run(ContainerEventListenerWrapper.java:102)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    Any ideas?

    Nothing really seemed to work when trying to solve this problem, just suddenly it stopped appearing. It might have been our installation of SPS 15, since it was around that time that the error went away.

  • Startup screen displays a "File not found" error and I can't lack in a startup or home page.

    When I startup Firefox, I get:
    File not found
    Firefox can't find the file at jar:file:///C:/Program Files (x86)/Mozilla Firefox/omni.jar!/browserconfig.properties.
    Check the file name for capitalization or other typing errors.
    Check to see if the file was moved, renamed or deleted.
    When I go into Tools>Options to set my home page, it works one time and then reverts back to : resource:/browserconfig.properties
    I can't go to Firefox 9 because applications I need are not supprting it, yet.

    Does the issue still occur if you start Firefox in Safe Mode? http://support.mozilla.com/en-US/kb/Safe+Mode
    How about with a new, empty profile? http://support.mozilla.com/en-US/kb/Basic%20Troubleshooting#w_8-make-a-new-profile

  • File not found error after log on to ADF application

    Hi
    I just took over an ADF application, after clicking on log in button, in the application_log, there is always a login.jspx -- file not found error message, the directory is not even exist. somehow the application had 'registered ' an directory for the login page, common\skin\login.jspx, the actural log in page is under common\login.jspx.
    there is a loginfilter.java created and has a entry in web.xml. the login Filter has let httpServerRequest object to know that the login file directory is ..\common\login.jspx
    so why the app server would be looking at the wrong directory? how should I do to correct it?
    Thanks in advance.

    Hi
    I just took over an ADF application, after clicking on log in button, in the application_log, there is always a login.jspx -- file not found error message, the directory is not even exist. somehow the application had 'registered ' an directory for the login page, common\skin\login.jspx, the actural log in page is under common\login.jspx.
    there is a loginfilter.java created and has a entry in web.xml. the login Filter has let httpServerRequest object to know that the login file directory is ..\common\login.jspx
    so why the app server would be looking at the wrong directory? how should I do to correct it?
    Thanks in advance.

  • File not found error and playlist probs

    Sorry if this is a re-post, I had a look though but couldn'r find the answers I'm looking for.
    I just upgraded to iTunes 7.
    first all my playlists dissapeared, and after many hours I recreated them.
    Now, suddenly everytime I try and play a track I get "orriginal file could not be found" if I locate it when given the option it plays it, but I dont want to do this for all 3000 songs. I reimported all my files from my iTunes music folder, bu now I just have 2 copys of everything, one with an ! symbol and one without. I don't really want to go through and delete the bad file, aswhen I do that it goes out of my playlist and I would have to start those all over again, again. Whats going on and how do I fix it?
    cheers, kath x

    i deleted itunes off the computer and reinstalled it. worked ok apart from i had to recreate all my playlists again!

  • After Effects CS3 error: file not found -43 and TIFFIO failed to open the file

    Hello
    I am experiencing a problem with AE CS3.
    I have several TIFF sequences (with alphas) that are giving me a headache. When I import them into AE, I get an "AEGP Plugin TIFFIO: Failed to open the file" error.
    I researched the forums and found that this could be related to odd formatting of the source media (my TIFF sequence). I created these TIFFs in Maya 2008 and I have imported other sequences made with Maya into AE with no issues.
    Just to be sure, I created a Photoshop droplet that re-saved my TIFFs as Photoshop TIFFs with the same names.
    I re-imported the new Photoshop TIFF sequences (still with alphas) into AE CS3, and I get the same error.
    Any ideas? I don't know what to do next.
    Thanks,
    -------------S

    Your USB drive may have had a weird character in it's name.
    AE can't read CMYK images, that is usually the problem.
    Imported images do not have to conform to any specific sizes (unless you want to go over 30,000 x 30,000 pixels.)
    - Jonas Hummelstrand
    http://generalspecialist.com/

  • Files Not Founds (Drag and Drop)

    Hi everyone,
    I have a 32gig Playbook, which was working just fine until I updated last night (the one with the video chat release). I can no longer view documents (like pdfs) and videos that I drag and drop into the Playbook. When I say I can't view, I mean the files don't even show up for me to click on like it normally does.
    I have tried it on both Mac and PC, and it worked on both prior to the update. So, does anyone have a solution or an explaination as to why this is happening?
    Your help would be greatly appreciated.
    Thanks,
    MisterClyde

    Hello MisterClyde and welcome to the BlackBerry Support Community Forums.
    When transferring the file, are you using the Desktop Software? Do you get confirmation the transfer has completed?
    Not sure if you have tried the method listed in KB26068, but have a look. I was able to tranfser data using the new version and the transfer did complete for me.
    If the steps in the article don't seem to work and you are still experiencing the issue, contact us at the number from the support site found here.
    -HMthePirate
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • When I try to play a song it says "orginal file not found"

    When I open itunes and try to play a song I get an error message that says "original file not found."  What does this mean?

    Hello samdogman - I am having the "original file not found" problem and found your post in my search for solutions.
    I'm not sure how this happened. I erased a couple of songs the other day and think I erased those song files.
    If I was to go to each folder stored in my iTunes folder and add folder to library I will have duplicate songs..correct? Will consolidate library create duplicates as well?
    I would appreciate any help you can give me. Thx.
    You have to actually have the song file paths saved
    in your iTunes library memory. Don't drag them into
    iTunes--they'll play until you turn off your computer
    but they're not getting saved in your library this
    way. Instead of dragging a folder/file into iTunes,
    go to the top line in iTunes and select "file">"add
    File to library" OR "add Folder to library". Browse
    to the location of the files/folders you want to add
    and click "ok". Now iTunes will have the actual path
    to your music stored and will be able to find your
    songs.
    Or, to make things go quicker. You can go to the
    advanced tab and click on "Consolidate Library", then
    you can browse to your music file location and add
    all of your music files at once.
    Dell 700M   Windows XP  

  • Cisco acs "manifest file not found" help

    srvacs01/admin# application upgrade ACS_5.5.0.46.tar.gz WCS
    Do you want to save the current configuration ? (yes/no) [yes] ? no
    6 [27522]: transfer: cars_xfer.c[54] [admin]: ftp copy in of ACS_5.5.0.46.tar.gz requested
    7 [27522]: transfer: cars_xfer_util.c[89] [admin]: ftp get source - ACS_5.5.0.46.tar.gz
    7 [27522]: transfer: cars_xfer_util.c[90] [admin]: ftp get destination - /storeddata/Installing/.1413207431/ACS_5.5.0.46.tar.gz
    7 [27522]: transfer: cars_xfer_util.c[109] [admin]: initializing curl
    7 [27522]: transfer: cars_xfer_util.c[122] [admin]: full url is ftp://10.222.15.196/acs5/ACS_5.5.0.46.tar.gz
    % Manifest file not found in the bundle
    srvacs01/admin#
    Cisco Application Deployment Engine OS Release: 1.2
    ADE-OS Build Version: 1.2.0.228
    ADE-OS System Architecture: i386
    Copyright (c) 2005-2009 by Cisco Systems, Inc.
    All rights reserved.
    Hostname: srvacs01
    Version information of installed applications
    Cisco ACS VERSION INFORMATION
    Version : 5.3.0.40.40
    Internal Build ID : B.839
    Patches :
    5-3-0-40-7
    5-3-0-40-9
    Pointed-PreUpgrade-CSCum04132-5-3-0-40

    Problem: "Error: Saved the running configuration to startup successfully % Manifest file not found in the bundle" on ACS appliance during appliance upgrade
    The Error: Saved the running configuration to startup successfully % Manifest file not found in the bundle error appears when an attempt is made to upgrade ACS Express
    Solution
    Complete these steps in order to upgrade the ACS appliance without any issue:
    Download patch 9 (5-0-0-21-9.tar.gpg) and ADE-OS (ACS_5.0.0.21_ADE_OS_1.2_upgrade.tar.gpg ) from: Cisco.com > support > download software > Security > Cisco Secure Access Control System 5.0 > Secure Access Control System Software > 5.0.0.21
    After you install the two files, install the ACS 5.1 upgrade ACS_5.1.0.44.tar.gz. This is available from the same path from previous step.
    Use this command in order to install the upgrade:
    application upgrade <application-bundle> remote-repository-name
    This completes the upgrade procedure.
    Refer to Upgrading an ACS Server from 5.0 to 5.1 for more information on how to upgrade the ACS appliance.
    please refer the upgrading acs server 5.4 to 5.5, for complete process.

  • Cannot make a cache safe URL for "1025/styles/Themable/corev4.css", file not found. Please verify that the file exists under the layouts directory.

    HI
    i restored a sharepoint web 80 application in our test domain
    and after when i browse the new web application 
    it says 
    Cannot make a cache safe URL for "1025/styles/Themable/corev4.css", file not found. Please verify that the file exists under the layouts directory. 
    adil

    Hi  adil,
    According to your description, my understanding is that you encountered the error “Cannot make a cache safe URL for "1025/styles/Themable/corev4.css", file not found. Please verify that the file
    exists under the layouts directory.” .
    The issue happens in
    We have customized master page
    In the master page, we use path the script/style file like this: <SharePoint:CssRegistration name="<% $SPUrl:~SiteCollection/Style Library/coe/mainCOE.css%>"
    runat="server"/>
    While using the dynamic path in a multiple languages enabled site, language Id(1033 etc) will be added to the path automatically. That cause the file to be not found.
    To solve the issue, please download  the Arabic language pack http://www.microsoft.com/en-us/download/details.aspx?id=3411 ,
    install it on  your SharePoint and refresh your browser.
    Reference:
    http://sharepoint-community.net/profiles/blogs/cannot-make-a-cache-safe-url-for-1036-sytles-themable-corev4-css
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Removing warning for "Default CSS file not found."

    I am getting this warning in Flash Builder:
    "Default CSS file not found."
    I can not for the life of me figure out how to get rid of it. Any suggestions?

    Default css file can be specified as a compiler option (per SWC, I think).
    See http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_14.html
    For example, flex framework has a default CSS file: C:\Program Files\Adobe\Adobe Flash Builder 4\sdks\3.5.0\frameworks\projects\framework\default.css
    Do you have some library project or a swc with default css file option turned on, but the css file is missing?

  • I am trying to install adobe livecycle designer es4 trial version on my computer and i keep getting the message Error 13.11 Source file not found: c:\  verify that the file exist. I have tried to install on both windows 7 and windows 8 and i still get the

    error 13.11 Source file not found verify that the file exsist

    Try a more recent version of my advice. The "for older video cards version" may work when the default version doesn't.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • Really at a loss on this., both apexins and apxldimg give 'file not found'

    I am sure the correct parameter is being supplied. This is on windows 7 64 bit platform.
    SQL> @apxldimg C:
    PL/SQL procedure successfully completed.
    old 1: create directory APEX_IMAGES as '&1\apex\images'
    new 1: create directory APEX_IMAGES as 'C:\apex\images'
    Directory created.
    file not found: /doc/aadm_chng_day.htm
    file not found: /doc/adm_email.htm
    file not found: /doc/adm_request_notif.htm
    file not found: /doc/advnc_web_invoke.htm
    file not found: /doc/api007.htm
    file not found: /doc/bldapp_appgroup.htm
    file not found: /doc/bldapp_srch_item.htm
    file not found: /doc/bldapp_wiz_pg_def.htm
    file not found: /doc/deploy_app_id.htm
    file not found: /iu_option.gif
    file not found: /oracle.gif
    file not found: /reg_temp_edit.gif
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    Commit complete.
    timing for: Load Images
    Elapsed: 00:00:22.38
    Directory dropped.
    SQL> spool off
    Any help is most appreciated.

    apex 3.1 on oracle 11.2...
    Increased session_max_open_files and re-ran receiving below output.. i do get proper images displayed on login page now;however, not sure everything is still 100% correct.
    SQL> @apxldimg_mod G:\oracleSoftware
    PL/SQL procedure successfully completed.
    old 1: create directory APEX_IMAGES as '&1\apex\images'
    new 1: create directory APEX_IMAGES as 'G:\oracleSoftware\apex\images'
    Directory created.
    -21560 ORA-21560: argument 3 is null, invalid, or out of range
    -21560 ORA-21560: argument 3 is null, invalid, or out of range
    -21560 ORA-21560: argument 3 is null, invalid, or out of range
    -21560 ORA-21560: argument 3 is null, invalid, or out of range
    -21560 ORA-21560: argument 3 is null, invalid, or out of range
    -21560 ORA-21560: argument 3 is null, invalid, or out of range
    -21560 ORA-21560: argument 3 is null, invalid, or out of range
    -21560 ORA-21560: argument 3 is null, invalid, or out of range
    -21560 ORA-21560: argument 3 is null, invalid, or out of range
    -21560 ORA-21560: argument 3 is null, invalid, or out of range
    -21560 ORA-21560: argument 3 is null, invalid, or out of range
    -21560 ORA-21560: argument 3 is null, invalid, or out of range
    -21560 ORA-21560: argument 3 is null, invalid, or out of range
    -21560 ORA-21560: argument 3 is null, invalid, or out of range
    -21560 ORA-21560: argument 3 is null, invalid, or out of range
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    Commit complete.
    timing for: Load Images
    Elapsed: 00:00:46.97
    Directory dropped.
    SQL>

  • Problem with Vision Builder and LabView: Error -1074395995, File not found

    I have created an inspection with Vision Builder AI 2009 SP1. In it I load some pictures from the HDD and run some checks over it. It works fine. Then I have migrated it to LabView 2010, I get a message that the migration is successfull, but when I run the VI on LabView I get a fail status. I have been checking my program and I have found and error when I try to load the picture from file: Error -1074395995 occurred at IMAQ ReadImageAndVisionInfo
    Possible reason(s): IMAQ Vision:  File not found.
    But I am not sure which file it refers to. At first I thought it was the picture I wanted to load, but I have checked the path and it is correct, so maybe it refers to another thing. What puzzles me most is that it works perfectly on Vision Builder and I have changed nothing in LabView, maybe it is a problem with the migration. Any clues?

    Here's a screenshot of what I'm talking about. Put a break point here and see what the path is and compare that with what Vision Builder AI is using (described where to find this in the previous post). You could find where this global is used to make debugging easier.
    Hope this helps,
    Brad
    Attachments:
    Generated Code.png ‏43 KB

Maybe you are looking for