Export issue using the shooting script fix

I've followed the directions given at http://forums.adobe.com/message/4369249#4369249 for switching between formats (r.e. showing shooting info and not). The issue I have now is on export. When I export to pdf from a file saved under the film template it exports the shooting information--causing the lines in the pdf to be obscured by the camera directions.  This leaves me with a useless script as no actor/actress is able to read it.  I tried to export as txt as a work around but the formating comes out skewed.  I need a way to export which will leave the formatting correct and will leave off the shooting info, so it can be used as a readable script.   Any suggestions?

Hi,
We are aware of this issue and it will be fixed in our next update.
Meanwhile workaround is:
1. Export you script to astx format
2. Import this astx file into story
3. Export this script to pdf.
Thanks
Rohit
Adobe Story Team

Similar Messages

  • We are using the "ExportAllText" script, But we want to format it for csv export

    We are using the ExportAllText script, http://forums.adobe.com/thread/733900, but we want to format the text so we can import it csv format
    What we need it to change the begin of the story with (") quotes, change the end of the first paragraph with another caracter ("|"), so the first paragraph, is the first field in the comma separated value, then at end of the story another (") quote and a end of paragraph. So with this we will have two fields per row.
    In the Script this is the part where it reads the stories from the indesign document, but we do not know how to do it?
    We are using CS2
      for(myCounter = 0; myCounter < myDocument.stories.length; myCounter++){
        myStory = myDocument.stories.item(myCounter);
        //Export the story as tagged text.
        myStory.exportFile(ExportFormat.taggedText, myTempFile);
        //Import (place) the file at the end of the temporary story.
        myNewStory.insertionPoints.item(-1).place(myTempFile);
        //If the imported text did not end with a return, enter a return
        //to keep the stories from running together.
        if(myCounter != myDocument.stories.length -1){
          if(myNewStory.characters.item(-1).contents != "\r"){
            myNewStory.insertionPoints.item(-1).contents = "\r";
        if(myAddSeparator == true){
          myNewStory.insertionPoints.item(-1).contents = "—————————————-\r";
    Can any one help us
    Thank´s in Advanced

    http://support.apple.com/kb/HT1495

  • HELP!!!  Message - (One or more applications are using the iTunes scripting interface. Are you sure you want to quit?)  How do I get this to stop?

    I bought a new Sony Vaio Laptop running Windows 8, 64bit, i7 processor.  Everytime I open iTunes and then close out, the following message occurs: (i-tunes message - One or more applications are using the iTunes scripting interface. Are you sure you want to quit?) Then it starts counting down from 20 seconds unless I just click on the (Quit) button.  How do I get this to stop?  Please be specific, I am challenged when it comes down to computers.
    Thank You

    This was extremely annoying for me, also.  I started uninstalling unneeded Sony applications to try to narrow down the problem.  It turned out not to be a Sony application... it is some functionality built into the bluetooth driver software package by Broadcom.  Uninstalling the bluetooth package (via the control panel) takes care of the problem.  Itunes also boots up way quicker.  But uninstalling it will remove features related to bluetooth and nfc.   For me, that isn't an issue, since I don't use them.  Since you said you're "computer challenged" I would probably just send an email to sony complaining about the problem.  They'll get in touch with Broadcom eventually (the manufacture of the drivers) and get the problem fixed.
    Side note: the Broadcom package is huge...  nearly 1GB in size.  Which is crazy.  I can't imagine what it does considering the size of it.  Entire operating systems can take up less storage.  Also, I have no idea how it starts an itunes plugin without placing it into the standard plugin directories.

  • An issue using the COM components supplied with SAP GUI 6.2 or 6.4

    We are having an issue using the COM components supplied with SAP GUI 6.2 or 6.4.  We used to have SAP 4.6c and now we have 5.0.  When we were on 4.6c, we used these COM components to logon and execute RFC calls and we had much success.  Now that we are on 5.0, we can’t seem to instance any SAP functions that have something to do with SAP Workflow.  We have experienced this problem when using VB6 or .NET, but our existing code that always worked is in VB 6.0.
    SAP Components used:
    o     SAP Logon Control
    o     SAP Function Control
    o     Librfc32.dll
    o     Other supporting C DLLs and/or COM object supplied with the SAP GUI installation.
    For example, if we want to call the RFC ARCHIV_CONNECTION_INSERT, this code fails in VB6 when the “Set objworkflow = objFuncCtrl.Add(strFunction)” line of code executes.  Instead of returning an instance of the object ARCHIV_CONNECTION_INSERT function, no object is created.  In 6.2, SAP raises no errors, but the object we are trying to create is still “Nothing”.  If we use 6.4, SAP raises an error “SAP data type not supported” via a message box and then the object is still = Nothing.  Interestingly enough, the 6.2 GUI COM controls don’t display the error dialog.  The message box that is shown comes from the SAP Function COM Object "SAP.Functions" (wdtfuncs.ocx).
    Now, what is interesting is if we use the same code to call a standard function or custom function that doesn’t have anything to do with SAP Workflow, then the code works fine.  Again, all of our code used to work just fine on an SAP 4.6 system.
    Here is the code that fails:
        'SAP Logon control - object for creating connections to an SAP system
        Dim objSAPLogonCtrl As Object
        'SAP connection object
        Dim objConnection As Object
        'Object that will represent the SAP function called
        Dim objSAP As Object
        'SAP function control object - object factory for creating other SAP function objects
        Dim objFuncCtrl As Object
        'Create instance of an SAP logon conrol
        Set objSAPLogonCtrl = CreateObject("SAP.Logoncontrol.1")
        'Create a connection object
        Set objConnection = objSAPLogonCtrl.NewConnection
        'Define connecion parameters
        objConnection.ApplicationServer = "sapvm"
        objConnection.SystemNumber = "00"
        objConnection.Client = "800"
        objConnection.User = "iissap"
        objConnection.Password = "tstadm"
        objConnection.Language = "E"
        objConnection.TraceLevel = 10
        'call the logon method of the connection object
        If objConnection.Logon(0, True) = False Then
            MsgBox Error
            Exit Sub
        End If
        'Create an instance of the SAP Function control object
        Set objFuncCtrl = CreateObject("SAP.Functions")
        'Set the function control connection object
        Set objFuncCtrl.Connection = objConnection
        'Function name to be generated and called
        Dim strFunction As String
        strFunction = <b>"ARCHIV_PROCESS_RFCINPUT"</b>
        'Create an instance of the function defined in strFunction
        Set objworkflow = objFuncCtrl.Add(strFunction)
        If objworkflow Is Nothing Then
            MsgBox "Could not create object " & strFunction
        Else
            MsgBox strFunction & " object created."
        End If
    If anyone has seen anything like this or has any ideas, please help!
    Mike and Hameed
    <b></b>

    Hi,
    documentation on the Scripting API is available at ftp://ftp.sap.com/pub/sapgui/win/640/scripting/docs/
    This API is a replacement of the existing, obsolete COM interfaces.
    Best regards,
    Christian

  • How to delete the members in one dimension use the maxl script

    i have question that i want to delete the members in one dimension useing the maxl script, but i do not know how to do it. can the maxl delete the members in one dimension? if can, please provide an sample script, thank you so mcuh.

    MaxL does not have commands to alter an outline directly, except the reset command which can delete all dimensions but not members selectively. The best you could do would be to run a rules file (import dimensions) using a file that contains the members you want to keepload rule for the dimension. As typical the warning is to test this first before you do it on a production database

  • How to Use the JAVA SCRIPT code in .htm page of the component

    Hi .
    In my requirement i have to use Java Script Function in .htm code ..how to use the java script code and functions in .htm???
    thank you
    B.Mani

    Check this document  [Arun's Blog|http://wiki.sdn.sap.com/wiki/display/CRM/CRMWebClientUI-TalkingwithJava+Script]
    Regards
    Kavindra

  • How to delete the unix files automatically using the unix scripts

    Hi
    we have the ADF Project deployed on weblogic server running on top of Linux OS. But, our ADF running project is generating temporary files in weblogic server path below path
    /u01/oracle/product/Middleware/user_projects/domains/based_domain/servers/AdminServer/tmp.
    we are deleting the folders and files existed in TMP directory manually, when size is huge. but, our requirement is to delete the same automatially using the shell scripting based on the time interval say for every 10 hours or 2 days.
    Can anybody please provide us the solution.
    Regards
    Nagaraju Manchala

    Moderator Action:
    @ Nagaraju,
    Your duplicate post of this same exact question,
    that you had placed in the WebLogic Server - Clustering forum,
    has been deleted.
    For future reference, do not ever multi-post. Multi-posting is poor forum etiquette.
    Pick whichever forum you think is most appropriate and place your inquiry.
    You will get a response or you will not get a response.
    There is no obligation, in these free forums populated by end users just like yourself, that a post ever get a response.

  • Camera orientation (issue) while the orientation is fixed

    Hi!
    Iam using iphone 4, and i found a very nasty thing, i dont know its an "issue" or just a logical bumping, anyway its very annoying.
    While the portrait orientation is fixed, the camera orientation is going to be fixed aswell, but of course most of the people are turning while shooting (especially video) by 90 degrees, and because of the fixed orientation, the created video is going to be disoriented.
    So i think the camera has to be excludes from the "globalized" orientation fixing, even its locked too. And of course after a wrong shooting, there is no way to fix this on the phone directly..
    Any tips, or advice ?
    Cheers,
    Ku5i

    Take the picture while holding your phone as such that the volume buttons face downward.

  • Xorg, Catalyst, used the DDX,ForceXXA fix

    Okay, First time using Arch Linux (atleast on a real machine, i tested it and got it 'up and running' in a VM. Couple things that have to be said
    1) Great idea behind the distro
    2) Installer def made me learn my linux sh*t (or relearn as it came up time to time)
    3) Amazing Wiki's
    Speaking of which, I had been using the wiki's to get the Catalyst driver up and running my 3200 HD, used the version into the main Cataylst repo (10.6-2), my xorg is v1.8.1.902-1. Installed catalyst, added fglrx to rc.conf daemons list
    DAEMONS=(syslog-ng network netfs crond hal fglrx gdm transmissiond
    ran
    aticonfig --initial
    aticonfig -v
    and rebooted.
    When I came back into Gnome, I was having some issues with my desktop and windows. The odd thing thats happening is with Terminal and Firefox (So far, havent seen it in others -- yet as it only comes up sometimes) if I open up one of the apps, or bring it up from minimize, everything except the menu is blacked out. Like when I registering for the site, I had to un-maximize the window (which cleared the black cuz it made it redraw everything on the page) then maximize it again to get it back the way I wanted.
    I can also clear it (like with terminal) by just changing the width / height by 1 pixel, because it re-draws the window. If terminal is blacked out, by I start typing, as I type, it clears the black and replaces it with the white background, black text that it should be, one character at a time following my cursor.
    Thinking maybe this had to deal with the artifacts/grey/black/white boxes bug, I ran
    aticonfig --set-pcs-str=DDX,ForceXAA,TRUE
    from init 3,
    rebooted
    and..... no fix.
    if anyone has ANY ideas, I would absolutely love to hear it. I'm a big fan of Arch already and would hate to have to give it up because the 3D was unstable (This is mainly a gaming box, hence the 3D as a make-or-break with a side priority on classwork -- considering its summer haha.)
    I have no problems with working my arse off TO get it to work, but I do need Catalyst so its unfortunately not "just use the open source drivers"

    Okay, went into and added fglrx to my modules as it should be, removed it from daemons. So now those two lines look like:
    MODULES=(fglrx)
    and
    DAEMONS=(syslog-ng network netfs crond hal gdm transmissiond)
    respectively.
    unfortunately, I am still having issues with the redraw.
    glxinfo | grep "direct rendering"
    reports: yes
    glxinfo | grep "vendor"
    reports: ATI Technologies Inc
    I also UNDID the ForceXAA fix by resetting that value back to false
    Im wondering if it could possibly be my xorg.conf that it configured incorrectly, I can post it if you or anyone else would like to double check it. I have my old Ubuntu 10.04 xorg.conf, but i'm not sure if that was the same version of xorg unfortunately.
    Last edited by FathisAeril (2010-07-02 18:08:02)

  • Lightroom 4 resizing on export feature - using the "long edge" resize option - doesn't seem to work

    In previous versions of Lightroom (prior to 4), when I used the resize feature while exporting, I often used the "long edge" value to resize.
    Previously, when I selected 2500 as the "long edge" value, I would receive exported JPGs in a size of something like 2500x1650 or so for landscape shots and 1650x2500 for portrait shots.
    With LR 4 (not sure if this started with the RCs or 4.0), using the same settings, I'm getting landscape shots that are 3700x2500 and portrait shots that are 1650x2500. This is acting more like I said I wanted a dimensional resize of _____ X 2500 instead of long edge of 2500.
    I tried playing around with some of these settings, but nothing seems to give me the old behavior of 2500 on the long edge, even though that's what I've set it for.
    Anyone else seen this type of issue?
    I'm currently running LR 4 RC2, but also noticed this on RC1, but not sure of 4.0.  I'm a Mac user, running the current version of Lion (10.7.3) on a 2010 Mac Pro.
    Thanks,
    Mark

    With RC2 on Windows 7 (64 Bit) I get 2500x1667 for landscape and 1667x2500 for portrait, as expected. Seems to be an issue in the Mac version only.
    A workaround might be to use "dimensions" instead and leave one of the fields empty (LR inserts "0" there, but one cannot enter "0" manually). I think this is equivalent to "long edge", but I am not 100% sure (edit: ok, I think I am nearly sure that it is).

  • Have the problem to export media use the queue after the latest update of Premiere and Media encoder?

    After update the Premiere CC 2014 and Encoder CC 2014, I couldn't export the movie use the Queue function?
    There always had a unknown error stop the process. (Compile error?)

    You need to fix that first.
    Export and preview in the Media Encoder and watch when it stops.
    There you need to fix the timeline.
    Start a new project to see if you can use AME.

  • Troublesho​oting issues using the BlackBerry Virtual Expert

    Posted originally on the Inside BlackBerry Help Blog
    Does your BlackBerry need a health assessment? Are you considering a repair? If so, check out the BlackBerry Virtual Expert (BBVE), a simple, self-guided diagnostic app for BlackBerry smartphones.
    Depending on what type of smartphone you are using, you can run tests to help identify if an issue is occurring and get recommendations on how to solve the problem.
    To help you get started with BBVE, here’s a quick overview of how to use this app and what to do if a tests fails.
    How to use the BlackBerry Virtual Expert
    If you are using BlackBerry 10 OS version 10.2.1, BlackBerry Virtual Expert is built in and can be found by opening the Help app followed by tapping Testing along the bottom toolbar. Within this screen, tap Try this now to open BBVE.
    For smartphones running BlackBerry OS version 10.2 or earlier, or BlackBerry OS version 7.1 and earlier, to use BBVE you need to install it first.
    To do this, open BlackBerry World on your smartphone and search for “BlackBerry Virtual Expert,” or use the following steps to scan a barcode. After installation is complete, look for the BBVE icon that appears on your home screen.
    Open BlackBerry World.
    Complete one of the following:
    If your smartphone is running BlackBerry 10 OS, swipe down from the top of the screen and tapScan Barcode.
    If your smartphone is running BlackBerry OS version 7.1 or earlier, press the Menu key followed by Scan a Barcode.
    Scan the following barcode and tap Download.
    After opening the BBVE, the Health tab appears by default which allows you to identify basic details about your smartphone and quickly access specific settings.
    If you select Tests along the bottom toolbar, you can run all of the available tests at once or test a specific feature. To test everything at once, tap All Tests or select a specific feature or function you’d like to test.
    If you have concerns about your headphone jack for example, select Audio Test to run a variety of audio-related tests, or optionally select Choose A Test followed by tapping on the specific test you’d like to run.
    When you start testing a feature, follow the instructions displayed on your smartphone and complete the required actions followed by recording a result: Pass , Skip , or Fail . When all of the selected tests are completed you are shown your results indicating what passed, what tests were skipped, and of course, any tests that may have failed.
    One of the BBVE tests failed! Help!
    Should a test fail while using BBVE, after reviewing the suggestions on the Results tab, here are a few things you can do to help get an issue resolved efficiently.
    Step 1 – Summarize the issue
    Creating a summary of the issue you are encountering and recording what troubleshooting steps you have already taken is a great step that helps our support teams better assist you. In addition to creating a summary, obtain your BlackBerry smartphone details using the steps below.
    If you are using a BlackBerry 10 smartphone, to identify your OS version, tap Settings > About and in theCategory drop-down list, select OS. To identify your PIN, tap Settings > About and in the Category drop-down list, select Hardware.
    If you are using a BlackBerry OS smartphone, check out this post for help identifying this information.
    Step 2 – Back up your device
    When you contact support for a potential repair issue, they will guide you through this process, so doing this before you contact support can help speed things along.
    If you are using a BlackBerry 10 smartphone, download and install BlackBerry Link for PC or Mac so you can back up your smartphone. For help backing up and restoring your smartphone data, please review the BlackBerry Link User Guide for PC or Mac.
    If you are using a BlackBerry OS device, download BlackBerry Desktop Software to back up your smartphone. For help backing up and restoring your data, review the BlackBerry Desktop Software user guide (PC, Mac).
    Step 3 – Use self-service support options
    Join the BlackBerry Support Community Forums and create a new post about your issue. Be sure to include the summary you created in step 1 because this allows community members to suggest alternative steps that may help resolve the issue you are encountering.
    Review and search the BlackBerry Knowledge Base for a support article that may provide a solution to the issue you are encountering.
    Step 4 – Contact your service provider or visit a BlackBerry Expert Center
    If you are still unable to resolve the issue, consider contacting your service provider or BlackBerry Expert Center for additional assistance. As mentioned earlier, having your smartphone details and a summary of troubleshooting performed will help out whoever is assisting you with the issue.
    For help contacting your service provider, search using your favorite browser for your service provider’s support website.
    Depending on where you are located, you may have the option of visiting a BlackBerry Expert Center. For help finding a BlackBerry Expert Center near you, check out the following link: Find help at a BlackBerry Expert Center.
    Frequently asked questions
    Why does BlackBerry Virtual Expert need permission X, Y & Z?
    For BBVE to perform specific tests, select permissions must be enabled the first time you open BBVE. You can optionally disable some or all permissions but keep in mind any tests requiring disabled permissions will not work. If you run a test that requires a specific permission such as the ability to use the camera, you will receive a notification to update your permission settings.
    What tests does BBVE include?
    Depending on which type of BlackBerry model you are using, available tests include:
    Touch Screen
    Display
    USB Port
    Main Keypad
    Keyboard
    Side keys
    Slider
    Cameras
    Camera Flash
    Receiver Speaker
    Loudspeaker
    Stereo Loudspeaker
    Stereo Headset
    Microphone
    Vibrator Bluetooth
    Status LED
    Gyroscope
    Accelerometer
    Orientation Sensors
    HDMI Connector
    USB Connector
    SIM Card Connector
    SD Card Connector
    Wireless Charger
    GPS hardware
    Light Sensor
    Proximity Sensor
    Wi-Fi
    Where can I learn more about BlackBerry Virtual Expert?
    If you are using a BlackBerry 10 smartphone, check out our web-based training for an interactive overview of how to use this application or use the Help app on your smartphone and search for “BlackBerry Virtual Expert.”
    Did someone help you? Click Like! Did a post solve your issue? Click Accept as Solution!
    Follow me on Twitter or Google+ and subscribe to the Inside BlackBerry Help Blog

    this should be floated aka stickied
    Click here to Backup the data on your BlackBerry Device! It's important, and FREE!
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up
    Click to search the Knowledge Base at BTSC and click to Read The Fabulous Manuals
    BESAdmin's, please make a signature with your BES environment info.
    SIM Free BlackBerry Unlocking FAQ
    Follow me on Twitter @knottyrope
    Want to thank me? Buy my KnottyRope App here
    BES 12 and BES 5.0.4 with Exchange 2010 and SQL 2012 Hyper V

  • Using the same script twice but different options on a single page

    having a hard time figuring out how to run the cycle script which is in use on one portion of my webpage as a slider gallery under my header, but i'd also like to use it in  a small are in the upper right of the same page but with a different transition, to showcase specific products in a gallery.
    how do i accomplish this? I've been to the cycle plugin page http://malsup.com/jquery/cycle/begin.html but am having trouble interpreting their page source syntax
    in my head section i have the following declared:
    <script type="text/javascript" src="../js/jquery.cycle.all.latest.js"></script>
    <script type="text/javascript">
    $(document).ready(function() {
        $('.slideshow').cycle({
            fx: 'shuffle' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
    </script>
    and in my body its invoked simply by:
    <div class="slideshow">
                <img src="../images/splash1.jpg" width="761" height="210" />
                <img src="../images/splash2.jpg" width="761" height="210" />
                <img src="../images/splash3.jpg" width="761" height="210" />
                <img src="../images/splash4.jpg" width="761" height="210" />
                <img src="../images/splash5.jpg" width="761" height="210" />
    </div>
    now should i change the head function to
    <script type="text/javascript" src="../js/jquery.cycle.all.latest.js"></script>
    <script type="text/javascript">
    $(function() {
        // run the code in the markup!
        $('td pre code').each(function() {
            eval($(this).text());
    </script>
    and how would i later invoke this the body here?
    <div class="slideshow">
                <img src="../images/splash1.jpg" width="761" height="210" />
                <img src="../images/splash2.jpg" width="761" height="210" />
                <img src="../images/splash3.jpg" width="761" height="210" />
                <img src="../images/splash4.jpg" width="761" height="210" />
                <img src="../images/splash5.jpg" width="761" height="210" />
    </div>
    <pre><code class="mix">$('#s1').cycle('fade');</code></pre> - this is what they do on their wepage but i dont understand what this <pre><code class="mix"... is all about.
    can someone please explain
    thanks

    I recommend using Cycle2 instead of the old Cycle Plugin.  Out of the box, Cycle2 is better and has more features.  Just copy & paste the following code into a new document. 
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 Document with Cycle2</title>
    <!--HTML5 help for older IE browsers-->
    <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    <!--Latest jQuery Core Library-->
    <script src="http://code.jquery.com/jquery-latest.min.js">
    </script>
    <!--Cycle2 Slideshow-->
    <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery.cycle2/20130409/jquery.cycle2.min.js"></script>
    <style>
    body {width: 900px;margin: 0 auto}
    /**Slideshow**/
    .cycle-slideshow {
    margin: 0;
    padding: 0;
    width:500px;
    border: 1px solid silver;
    margin: 0 auto;
    .cycle-slideshow img  {
    width: 500px;
    margin: 0 auto
    .center { text-align: center }
    </style>
    </head>
    <body>
    <!--begin 1st slideshow-->
    <div class="cycle-slideshow"
    data-cycle-fx="swipe"
    data-cycle-pause-on-hover="true"
    data-cycle-speed="2200"
    >
    <img src="http://malsup.github.com/images/p1.jpg" alt="">
    <img src="http://malsup.github.com/images/p2.jpg" alt="">
    <img src="http://malsup.github.com/images/p3.jpg" alt="">
    <img src="http://malsup.github.com/images/p4.jpg" alt="">
    <!--end 1st slideshow--></div>
    <p> </p>
    <p> </p>
    <!--begin 2nd slideshow-->
    <div class="center">
    <a href=# id=next>Next</a>
    </div>
    <div class="cycle-slideshow"
        data-cycle-fx="fadeout"
        data-cycle-timeout="3000"
        data-cycle-next="#next"
        data-cycle-manual-fx="scrollHorz"
        data-cycle-manual-speed="300"
        >
    <img src="http://malsup.github.com/images/p1.jpg" alt="">
    <img src="http://malsup.github.com/images/p2.jpg" alt="">
    <img src="http://malsup.github.com/images/p3.jpg" alt="">
    <img src="http://malsup.github.com/images/p4.jpg" alt="">
    <!--end 2nd slideshow--></div>
    </body>
    </html>
    Use whichever effects you prefer:
    http://www.malsup.com/jquery/cycle2/demo/shuffle.php
    Nancy O.

  • Is there a way to select multiple sequences and batch export them using the same settings in CS6?

    I am a current Final Cut Pro7 user and looking to switch over to Premiere Pro CS6.  We edit approx. 100 short (15 sec.) videos daily, and then select them all at the end of the day and batch export them over night using the same export recipe for all. I have having trouble finding an easy way to do this in Premiere pro CS6, as command +E is grayed out if i select more than one sequence at a time. 
    so far, it appears that i have to select each video individually and manually set encoding recipe and export location for each....  Not only would this be terribly time consuming, but it leaves a lot of room for error and missed videos.  I thought i would be able to send all of the sequences to Adobe Media Encoder,  but i dont see that option either.
    Any suggestions/
    thanks!

    Open Media Encoder and add your Sequences:
    File > Add Premiere Pro Sequence
    Navigate to your Premiere Project and select it in the list.
    You can then select multiple Sequences from the Project (Ctrl+Click)
    and load them all at once into Media Encoder and apply
    the same encoding preset to all Sequences at the same time.

  • Issues using the outline load command on Planning Version 11.1.2

    Hi All
    I am trying to add members into the Account dimension using the outline load utility within Planning version 11.1.2 and I am getting the following error message:
    Unable to obtain dimension information and/or perform a data load: Unable to create print writer for log file. “D:Oracle\Middleware\user_projects\epmsystem1\Planning\planning1\Data\Log” is a directory. Exception in thread “main” java.lang.NullPointerException at com.hyperion.planning.utils.HspOutlineload.loadAndPrintStatus<Unknown Source> at com.hyperion.planning.utils.HSPOutlineLoad.main<Unknown Source>
    The command synatx I am using is:
    Outlineload /A:Plan01 /u:admin /I:D:\Oracle\Middleware\user_projects\epmsystem1\Planning\Planning1\Data\account.csv /D:Account /T
    Where the headers of the csv import file I have used are:
    Parent,Account
    and
    Account,Parent
    I am e studio enviroment so not sure if this will cause issues.
    Any help would be greatly appreciated
    Regards

    Hi All
    I am trying to add members into the Account dimension using the outline load utility within Planning version 11.1.2 and I am getting the following error message:
    Unable to obtain dimension information and/or perform a data load: Unable to create print writer for log file. “D:Oracle\Middleware\user_projects\epmsystem1\Planning\planning1\Data\Log” is a directory. Exception in thread “main” java.lang.NullPointerException at com.hyperion.planning.utils.HspOutlineload.loadAndPrintStatus<Unknown Source> at com.hyperion.planning.utils.HSPOutlineLoad.main<Unknown Source>
    The command synatx I am using is:
    Outlineload /A:Plan01 /u:admin /I:D:\Oracle\Middleware\user_projects\epmsystem1\Planning\Planning1\Data\account.csv /D:Account /T
    Where the headers of the csv import file I have used are:
    Parent,Account
    and
    Account,Parent
    I am e studio enviroment so not sure if this will cause issues.
    Any help would be greatly appreciated
    Regards

Maybe you are looking for

  • Error while importing clips from card ?

    Hi everybody.  Hope you're well and thanks for helping. I use the board occasionally when I have a problem obviously or sometimes I just browsing to get more familiar.  I'm a fairly experienced user. I've maybe made 2-3 dozen dvds; I burn a lot of st

  • HFM-Metadata changes -impact on Database.

    Hello Experts & Gurus, 1)  I want to understand the impact of changes in MetaData (Members of Dimensions like Scenario, Year, Period....) on the size of database in HFM. 2) If Metadata changes can result in creating new tables or cubes, can we find o

  • Java call in OSB.

    I am sorry if this seems like a basic question but I am new to OSB and middleware. I have a Java class that transforms a CSV to XML that I need to call from OSB. OSB needs to pick up the csv file from a folder, pass the file name into the java class,

  • Very annoying 11g OUI install error for the oracle clusterware

    Clean install of 11g RAC Clusterware downloaded from oracle site today ./runcluvfy.sh stage -pre crsinst -n lin1,lin2 -verbose ...everything passes just fine. Great. Time to install the clusterware. [oracle@lin1]$ ./runInstaller Installer starts, pre

  • Plug in needed...

    i want to listen to some hockey games over the internet tonight but when i go to this site http://www.nhl.com/nhl/app?service=page&page=Radio and click on the game i want it tells me that i dont have the correct plug in. what plug in do i need and wh