Which configuration to include another project resource ?

What configuration should I do in order that a project resource uses another's
project resource referring it to by its project root web context?
Example:
in Project1.jpr, file1.xsl includes Project2.jpr file2.xsl stating <xsl:include href="/project2/file2.xsl">
or
in Project1.jpr, file1.jsp includes Project2.jpr file2.jsp stating <%@include file="/project2/file2.xsl">
(Of course I do not want to use an absolute URI which includes the server name)

You would need to configure both projects to have the same "HTML Root" directory in their project settings.
In JDev, we have so far used the concept of each project representing a separate WAR structure, so by default projects have separate "HTML Root" directories. Since jsp:include operations and jsp:forward operations are not allowed to cross a WAR file boundary (per JSP 1.2 spec, section JSP.2.2.1), the only way to have jsp:forward and jsp:include to work is to put the two JSPs in the same WAR structure. In JDev this means having both JSPs in the same project, or having the two projects share the same HTML Root directory.

Similar Messages

  • Jumping into a selected slide of another project

    Hello all,
    Is it possible to define a button action which will (a) open another project and (b) jump into a certain slide?
    The first part is quite simple, but I am not sure how the 2nd part can be done.
    Pls advise.
    Thanks

    Hi Julie.  I believe the 2 Captivate projects would both have to be published as SWF/html, and both accessed via the browser.  So one Captivate project playing in the browser can jump to a second Captivate project playing in the browser, and then move to the desired slide.
    Hope this helps.
    Bob

  • How to include a CSS from another project

    Hi all,
    I'm developing an AbstractPortalComponent which uses some of my own defined stylesheets. I can include the stylesheet defined in my own project by this:
    com.sapportals.portal.prt.resource.IResource myStyle =
    request.getResource("css", "css/my_nav.css");   
    response.include(request, myStyle);
    Now I need to include another CSS but from another project.
    I tried also to get the response and write the HTML code but it writes it into the <BODY></BODY> tag and the CSS is not used when rendering the document:
    ...</head>
    <body class="prtlBody urFontBaseFam urScrl">
    <LINK REL=stylesheet HREF="/irj/portalapps/myProject/css/zglobal.css" TYPE="text/css">
    Does anybody know the solution?
    Thanks in advance,
    Romano

    There are document hooks that you can use to insert things into the response of a page being written to the client.
    Therefore, if you create a service which implements the IDocumentHookListener, you will then need to implement the
    String doDocumentHook(int documentPosition, IPortalComponentRequest request, IPortalComponentResponse response)
    and
    void doDocumentHook(int documentPosition, IPortalComponentRequest request, IPortalComponentResponse response)
    The first method, that returns a String, you can basically check where in the document you would like to write code, something like
    switch (documentPosition) {
      case IDocumentHookListener.HEAD_SECTION_BEGIN :
        return "some string";
        break;
      case IDocumentHookListener.HEAD_SECTION_END :
        return "some other string";
        break;
    The second method, simply writes out the String returned from the first method to the response, i.e.
      response.write(doDocumentHook(documentPosition, request));
    I hope this helps
    Darrell

  • Using image resources in a folder or another project's root

    Hello,
    I must confess that I find it annoying to place my pictures and icon resources in the same package to access them in the JavaFX application. I think this enforcement by JavaFX is an unreasonable one.
    Consider that I use the same icon in several places in my application. It is the same resource that I have to put in several different places. Imaging the problems when trying to refactor or upgrading the application.
    Is there a mechanism to access icons/picture resources in a folder at the root of the project or access these resources in a separate project. I would prefer the latter because in this way, I create a single project with all these resources and all other projects would access them from this project. I think this would allow updates, refactoring to be done much more easily.
    If such a mechanism exists, please point me to it.
    Than ks

    Thanks for the correction.
    Those last 3 examples donot use the classpath at all (although perhaps it does look in there).And so it is not; i.e. the last 3 examples did not use the classpath at all - and it did not look there either.
    They will also load those resources from the current directory (or subfolders thereof).And so it is; i.e. when you don't specify a protocol, in the case of a stand alone app it looks up the resources relative to the current working directory. For webstart or applet it may use a codebase and grab the data from an originating server or something like that, but I didn't test that.
    My mistake was thinking that if you didn't place the protocol in the image constructor it would default to looking stuff up relative to classpath of the calling class - which it does not do. If you did want to do such a lookup then the examples could instead be written as =>
    new Image(getClass().getResourceAsStream("icons-390.jpg"));
    new Image(getClass().getResourceAsStream("/icons-390.jpg"));
    new Image(getClass().getResourceAsStream("../icons-390.jpg"));What I usually do is create a static getResource method on my application which returns a url to the resource, that way all of the resource lookup logic is localized in case I ever want to change how I find resources and where I place them.
    static String getResource(String path) {
      return MyApplication.class.getResource(path).toExternalForm();
    }

  • Want to open another project from Quiz Results - can't get it to work.

    I have been trying to get my course to open another project (an instruction slide) after the user completes a quiz and it is not working. The course always closes after the quiz results. I have set the Project End Options and the Pass or Fail options to all open another project (the instruction slide), but instead, after the user clicks 'Continue' on the quiz results page, the course always closes. What could I be missing? (Am using Captivate 5.)

    Just finally getting my head above water and am able to respond and update. Yes, I was using a tool called RELOAD to update the imsmanifest file. Actually a great tool that I can recommend now that I worked out the kinks with Captivate. Please see this post for more information. http://www.caddicks.com/blog/2012/02/17/how-to-publish-a-multi-file-captivate-project-as-a -single-scorm-course/#comment-249711
    Here's a quick summary of how I ended up resolving this - I can't even remember all the different options I tried until I settled on this! I never resolved the issue with launching another project from the quiz results page, but found a workaround that works even better.
    The course starts with a brief introduction module. The 'Continue' button on the last slide is set to launch another project, which opens the course's 'main menu.'
    The 'main menu' project has several buttons that launch appropriate sub-topic projects.
    On the last slide of each of the 'sub-topic' projects has the 'Continue' button set to launch the 'main menu' again. Each of these had quiz questions, but feedback was set at the question level only - no quiz results page.
    The last option on the 'main menu' project was a 'Course Completion' button - which launches a project containing the final quiz. (NOTE: This was always the only project that had the "Show score at the end of the quiz" set to display under Preferences / Quiz / Settings. After a lot of hair-pulling, I realized that it wasn't necessary to open another project to accomplish what I wanted to do, which was return the user to some basic instructions before they retook the quiz.)Here is how the last project was set up.
    The first slide is a content slide with instructions for the quiz. When the user clicks the "Back" button from this slide, it will launch the 'main menu' project. 'Next' simply goes to the next slide.
    Slides 2-5 are quiz questions
    Slide 6 is the quiz results slide (turned on under Preferences / Quiz / Settings). Buttons are: Review Quiz and Continue.
    Slide 7 is a content slide with instructions on what to do next. This slide has a text button that I called "Retry" and under Properties / Reporting for the button the "Include in quiz" is NOT checked. The Retry button takes the user back to the first slide in the quiz.

  • (CS4) Copy and paste video/sound into another project, sound won't export

    Hello Adobe community
    I am working on a TV show for a community television network in Australia.  I created the opening credits in a seperate project to the edited footage of the show, because my computer is struggling with the size of all the files. So I have two project files. Recently I copied and pasted the edited footage of the show into the project where I have the opening credits (by highlighting all the footage, right clicking and going to copy, then opening the Project with the credits sequence, right clicking and selecting paste). This seems to work. I can hear the sound and continue tweaking and editing. However, when I  export the project, the sound from the footage I have copied into the project can't be heard. I can hear the sound from the credit sequence, but not the sound that has been copied into the project (although on the timeline of the project, I can hear the sound... This problem only presents itself after export).
    I have tried doing the opposite... Copying and pasting the opening credit sequence into the project with the edited footage, and I get the same problem. It doesn't seem to matter which file type I export as. I have tried .AVI and .MPEG2, with the same results.
    I am using Windows 7 64bit version, and Premiere CS4. I have a mixture of .MTS, .WAV and .MP3 audio files in the footage that I copy and paste across. None of them are exporting.
    I have tried moving the copied and pasted audio files on to the same audio tracks as the sound already in the project, but this doesn't work either. The original sound will export, then when it gets to the copied and pasted sound nothing can be heard.
    I have included some screen shots to illustrate the problem below. If you have any questions please let me know.
    Thanks for your time! I have a looming deadline so your help is much appreciated.
    -Robert

    Thanks for your replies everyone. Sounds like cut and paste is not an option. Wow, I didn't realise how much trouble I'd be causing for myself by having different parts of the show in different projects.
    I am reluctant to export the project then import it into another project, because I do not want to lose quality through compression as Ann suggests.I don't know what you  mean, Ann, when you say "Dont think CS4 could import single sequence (forgot)."? Jim, I'm also unsure what you mean when you say "That's what UT is for"?
    However, I went to File/Import/Import Entire Project, and imported the project this way. Then I dragged the little folder icon that appeared in the top left hand corner of the screen onto the timeline. However, when I did this, a few problems occured. Firstly, the original project had footage and audio on many different tracks, but when I imported the project nearly all of the video and audio was on to the one track. Secondly, instead of going for 10 minutes, the imported footage went for a few hours. Thirdly, the sound and images were all out of sync. I have included two images to illustrate this problem:
    Above is the original project. As you can see, I have audio and video on many different tracks, and lots of cuts.
    This is what the project looked like after I had imported it into another project. Nearly everything is on one track, the footage goes for a few hours now (instead of 10 minutes) and the video and sound are all out of sink.
    Then I tried File/Import/Import Selected Sequence. The only sequence I had the option of importing was Sequence 1. I did this, then dragged the folder icon onto the timeline, and I had a similar problem to before. Everything on one track, footage out of sync and going for a few hours.
    Is there a way to import a project and maintain all of the editing (the cuts, the multiple tracks, etc.) as they are in the original? I have spent many hours editing both the footage and the opening credits, so I really don't want to lose all this work when I import one into the other. The good thing about copy and paste is that it maintains all of the original cuts and editing. Shame it is so unreliable.
    Thanks heaps for all your help!
    -Linus

  • Can not create a CDC class lib which's refer to another lib.

    Hello, Everybody.
    I need somebody's help that I'm trying to create a CDC class library
    which's refer to another CDC class library.
    The develop environment's Nokia Series 80 Platform SDK for Symbian OS, for Java, Personal Profile
    which's emulator of J2ME(CDC) with NetBeans IDE 6.0.1 for Mobility.
    First of alll, I created class that will be used from other library.
    The library name calls core here.
    Second of all, I try to build another class library which's refer to core library.
    then, I get error that as below.
    Symbol not found.
    Place:java.lang.NoClassDefFoundError Class
    method(XXXX.class.getName());--------> XXXX is the class which's include of core library.
    Error: can't detect initCause method.
    I confirmed that the "project.properties" file of core lib includes "build.classes.excludes"
    and "project.properties" file of target lib includes "libs.classpath".
    I have no idea to resolve this problem.
    Does anyone know that how to resolve it?
    Edited by: fc3srx7m on Mar 4, 2008 6:20 PM

    I resolved myself that the reason was "class.getName()" does not supported on CDC 1.0.(Maybe)
    Therefore, I use literal insted of "class.getName()".
    That's all.
    Thank you.

  • How to call a process from another project

    Hi;
    How to calling a process from another process in another project? Which activity that i need or web service, direct binding? I use 11g

    Hi Tulasi ;
    I have wsdl of the process i need to call. Also wsdl address on the server. But CALL activity can't use to service call. CALL activity can use only to reusable process call.
    I think, this operation must make on composite.xml. But I have a same problem with this method and it don't work.
    I create a base process that looking at below. It's include a direct binding. Is it include a direct binding?
    [Base Process|http://d1201.hizliresim.com/t/s/21wqu.png]
    Then i create a process that call to base process:
    [Caller Process|http://d1201.hizliresim.com/t/s/21wqx.png]
    I paste to base process' wsdl address on the server. Then i select port type (BaseProcessPortType) and a warning has occured that you see the picture above. Base Process contain Oracle SOA Composite Type. What's the wrong? It happened for Callback Port Type.
    And second question is what's the Address? (under Reference Binding Setails option).
    I think, i create the this direct binding correctly, i call to base process into my caller process via service activities.

  • Your computer appears to be correctly configured, but the device or resource (DNS server) is not responding [and I'm at my wit's end!]

    I originally posted this question to the community section and was advised to post it here.  Please bear with me as this will be a long post.  I'm including the scenarios involving this reoccurring issue, the trouble shooting steps I've already
    taken and the results of several diagnostic tools and logs.
    I have a Sony VAIOS VPCEBB33FM lap top since 2011.  I have had this issue on an off for a long time.  I'm at my wit's end.  Any new insights or suggestions would be greatly appreciated.
    Scenario Details
    1)  Some times it's on and off through out the day, sometimes it won't work all day, and once in a while it will work fine for the entire day.
    2)  I've had this issue across several wireless services, Clear Network accessed with WiMax, Library Wi-fi, Comcast cable internet using wireless router and Wi-fi, and Comcast Xfinity Wi-Fi, to name a few examples.
    3)  Other devices in the household or library will work with no problems such as my smart phone or my roommates' laptops or desktop computers.
    4) Once in a while,  the built-in wireless adapter is not found and I have to reinstall the driver.  Also the diagnostic tool has had to reset my adapter on an increasing basis.
    5)  I had my hard drive replaced in December 2014 and my system restored from the System Restore disks that came with it when I bought the laptop.  Even though I've been online on an infrequent basis it worked just fine for a while. Now that
    I've been online a bit more I'm having the same issues again.
    Below are my attempts at trouble shooting so far but I still have not been able to consistently resolve my DNS issues
     1) Restarting my adapter
     2) Turning off my laptop and removing the power supply for 5-10 minutes before turning it back on.
     3)  Using the IP Config in Command Prompt
         ipconfig /flushdns
         ipconfig /registerdns
         ipconfig /release
         ipconfig /renew
     4) Using the NetSh reset in Command Prompt and restarting my laptop
         netsh int ip reset c:\resetlog.txt
         netsh winsock reset
         ipconfig /flushdns
         [restart laptop]
     5)  Configuring the TCP/IP in several settings
        Select Internet Protocol Version 4 (TCP/IPv4), and then click Properties.
        I have used the following settings:
           a) Obtain an DNS server address automatically
           b) OpenDNS
               208 67 222 222
               208 67 220 220
           c) Google DNS
               8 8 8 8
               8 8 4 4
     6) Updating the driver for my Intel Centrino(R) Advanced-N 6250 AGN and Intel Centrino(R) WIMAX 6250 from the Intel website previous having my laptop wiped clean in 2014.  It still did not resolve the issue.  My laptop
    manufacturer as not come up with an driver update for my adapter since 2010.  I haven't tried to update the adapter driver from Intel's website since having my laptop repaired due to the fact that Intel strongly recommending using the manufacturer's updates
    instead and frankly it didn't make much of a difference when I did it the first time.
     7) The last one I've tried as of today is going into Services and changing the start up type to automatic for the following:
           Computer Browser [changed from manual to automatic]
           DHCP Client [already set to automatic]
           DNS Client [already set to automatic]
           Network Connections [already set to automatic]
           Network Location Awareness [changed from manual to automatic]
           Remote Procedure Call (RPC) [already set to automatic]
           Server [already set to automatic]
           TCP/IP Netbios helper [already set to automatic]
           Workstation [already set to automatic]
    ...and I'm still having DNS issues.
    My only guessing are that my laptop came with a lemon adapter that needs to be replaced, some advanced setting(s) that I'm not aware off, or my firewall/anti-virus is interfering. I've used Symmantic Anti-virus and Firewall in the past and currently
    Avast Anti-Virus with Microsoft Network Firewall.  I've had DNS issues with both anti-virus/firewall set ups.
    Below are the results from the diagnostics and tests that I've ran.
    Windows Network Diagnostics
    Your computer appears to be correctly configured, but the device or resource (DNS server) is not responding Detected Detected
    Contact your network administrator or Internet service provider (ISP) Completed
    Windows can't communicate with the device or resource (DNS server). The computer or service you are trying to reach might be...
    Details about network adapter diagnosis:
    Network adapter Wireless Network Connection driver information:
       Description . . . . . . . . . . : Intel(R) Centrino(R) Advanced-N 6250 AGN
       Manufacturer  . . . . . . . . . : Intel Corporation
       Provider  . . . . . . . . . . . : Intel
       Version   . . . . . . . . . . . : 13.2.1.5
       Inf File Name . . . . . . . . . : C:\Windows\INF\oem17.inf
       Inf File Date . . . . . . . . . : Monday, June 14, 2010  9:05:44 AM
       Section Name  . . . . . . . . . : Install_MPCIEX_GEN_6250_AGN_2x2_HMC_WIN7_64_MOW
       Hardware ID . . . . . . . . . . : pci\ven_8086&dev_0087&subsys_13018086
       Instance Status Flags . . . . . : 0x180200a
       Device Manager Status Code  . . : 0
       IfType  . . . . . . . . . . . . : 71
       Physical Media Type . . . . . . : 9
    Informational Diagnostics Information (Wireless Connectivity)
    Details about wireless connectivity diagnosis:
    Information for connection being diagnosed
     Interface GUID: 70a0781d-6329-45e4-8d7c-34aeca294c39
     Interface name: Intel(R) Centrino(R) Advanced-N 6250 AGN
     Interface type: Native WiFi
    Connection incident diagnosed
     Auto Configuration ID: 1
     Connection ID: 1
    Connection status summary
     Connection started at: 2015-03-07 19:57:14-186
     Profile match: Success
     Pre-Association: Success
     Association: Success
     Security and Authentication: Success
    List of visible access point(s): 22 item(s) total, 22 item(s) displayed
            BSSID        BSS Type PHY    Signal(dB)    Chnl/freq    SSID
    60-02-92-C6-D3-E8    Infra     <unknown>    -62        11     HOME-C7D4-2.4
    60-02-92-A1-75-E0    Infra     <unknown>    -58        6     HOME-B917-2.4
    00-1D-D5-D5-34-F0    Infra     <unknown>    -73        6     HOME-34F2
    60-02-92-A1-75-E1    Infra     <unknown>    -58        6     (Unnamed Network)
    06-1D-D5-D5-34-F0    Infra     <unknown>    -78        6     xfinitywifi
    C4-27-95-C9-C4-2D    Infra     <unknown>    -57        1     HOME-C42D
    02-1D-D5-D5-34-F0    Infra     <unknown>    -74        6     (Unnamed Network)
    00-0D-97-07-E0-79    Infra     g    -75        6     (Unnamed Network)
    00-1D-CF-2A-44-C0    Infra     <unknown>    -86        6     HOME-44C2
    02-1D-CF-2A-44-C0    Infra     <unknown>    -86        6     (Unnamed Network)
    F8-E4-FB-3C-87-A2    Infra     <unknown>    -89        6     YVNM7
    06-1D-CF-2A-44-C0    Infra     <unknown>    -87        6     xfinitywifi
    0C-F8-93-7A-13-50    Infra     b    -87        6     PKennedy
    06-F8-93-7A-13-50    Infra     b    -89        6     xfinitywifi
    02-F8-93-7A-13-50    Infra     b    -87        6     (Unnamed Network)
    E0-88-5D-C8-A9-DC    Infra     <unknown>    -80        1     HOME-A9DC
    E2-88-5D-C8-A9-DD    Infra     <unknown>    -79        1     (Unnamed Network)
    16-CF-E2-43-0B-30    Infra     <unknown>    -88        1     xfinitywifi
    60-02-92-F0-A8-C0    Infra     <unknown>    -90        11     HOME-96A6-2.4
    60-02-92-C6-D3-E9    Infra     <unknown>    -63        11     (Unnamed Network)
    02-1D-D4-EB-87-00    Infra     <unknown>    -88        11     (Unnamed Network)
    06-1D-D4-EB-87-00    Infra     <unknown>    -88        11     xfinitywifi
    Connection History
     Information for Auto Configuration ID 1
      List of visible networks: 13 item(s) total, 13 item(s) displayed
      BSS Type PHY    Security    Signal(RSSI)    Compatible    SSID
      Infra     <unknown>    Yes        63    Yes        HOME-C7D4-2.4
      Infra     <unknown>    Yes        70    Yes        HOME-B917-2.4
      Infra     <unknown>    Yes        43    Yes        HOME-34F2
      Infra     <unknown>    Yes        70    Yes        (Unnamed Network)
      Infra     <unknown>    No        40    Yes        xfinitywifi
      Infra     <unknown>    Yes        71    Yes        HOME-C42D
      Infra     g    No        43    Yes        (Unnamed Network)
      Infra     <unknown>    Yes        28    Yes        HOME-44C2
      Infra     <unknown>    Yes        20    Yes        YVNM7
      Infra     b    Yes        21    Yes        PKennedy
      Infra     <unknown>    Yes        33    Yes        HOME-A9DC
      Infra     <unknown>    Yes        35    Yes        (Unnamed Network)
      Infra     <unknown>    Yes        16    Yes        HOME-96A6-2.4
      List of preferred networks: 3 item(s)
       Profile: xfinitywifi
        SSID: xfinitywifi
        SSID length: 11
        Connection mode: Infra
        Security: No
        Set by group policy: No
        Connect even if network is not broadcasting: No
        Connectable: Yes
       Profile: HTC Portable Hotspot 9F50
        SSID: HTC Portable Hotspot 9F50
        SSID length: 25
        Connection mode: Infra
        Security: Yes
        Set by group policy: No
        Connect even if network is not broadcasting: No
        Connectable: No
         Reason: 0x00028002
       Profile: belkin.332
        SSID: belkin.332
        SSID length: 10
        Connection mode: Infra
        Security: Yes
        Set by group policy: No
        Connect even if network is not broadcasting: No
        Connectable: No
         Reason: 0x00028002
     Information for Connection ID 1
     Connection started at: 2015-03-07 19:57:14-186
      Auto Configuration ID: 1
      Profile: xfinitywifi
      SSID: xfinitywifi
      SSID length: 11
      Connection mode: Infra
      Security: No
      Pre-Association and Association
       Connectivity settings provided by hardware manufacturer (IHV): No
       Security settings provided by hardware manufacturer (IHV): No
       Profile matches network requirements: Success
       Pre-association status: Success
       Association status: Success
        Last AP:  06-1d-d5-d5-34-f0
      Security and Authentication
       Configured security type: Open
       Configured encryption type: None
       802.1X protocol: No
       Key exchange initiated: Yes
        Unicast key received: No
        Multicast key received: No
       Number of security packets received: 0
       Number of security packets sent: 0
       Security attempt status: Success
     Connectivity
       Packet statistics
        Ndis Rx: 2068
        Ndis Tx: 2543
        Unicast decrypt success: 0
        Multicast decrypt success: 0
        Unicast decrypt failure: 0
        Multicast decrypt failure: 0
        Rx success: 3954
        Rx failure: 0
        Tx success: 537
        Tx failure: 4
        Tx retry: 2
        Tx multiple retry: 2
        Tx max lifetime exceeded: 0
        Tx ACK failure: 18
       Roaming history: 0 item(s)
    InformationalDiagnostics Information (Wireless Connectivity)
    Details about wireless connectivity diagnosis:
    For complete information about this session see the wireless connectivity information event.
    Helper Class: Auto Configuration
     Initialize status: Success
    Information for connection being diagnosed
     Interface GUID: 70a0781d-6329-45e4-8d7c-34aeca294c39
     Interface name: Intel(R) Centrino(R) Advanced-N 6250 AGN
     Interface type: Native WiFi
    Result of diagnosis: There may be problem
     Network Connection details from Command Prompt  (some info hidden for security reasons)
    Connection-specific DNS Suffix:
    Description: Intel(R) Centrino(R) Advanced-N 6250 AGN
    Physical Address: ‎00-23-15-54-19-B8
    DHCP Enabled: Yes
    IPv4 Address: 192.168.X.XX
    IPv4 Subnet Mask: 255.255.XX.X
    Lease Obtained: Saturday, March 07, 2015 7:57:14 PM
    Lease Expires: Saturday, March 07, 2015 8:24:44 PM
    IPv4 Default Gateway: 192.168.X.X
    IPv4 DHCP Server: 192.168.X.X
    IPv4 DNS Servers: 75.75.75.75, 75.75.76.76
    IPv4 WINS Server:
    NetBIOS over Tcpip Enabled: Yes
    Link-local IPv6 Address: fe80::b8de:3ac9:e166:XXX%XX
    IPv6 Default Gateway:
    IPv6 DNS Server:
    Results of Ping and Trace Route in Command Prompt
    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation.  All rights reserved.
    C:\Windows\system32>ping 127.0.0.1
    Pinging 127.0.0.1 with 32 bytes of data:
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Ping statistics for 127.0.0.1:
        Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
        Minimum = 0ms, Maximum = 0ms, Average = 0ms
    C:\Windows\system32>ping www.youtube.com
    Pinging youtube-ui.l.google.com [173.194.121.6] with 32 bytes of data:
    Reply from 173.194.121.6: bytes=32 time=24ms TTL=55
    Reply from 173.194.121.6: bytes=32 time=19ms TTL=55
    Request timed out.
    Request timed out.
    Ping statistics for 173.194.121.6:
        Packets: Sent = 4, Received = 2, Lost = 2 (50% loss),
    Approximate round trip times in milli-seconds:
        Minimum = 19ms, Maximum = 24ms, Average = 21ms
    C:\Windows\system32>ping 74.125.239.34
    Pinging 74.125.239.34 with 32 bytes of data:
    Request timed out.
    Request timed out.
    Reply from 74.125.239.34: bytes=32 time=3286ms TTL=50
    Request timed out.
    Ping statistics for 74.125.239.34:
        Packets: Sent = 4, Received = 1, Lost = 3 (75% loss),
    Approximate round trip times in milli-seconds:
        Minimum = 3286ms, Maximum = 3286ms, Average = 3286ms
    C:\Windows\system32>ping www.hotmail.com
    Pinging dispatch.kahuna.glbdns2.microsoft.com [65.55.157.204] with 32 bytes of data:
    Reply from 65.55.157.204: bytes=32 time=111ms TTL=237
    Request timed out.
    Request timed out.
    Reply from 65.55.157.204: bytes=32 time=1537ms TTL=237
    Ping statistics for 65.55.157.204:
        Packets: Sent = 4, Received = 2, Lost = 2 (50% loss),
    Approximate round trip times in milli-seconds:
        Minimum = 111ms, Maximum = 1537ms, Average = 824ms
    C:\Windows\system32>ping 207.46.11.236
    Pinging 207.46.11.236 with 32 bytes of data:
    Request timed out.
    Request timed out.
    Request timed out.
    Request timed out.
    Ping statistics for 207.46.11.236:
        Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),
    C:\Windows\system32>tracert www.youtube.com
    Tracing route to youtube-ui.l.google.com [173.194.121.5]
    over a maximum of 30 hops:
      1    19 ms    13 ms    17 ms  xfwsr12-nwca-01.sys.comcast.net [68.85.15.244]
      2    13 ms    13 ms    27 ms  ae-14-32767-ar03.newcastle.de.panjde.comcast.net [68.85.192.205]
      3    20 ms    26 ms    21 ms  he-5-10-0-0-cr01.ashburn.va.ibone.comcast.net [68.86.94.249]
      4    18 ms    34 ms    22 ms  he-0-13-0-0-pe07.ashburn.va.ibone.comcast.net [68.86.86.50]
      5    19 ms    18 ms    18 ms  50-248-116-190-static.hfc.comcastbusiness.net [50.248.116.190]
      6    35 ms    18 ms    18 ms  209.85.249.217
      7    21 ms    19 ms    19 ms  72.14.233.93
      8     *        *        *     Request timed out.
      9     *     2509 ms   677 ms  iad23s25-in-f5.1e100.net [173.194.121.5]
    Trace complete.
    C:\Windows\system32>tracert 74.125.239.34
    Tracing route to nuq04s19-in-f2.1e100.net [74.125.239.34]
    over a maximum of 30 hops:
      1    54 ms    23 ms    12 ms  xfwsr12-nwca-01.sys.comcast.net [68.85.15.244]
      2    22 ms    19 ms    17 ms  ae-14-32767-ar03.newcastle.de.panjde.comcast.net[68.85.192.205]
      3    19 ms    19 ms    18 ms  he-5-14-0-0-cr01.ashburn.va.ibone.comcast.net [68.86.166.121]
      4    18 ms    18 ms    18 ms  he-0-15-0-0-cr01.350ecermak.il.ibone.comcast.net[68.86.85.74]
      5    19 ms    18 ms    22 ms  50-248-116-190-static.hfc.comcastbusiness.net [50.248.116.190]
      6    22 ms    36 ms    19 ms  209.85.249.217
      7    26 ms    23 ms    25 ms  209.85.143.112
      8     *        *        *     Request timed out.
      9     *        *        *     Request timed out.
     10   972 ms     *        *     216.239.51.97
     11   148 ms    97 ms    95 ms  216.239.46.241
     12   324 ms   130 ms   432 ms  209.85.246.252
     13     *        *        *     Request timed out.
     14  1403 ms   101 ms   126 ms  nuq04s19-in-f2.1e100.net [74.125.239.34]
    Trace complete.
    C:\Windows\system32>tracert www.hotmail.com
    Tracing route to dispatch.kahuna.glbdns2.microsoft.com [65.55.157.144]
    over a maximum of 30 hops:
      1    13 ms    13 ms    25 ms  xfwsr12-nwca-01.sys.comcast.net [68.85.15.244]
      2    13 ms    15 ms    13 ms  ae-14-32767-ar03.newcastle.de.panjde.comcast.net[68.85.192.205]
      3    20 ms    19 ms    17 ms  he-5-13-0-0-cr01.ashburn.va.ibone.comcast.net [68.86.95.145]
      4    17 ms    20 ms    20 ms  he-0-13-0-0-pe07.ashburn.va.ibone.comcast.net [68.86.86.50]
      5    17 ms    18 ms    38 ms  as8075-2-c.ashburn.va.ibone.comcast.net [173.167.58.82]
      6    18 ms    18 ms    36 ms  ae4-0.ash-96cbe-1a.ntwk.msn.net [207.46.36.172]
      7     *        *        *     Request timed out.
      8     *     2191 ms    35 ms  ae0-0.atb-96cbe-1b.ntwk.msn.net [191.234.81.167]
      9     *        *        *     Request timed out.
     10     *        *        *     Request timed out.
     11    86 ms    84 ms    84 ms  ae4-0.lax-96cbe-1a.ntwk.msn.net [191.234.83.150]
     12    86 ms    86 ms    87 ms  ae9-0.by2-96c-1a.ntwk.msn.net [207.46.42.176]
     13     *        *        *     Request timed out.
     14     *        *        *     Request timed out.
     15     *        *        *     Request timed out.
     16     *        *        *     Request timed out.
     17    87 ms    84 ms    85 ms  origin.by173w.bay173.mail.live.com [65.55.157.144]
    Trace complete.
    C:\Users\C.Cunningham>tracert 207.46.11.236
    Tracing route to origin.by181w.bay181.mail.live.com [207.46.11.236]
    over a maximum of 30 hops:
      1    16 ms    16 ms    19 ms  xfwsr12-nwca-01.sys.comcast.net [68.85.15.244]
      2    18 ms    13 ms    13 ms  ae-14-32767-ar03.newcastle.de.panjde.comcast.net[68.85.192.205]
      3    21 ms    19 ms    21 ms  he-5-12-0-0-cr01.ashburn.va.ibone.comcast.net [68.86.95.141]
      4    18 ms    21 ms    18 ms  he-0-13-0-0-pe07.ashburn.va.ibone.comcast.net [68.86.86.50]
      5     *        *        *     Request timed out.
      6     *        *        *     Request timed out.
      7     *        *        *     Request timed out.
      8     *        *        *     Request timed out.
      9     *        *        *     Request timed out.
     10     *        *        *     Request timed out.
     11     *        *        *     Request timed out.
     12     *        *        *     Request timed out.
     13     *        *        *     Request timed out.
     14     *        *        *     Request timed out.
     15     *        *        *     Request timed out.
     16     *        *        *     Request timed out.
     17     *        *        *     Request timed out.
     18     *        *        *     Request timed out.
     19     *        *        *     Request timed out.
     20     *        *        *     Request timed out.
     21     *        *        *     Request timed out.
     22     *        *        *     Request timed out.
     23     *        *        *     Request timed out.
     24     *        *        *     Request timed out.
     25     *        *        *     Request timed out.
     26     *        *        *     Request timed out.
     27     *        *        *     Request timed out.
     28     *        *        *     Request timed out.
     29     *        *        *     Request timed out.
     30     *        *        *     Request timed out.
    Trace complete.
    Results of Intel WiFi Manual Diagnostics
    Test Name                 Test Result   Test Summary
    Hardware Test           Passed        Wireless Hardware is enabled
    Driver Test                 Passed        Diver is loaded. NETwNs64 Version 13.3.0.24
    Radio Test                  Passed       Radio is ON
    Scan Test                   Passed       There are 25 Networks available to connect
    Association Test        Passed       Associated
    Authentication Test   Passed       Authenticated
    Signal Test                Passed       Signal Quality: Poor
    Ping Test                  Failed          No Reponse: default gateway, DHCP server
    I hope this information is enough to get to the root of this problem once and for all.  Please let me know if you any other information such as event logs or statistics. 
    Thanks in advance.

    Results of Intel WiFi Event View Log (I deleted some lines since there were basically repeats of the same messages)
    #Event  Source  Time     
    Error Severity    Domain               
    User      Description
    45           EvtEngine           
    3/8/2015 20:40  Success               
    Connection         SYSTEM               
    iAMT - Failed to read Windows Events Log
    46           S24EvMon          
    3/8/2015 20:41  Information       
    AppDriver          
    SYSTEM               
    Getting List of adapters.
    47           S24EvMon          
    3/8/2015 20:41  Information       
    AppDriver          
    SYSTEM               
    Intel adapter(s) found.
    156         S24EvMon          
    3/8/2015 20:47  Information       
    Driver    SYSTEM               
    AddToExclude 06:1d:d5:d5:34:f0 xfinitywifi 6 WEV_EXCLUDE_LIST_REASON_802_11_AUTH_FAILURE
    157         S24EvMon          
    3/8/2015 20:47  Information       
    Driver    SYSTEM               
    ATC 06:1d:cf:2a:44:c0 xfinitywifi 6 RSSI=-88
    158         S24EvMon          
    3/8/2015 20:47  Error     
    Driver    SYSTEM               
    AssociationFailure 06:1d:cf:2a:44:c0 xfinitywifi 6 CNCT_GENERAL_FAILURE
    159         S24EvMon          
    3/8/2015 20:47  Information       
    Driver    SYSTEM               
    AddToExclude 06:1d:cf:2a:44:c0 xfinitywifi 6 WEV_EXCLUDE_LIST_REASON_802_11_ASSOC_FAILURE
    160         S24EvMon          
    3/8/2015 20:47  Information       
    Driver    SYSTEM               
    ATC 06:1d:d5:d5:34:f0 xfinitywifi 6 RSSI=-79
    161         S24EvMon          
    3/8/2015 20:47  Success               
    Driver    SYSTEM               
    RxAuthSuccess 06:1d:d5:d5:34:f0 6
    162         S24EvMon          
    3/8/2015 20:47  Success               
    Driver    SYSTEM               
    RxAssocResp 06:1d:d5:d5:34:f0 6 -77
    163         S24EvMon          
    3/8/2015 20:49  Information       
    TCP/IP  SYSTEM               
    VoIP: Got link down - deleting flows .
    164         S24EvMon          
    3/8/2015 20:49  Information       
    Driver    SYSTEM               
    ATC 06:1d:d4:eb:87:00 xfinitywifi 11 RSSI=-88
    165         S24EvMon          
    3/8/2015 20:49  Error     
    Driver    SYSTEM               
    AssociationFailure 06:1d:d4:eb:87:00 xfinitywifi 11 CNCT_GENERAL_FAILURE
    166         S24EvMon          
    3/8/2015 20:49  Information       
    Driver    SYSTEM               
    AddToExclude 06:1d:d4:eb:87:00 xfinitywifi 11 WEV_EXCLUDE_LIST_REASON_802_11_ASSOC_FAILURE
    167         S24EvMon          
    3/8/2015 20:49  Information       
    Driver    SYSTEM               
    ATC 06:1d:d4:eb:87:00 xfinitywifi 11 RSSI=-89
    168         S24EvMon          
    3/8/2015 20:49  Error     
    Driver    SYSTEM               
    AssociationFailure 06:1d:d4:eb:87:00 xfinitywifi 11 CNCT_GENERAL_FAILURE
    169         S24EvMon          
    3/8/2015 20:49  Information       
    Driver    SYSTEM               
    AddToExclude 06:1d:d4:eb:87:00 xfinitywifi 11 WEV_EXCLUDE_LIST_REASON_802_11_ASSOC_FAILURE
    170         S24EvMon          
    3/8/2015 20:49  Information       
    Driver    SYSTEM               
    ATC 06:1d:d4:eb:87:00 xfinitywifi 11 RSSI=-90
    171         S24EvMon          
    3/8/2015 20:49  Error     
    Driver    SYSTEM               
    AssociationFailure 06:1d:d4:eb:87:00 xfinitywifi 11 CNCT_GENERAL_FAILURE
    172         S24EvMon          
    3/8/2015 20:49  Information       
    Driver    SYSTEM               
    ATC 06:1d:d5:d5:34:f0 xfinitywifi 6 RSSI=-82
    173         S24EvMon          
    3/8/2015 20:49  Success               
    Driver    SYSTEM               
    RxAuthSuccess 06:1d:d5:d5:34:f0 6
    174         S24EvMon          
    3/8/2015 20:49  Success               
    Driver    SYSTEM               
    RxAssocResp 06:1d:d5:d5:34:f0 6 -81
    175         S24EvMon          
    3/8/2015 20:50  Information       
    Driver    SYSTEM               
    AddToExclude 06:1d:d5:d5:34:f0 xfinitywifi 6 WEV_EXCLUDE_LIST_REASON_802_11_AUTH_FAILURE
    176         S24EvMon          
    3/8/2015 20:50  Information       
    Driver    SYSTEM               
    ATC 06:1d:d5:d5:34:f0 xfinitywifi 6 RSSI=-79
    177         S24EvMon          
    3/8/2015 20:50  Success               
    Driver    SYSTEM               
    RxAuthSuccess 06:1d:d5:d5:34:f0 6
    178         S24EvMon          
    3/8/2015 20:50  Success               
    Driver    SYSTEM               
    RxAssocResp 06:1d:d5:d5:34:f0 6 -80
    179         S24EvMon          
    3/8/2015 21:03  Information       
    Driver    SYSTEM               
    RoamTrigger 06:1d:d5:d5:34:f0 xfinitywifi 6 RSSI=-81 MisBcn=8 RSSITh=-85 Roam Other Reason
    186         S24EvMon          
    3/8/2015 21:21  Information       
    General               
    SYSTEM               
    DeviceIoCtrlS24NDIS: (2) Failed to send OID 0xff100055 to driver. Error - 31
    187        
    S24EvMon          
    3/8/2015 21:21  Information       
    General               
    SYSTEM               
    DeviceIoCtrlS24NDIS - Dot11ExtNicSpecificExtension failed (31)

  • Is there a way to copy & paste a clip from the timeline in one project in to another project?

    Hello Popular Premiere Pontificaters,
    I am using Premiere 6 on a Windows 7 machine.
    Is there a way to copy and paste a clip from the timeline in one project in to another project?... I can copy my clip, but when I open the other project, it will not allow me to paste it in there... but I am able to copy and paste a clip within a single project.  I tried everything... pasting in to a new video track and pasting in to an existing video track in the second project, but the paste option simply isn't there when I open the second project.
    And if Premiere itself will not allow me to do this in any way, will a copy-paste clipboard type of accessory app allow me to do this?... if so, which is the best, trustworthy copy-paste app that is malware free?
    Thanks,
    digi

    Hi Bill Hunt,
    I just read the page that you provided about "Handles"... thanks allot for that ARTICLE.  In your article and the subsequent article HANDLES, "Transitions Overview: applying transitions" linked from your article, it indicates (in PrE and PrPro anyway - I'm in Premiere 6) that transitions can be applied to non-Video 1 tracks... the paragraph below is a quote from that "Transitions Overview: applying transitions" article...
    "Whatever is below the transition in a Timeline panel appears in the transparent portion of the transition (the portion of the effect that would display frames from the adjacent clip in a two-sided transition). If the clip is on Video 1 or has no clips beneath it, the transparent portions display black. If the clip is on a track above another clip, the lower clip is shown through the transition, making it look like a double-sided transition."
    So this indicates that transitions can be applied to non-Video 1 tracks since it is referring to content in tracks beneath a transparent fade that would show through... and only non-Video 1 tracks can be transparent and have other clips "beneath" them in the timeline, right?
    In the screenshot sample in your article at this LINK, I see the handles (referred to as B and E) and I can see in my monitor window how those handles would be represented by the two little bracket symbols {  }  ... you can see how they appear in my monitor window in Premiere 6 in this screenshot, and below, from a different thread that isn't related to this topic.
    But I'm still trying to figure out how the handles can be applied in the non-Video 1 tracks in the timeline to insert a transition (cross-dissolve) between two clips.
    Can you advise me on this?... I posted a separate thread HERE on this topic, but I haven't got any further with finding an answer.
    Thanks so much for your article,
    digi

  • Project Resource Calendars for onshore and offshore (different working hours)

    Advice please.
    As with many companies we use Project 2010 with onshore and offshore resources.
    Facts are as follows:
    Onshore resource – 09:00 – 17:00 – 35 hour week
    Offshore resource – 08:00 – 18:00 – 40 hour week
    These resources are in different time zones; however that element is not an issue.
    The problem seems to be with resource calendars.  Resource calendars are setup as per above and assigned to appropriate resources in EPM/Project Server 2010 - however could be local for same issue. 
    The problem is that work is reflected correctly in hours or days but not both.  
    So looking at Task usage table. 
    For example:
    Typing in hours for Onshore and Offshore resources on any task is correct. 
    So 7 for onshore and 9 for offshore.  However when you can the work view in options so that work is entered in days, its incorrect for offshore. 
    Same hours for both but incorrect days.  Basically the resource calendar does not seem to have an impact.
    The Plan default working times can be set to either schedule but either way one or the other type of resource is out.
    For instance :  Offshore resource 9 hours should equate to 1day. However it equates to 1.29 days. 
    Which would be correct if that resource was on an onshore cal.
    My assumption is as follows:
    Set the Project default hours to 08:00 – 18:00 – 9 hour days, 40 hour week.
    This allows offshore to work there hours as the project plan is effectively open for business.
    Onshore resources should then be restricted to their resource calendar meaning that they only work 7 hours per day regardless of the plan indicating 9 hour days.
    Hope that makes sense...
    Any thoughts would be much appreciated…..
    -CL.

    Hi,
    Everything you write is right, and your confusion only stems from the misunderstanding of how Project defined the "day" as a time unit.
    Matter of fact, Project uses for its calculations only ONE time unit which is the MINUTE.
    Of course, that implies the HOUR is a usable unit as well - an hour being 60 minutes isn't questioned by anyone.
    OTOH, your post illustrateds tha a definition for  day is not so obvious; Project's definition is that a day is always equal to an hour times the parameter "hours per day" in the options. So what a day is, is totally independent from any calendar, Project,
    Resource or Task calendar. Within that definition the values you see are "right".
    But the good news is that your other assumption,quote:
    Onshore resources should then be restricted to their resource calendar meaning that they only work 7 hours per day regardless of the plan indicating 9 hour days.
    That is true. Work is planned according to available working time in the appropriate calendar.
    My advice is to not use the day as planning unit in any view: the hour will better allow to understand how Project is planning the tasks.
    Greetings,

  • How to make sure, on success action 'Open another project' works on both ipad and desktop devices

    If I have a project with a open another project in a new window action set to a button in that project, will only placing the swf and htm files of the newly opened project within the published folder of the parent project be enough for allowing the parent project to be played successfully both in desktop and mobile devices like ipad? To allow this, I presume multiscreen.html file located within the published folder of the parent project is the file to be used. But, since swf files can't be played on mobile devices, do I need to place the multiscreen.html file located within the published folder of the newly opened project into the published folder location of the parent project? The parent project folder location already has multiscreen.html file specific to that project and if the multiscreen.html file of the newly opened project need to be added to the published folder location of the parent project(which also has multiscreen.html file), how do I go about doing this? Can I just rename the mulscreen.html file of the newly opened project to say something different like multiscreen1.html and add this file along with the swf and htm file into the published folder location of the parent project, so that it works for both desktop or mobile devices.

    From what I'm hearing, you're probably wise to have a copy of the file in both locations.  One in the same folder as the SWF, and the other in with the HTML5 files.  What I don't know is exactly where in the HTML5 folders your file would need to be.  It might need to be at the same level as the index.html.  I haven't tested this.
    You should be able to figure out the answer to a lot of your questions just by testing things out on content uploaded to a web server.  At the end of the day, if it works, it works.

  • Dynamic Measure - Selecting which fields to include in a calculation

    Hello all,
    and thank you so much for spending your time reading this. I'm working on PowerPivot in Excel 2010. But if you know there's a solution in 2013, please let me know and I'll try to justify an upgrading. I have a table for my data source where the rows
    are products and I have a list of columns with years. Each cell is the number of items sold:
    I'm setting up a spreadsheet in Excel 2010 and also a page in PowerView to compare how they look. I have some slicers that work on which items to be included in the calculations, ie. average sales. Is there a way to create a slicer / filter fo
    the user to select which years to include in the calculation of the average! For example: With slicers to select item 1 and item 2, but only years 2012 and 2013 to be included in the calculation of an average of sales? I can easily create
    a slicer on items and a measure to calculate that average. However, I can't put the years in the equation.
    Is there a way? Thank you

    You could accomplish this with the technique of using disconnected tables/slicers in PowerPivot.  There are quite a few blog posts out there about different applications of disconnected tables/slicers.  Basically, it allows for using slicers as
    a means of entering parameters into your measures.  Although extremely useful in many situations, it may be a little advanced and confusing for a new Power Pivot user. 
    An easier option may be to reshape (unpivot) your data.  Instead of a short, wide table, it could be transformed into a long skinny table.  In other words, instead of having a different column for each year, you would only have a single column
    called Year and another column called Values.  The Items column would simply contain duplicate entries for each item depending on the number of years.  No matter how many years are added in the future, you data table would still only have 3 columns
    (Items, Year, and Value). In this scenario, measures are usually easier to write and the year column could also be used as a slicer.  The bonus is that PowerPivot is designed to perform much faster on long, skinny tables with fewer columns.
    If your source data is from a database such as SQL Server, then your DBA can most likely create an unpivoted view for you pretty easily.  If that isn't an option or your data is from another source, you should download Power Query.  This is free
    Excel Add-in from Microsoft, in the same family as Power Pivot, that is designed to reshape data from many different sources with no coding necessary in most cases.  Power Query has an Unpivot command built in and the results can be imported directly
    to Power Pivot.

  • JDeveloper - ADF Faces projects - calling a jspx from another project

    I have an ADF Faces project which has a jspx file and a backing bean. The jspx file is called 1.jspx and the backing bean is called 1.java. Navigation within the page and outside of the page is controlled by the faces-config.xml.
    However, I want to be able to navigate to another jspx in another project. Let's call this jpx, 2.jspx. How would I be able to make this call without losing the current context in my first project? Please note I do not want to have to copy the 2.jspx and 2.java files into my current project.
    Thanks
    Chris

    Hi,
    according to the JavaEE specs, a J2EE context demarks the scope of a session, which means that as soon as you call out to another application, you start a new session, loosing all the information of the other session. So if you don't want to deploy this all in one application, then you have to find a way of persisting context information (e.g. using a shared database instance)
    Frank

  • Can I copy and paste the texts or graphics to another project?

    Hi folks, I am working on several movie clips which share the same graphics and most contents as beginning intro. Just a few sentences are different. If would be so much hassle if I had to type everything and import the images to every clips. I noticed that I can't open two projects at the same time. So I am wondering if I can group them, copy and paste them to another project? Is it doable?
    Thanks a lot for your time!

    Unfortunately, you have posted to the Tips & Tricks sub-forum, which is a repository for articles on how to do things in PrE & PrPro. Maybe Steve Grisetti, our tireless MOD, can move your post to the main forum, where more folk will see it, and can comment on it.
    In the meantime, you are correct - one cannot have two Projects Open at the same time, and you cannot Copy/Paste between Projects, without an additional program, like the Clipboard extender, ClipMate. That is one way to get what you want.
    Possibly there is another way to do what you want, without any additional programs. If you have Titles, and they will only change by a bit, you can create a "master" Title with graphics, text, Styles, etc., and then Save each as a Template, which can be used in multiple Projects, and also altered/edited in those Projects, as is needed. Everytime that I create a Title, with potential for reuse, I just do the Export as Template (the exact syntax might differ by version, but the result is the same - a PRTL Title Template file, located where you direct the program), and then those will appear in my Title "organizer" to be chosen. When one Imports one, they can be edited, as needed.
    If one has an Intro, that will be reused, then one could create that, with any audio, images and Titles, and Export/Share as a DV-AVI, or similar, for later use. Note: with this method, one could not directly edit any Titles in such an Asset, as they would no longer be official Titles, and would be footage in an AV Clip. One could Cut out a Title, and replace it with a real Title, but then one would have to adjust for Transitions, if any were used. Still, I have some Intros, and Outros, that are constant, like The End Outros, and I use the Exported AV Clips there. In some cases, I leave the Intro, or Outro slightly unfinished, so that I can just add in, say a Title for each use in other Projects.
    Good luck, and when the post is moved to the main forum, there will probably be some additional comments on slightly different workflows.
    Hunt

Maybe you are looking for

  • ADOBE interactive form - Taking long time to Activate

    Hi All, We are desining ADOBE interactive form in SAP R/3 via SFP. But the form is taking unusally too much time to get activated. Even one of the form could not even be activated. It gave a time out error after around 3 hours. Please help me with un

  • Validation for Profit Center and Trading Partner

    Hi Gurus, Please help me in creating validation for Profit Center and Trading Partner. I want system to give an error if we use Trading Partner related to particular profit centers. Please revert asap. Thank You

  • HT4623 Terms and Conditions screen hangs when updating to iOS 8.0.2 on iPhone 5c

    I have iOS 8.0 (12A365) on my iPhone 5c. The phone has 32 GB, 16 GB available. Tried to update to iOS 8.0.2 over the network, but after touching "Agree" on the pop-up from the Terms and Conditions screen, the Settings app froze. The screen did not cl

  • Release Outside when dragging object

    Hi there, I have a number of tabs which can be dragged around the screen.. I've constrained the movement to a rectangle using startDrag(false, rectangleName) but when I ROLL_OUT or MOUSE_UP outside of the constrain rectangle the tab does not register

  • Soft sessionspace exceeded

    Hi all, I'm not sure this is the right newsgroup to ask, but I'll try anyway ;-) I have an application (module) deployed as EJB in a 8.1.6 db on a win2000 machine. It seems to work fine, except I get the following message over and over in my user-dum