Importing Subtitles using Image Script

I'm just about to make a project with seven different languages. It will have audio tracks as well as subtitle tracks.
I've done subtitles in Encore 1.5 before using text with some success. For this production I need to import tif using an image script. I can get the script working, however once it's located the images to import it gives me an error message along the lines of
"Sorry, an abnormal condition has been detected. Before quitting, you have one chance to save your project..."
Note I get passed the Map Colours and Import Subtitles dialogue box. It is only when I click on this last stage that it goes bad.
Any ideas. I kinda thought this was what the program was meant to do.
- Geoff

Turns out the problem I was having was due to memory. Needed to restart.
Naartjie, not sure how to save subtitles with a background image. Encore seems to only want to work with three colours, one is the background colour, the colour of the text and the colour of the outline for the text. So unless you can make your background image from the two colours that remain on the screen - text colour and outline, I'm not sure how to do go about it.
- Geoff

Similar Messages

  • Can't import photos using image capture or iphoto

    When I plug in the iphone to my mac, I cannot get the photos off the phone. I did it once before, while leaving the original photos on the phone, but now I photo says there was an error importing 38 items, which happen to be the 38 photos I've taken since my initial import. Image capture "imports" them onto my desktop, but the files are unreadable?
    Is this something with the phone or the computer, or simply a software issue.
    Please help....
    Gavin

    i deleted HD cache and user cache as well as image capture prefs and IC performed better right away but then had same issue where iphone stops importing photos. pretty crappy...it seems image capture has never worked right (not in 10.3, not in 10.4, and still not in 10.5, don't remember if 10.2 or 10.1 had image capture) atleast before it would import the photos; progress indicator would get stuck but upon opening user picture folder, photos imported fine. We might be SOL, thanks Steve's Dev Team!

  • Subtracting Columns from Import File Using Import Script

    The file I am importing to FDM contains two amount columns, 1 Debit, 1 Credit. I want to have the Amount field populate as the Debit minus Credits. I have attempted an import script that is giving me an error in the bolded line:
    Function GBS_Amount(strField, strRecord)
    'Oracle Hyperion FDM Integration Import Script:
    'Created By:     
    'Date Created:     
    'Purpose:
    'Set variables
    dim strNatural
    dim strCurmnthDR
    dim strCurmnthCR
    dim strCurAmount
    'Store the Natural Account as Column 1 of 11 of a comma delimited file
    strNatural = Trim(DW.Utilities.fParseString(strRecord, 11, 1, ","))
    'Store the Current Month Debit Amount as Column 7 of 11 of a comma delimited file
    strCurmnthDR = Trim(DW.Utilities.fParseString(strRecord, 11, 7, ","))
    'Store the Current Month Credit Amount as Column 8 of 11 of a comma delimited file
    strCurmnthCR = Trim(DW.Utilities.fParseString(strRecord, 11, 8, ","))
    'Calculate the YTD Amount
    strCurAmount = strCurmnthDR - strCurmnthCR
    GBS_Amount = strCurAmount
    End If
    End Function
    What syntax do I need to use to subtract two defined variables?

    Hi Experts,
    I have a similar situation,I am trying to import the Multiple amount columns to be addedd and imported as one amount column.Below is the script I am using for the same,script is getting verified in Script editor but When I am trying to Load the File in import, I am gettig an error as below.but if I try to import without using the script for the amount, inport is getting done.I have attached script to amount column only.
    ERROR
    Code............................................. 9
    Description...................................... Subscript out of range
    Procedure........................................ clsImpProcessMgr.fLoadAndProcessFile
    Component........................................ upsWObjectsDM
    Version.......................................... 1112
    Thread........................................... 8380
    Scirpt being used
    Function Import_YTD(strField, strRecord)
    'Set variables
    dim strCurmnth1
    dim strCurmnth2
    dim strCurmnth3
    dim strCurmnth4
    dim strCurmnth5
    dim strCurmnth6
    dim strCurmnth7
    dim strCurmnth8
    dim strCurmnth9
    dim strCurmnth10
    dim strCurmnth11
    dim strCurmnth12
    dim strCurAmount
    strCurmnth1 = Trim(DW.Utilities.fParseString(strRecord, 20, 9, ","))
    strCurmnth2 = Trim(DW.Utilities.fParseString(strRecord, 20, 10, ","))
    strCurmnth3 = Trim(DW.Utilities.fParseString(strRecord, 20, 11, ","))
    strCurmnth4 = Trim(DW.Utilities.fParseString(strRecord, 20, 12, ","))
    strCurmnth5 = Trim(DW.Utilities.fParseString(strRecord, 20, 13, ","))
    strCurmnth6 = Trim(DW.Utilities.fParseString(strRecord, 20, 14, ","))
    strCurmnth7 = Trim(DW.Utilities.fParseString(strRecord, 20, 15, ","))
    strCurmnth8 = Trim(DW.Utilities.fParseString(strRecord, 20, 16, ","))
    strCurmnth9 = Trim(DW.Utilities.fParseString(strRecord, 20, 17, ","))
    strCurmnth10 = Trim(DW.Utilities.fParseString(strRecord, 20, 18, ","))
    strCurmnth11 = Trim(DW.Utilities.fParseString(strRecord, 20, 19, ","))
    strCurmnth12 = Trim(DW.Utilities.fParseString(strRecord, 20, 20, ","))
    If strCurmnth1="" Then strCurmnth1="0" End If
    If strCurmnth2="" Then strCurmnth2="0" End If
    If strCurmnth3="" Then strCurmnth3="0" End If
    If strCurmnth4="" Then strCurmnth4="0" End If
    If strCurmnth5="" Then strCurmnth5="0" End If
    If strCurmnth6="" Then strCurmnth6="0" End If
    If strCurmnth7="" Then strCurmnth7="0" End If
    If strCurmnth8="" Then strCurmnth8="0" End If
    If strCurmnth9="" Then strCurmnth9="0" End If
    If strCurmnth10="" Then strCurmnth10="0" End If
    If strCurmnth11="" Then strCurmnth11="0" End If
    If strCurmnth12="" Then strCurmnth12="0" End If
    'Calculate the YTD Amount
    strCurAmount = CDbl(strCurmnth1) + CDbl(strCurmnth2) + CDbl(strCurmnth3) + CDbl(strCurmnth4) + CDbl(strCurmnth5) + CDbl(strCurmnth6) + CDbl(strCurmnth7) + CDbl(strCurmnth8) + CDbl(strCurmnth9) + CDbl(strCurmnth10) + CDbl(strCurmnth11) + CDbl(strCurmnth12)
    Import_YTD =strCurAmount
    End Function

  • Why can I no longer import EDITED photo from my iPad to my Mac using Image Capture from Snapseed app?

    Why can I no longer import EDITED photo from my iPad to my Mac using Image Capture? This is farcical and a real problem having to email them individually to myself and is totally inefficient time wise compared to previously using image capture! Why change this when it was working well and very quickly until the latest change. Now I have to move files from downloads into an appropriate folder, after emailing each individual edited image to myself, then I have to open in Photoshop and rename the file. This is ludicrous and takes forever to do!

    Thank you! I suppected it would be in the settings somewhere. I' ve much to learn...get myself into trouble pushing buttons I don't really understand.

  • Help! I am trying to use the scripts image processor in Photoshop CC.

    Help! I am trying to use the scripts>image processor in Photoshop CC. When I click on it it comes up with an error saying that it cannot find the Javascript Plug In. I have the newest version of Java installed. How do I get it to work in Photoshop. Do I have to download a separate plug in? Any help would be greatly appreciated.

    Java is not Javascript.
    Do you have a Mac or PC?
    If PC, do you have this file on your system?
    C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Required\Plug-Ins\Extensions\ScriptingSupport.8li
    If not, you've got a corrupted installation of Photoshop.  Uninstalling and reinstalling may help.
    -Noel

  • SCRIPT TO IMPORT MULTIPLE PLACED IMAGES..AND OUTPUT MULTIPLE IMAGES TO SINGLE PDF.

    Anyone got a script to import multiple placed images into CS4? or is this possible in CS5?
    and can we output multiple layers into a single PDF in illustrator?  Or multiple layers into single JPEGS from illustrator with one command instead of individually saving out each page... would be a huge time saver for me.
    Currently I output each completed layer individually and then right click those outputted jpegs in their output folder and choose "combine supported files into acrobat..." to make a single acrobat file..
    I`d also like to be able to CTRL click multiple layers and go save as... only those layers get saved out...
    And so adding something in the Save for PDF output dialogue box to save layers to multiple pages would be a helpful time saver..

    In CS 4 and CS 5 you can drag and drop fro m the finder or the Bridge, and I guess any other similar type viewer, multiple number of image files to a document. You can configure the bridge in such a way as to allow you to see the Bridge and your document at the same time for this very purpose.
    If you just drag and drop the files are linked if you drag while holding the shift key then the files will be embedded.
    ID and PS CS 5 have a minibridge which works the sam way but is an actually panel and will stay in the front.
    I separate the images but they import one on top of another.

  • I am importing videos from my canon sl1 to my macbook when i use iphoto is says "iPhoto cannot import your photos because there was a problem downloading an image." and when i use image capture it says "An error occured while importing. The item 'MVI_1040

    I am importing videos from my canon sl1 to my macbook air when i use iphoto is says "iPhoto cannot import your photos because there was a problem downloading an image." and when i use image capture it says "An error occured while importing. The item ‘MVI_1040'' Thanks in advance

    Can you access the images on the phone with Image Capture (in the Applications Folder) ?

  • Find raster Image & Vector image in adobe indesign using apple script?

    Find raster Image & Vector image in adobe indesign using apple script?

    Find raster Image & Vector image in adobe indesign using apple script?

  • I use a mac ios and shoot raw in a cannon 5d mark ii and shortly upon import of my images lightroom darkens and changes my images. This has happened before but not every time. The strange part is my last shoot had the same camera setting but this did not

    I use a mac ios and shoot raw in a cannon 5d mark ii and shortly upon import of my images lightroom darkens and changes my images. This has happened before but not every time. The strange part is my last shoot had the same camera setting but this did not happen. The images i have now i can not use after lightroom has automatically altered them even if i try editing back to how they looked upon import

    First thing to do is to change the default camera profile applied in Lightroom to camera standard (assuming that you shoot Canon or Nikon). Also make sure that your camera is NOT set up to use any of the HDR modes. Nikon calls those Active Dynamic Lighting. On Canons you often see things like highlight priority mode or "Auto Lighting Optimizer". Make sure that the picture style is set to standard and that for newer Canons the HDR mode is turned off. Most of the HDR modes simply underexpose the image and then add an instruction in the raw file to compensate for this to prevent highlights from being blown out. This causes more noise in the shadows and if you know what you are doing there is no point to this as you should simply expose correctly and get the highest quality raw.
    Lastly, make sure that in Lightroom you have not checked "Apply Auto Tone Adjustments" in Preferences->Presets. This should make the default rendering of the raw files the same as the in-camera jpeg (what the camera shows on the back even if you shoot raw) but still give you all the latitude of raw files.

  • ACTIVATE SUBTITLES USING SCRIPT

    Creating subtitle script in Apple's DVD Studio Pro.
    To anyone who can help, this is what we are trying to accomplish in Apple's DVD Studio Pro.
    We want to create a script that will allow us to turn on / activate subtitles using some type of memory register that will remember that the user turned on subtitles even after switching to different menus or tracks ( a global setting that can be changed via subtitles on or off buttons).
    Please keep in mind that even if you set up a menu with buttons for turning on or off subtitles, you will eventually have a "target" set for that button and if that target is another button that plays a program. That targeted button will likely play a track and that button also must be assigned a value that will either play a subtitle stream on or off.
    To further be more specific, what we are doing is setting up 2 identical sets of menus. One set of menus has all of its buttons set to turn on subtitle stream 1 when playing a video track. The second set is programmed not play any subtitle stream. You are directed to either set of menus from either a "subtitles on" or "subtitles off" button (by way of targeting to either set of menus from the subtitles on of off buttons).
    The only problem is that when you get to the end of a track being played, there has to be an "end jump" at the end of that track. If that track was currently being played let's say from the subtitles on set of menus, where ( what set of menus - the "on" or "off" set ) do you end jump to? There is no one ideal answer. There has to be some type of memory register that a script could point to that would have recorded (remembers) if the user had turned the subtitles on or off.
    For now we have the end jumps set to go back to the set of menus for subtitles off. The only problem is the user has to go back to the subtitles on button again to to turn them back on after viewing each track. (Kind of a pain in the neck).
    What we are looking for is a script that will allow us to turn on / activate subtitles using some type of memory register that will act globally and allow us to also get rid of the dual sets of menus.
    If anyone can help we sure would appreciate it.
    thanks,
    michael

    Hi Michael
    To turn on or off your subtitles this can be done easily in the button inspector. Set your subtitle stream then set where you want that button to go. This will set your stream globally and will remain that way until you change it or eject the disc.
    No reason to have dual menus..or am I missing something. It can be hard determining what someone is looking for without being there or seeing a flow chart of the title
    Eric

  • How we can import and run the matlab codes in labview using xmath script.

    hello,
    i have some GUI code in MATLAB and i want to process that codes in labview . tell me about the procedure how we can done this task.
    thanks in advance
    rachana
    Er. (Instrumentation)

    Hello,
    The title of your post asks about using Xmath script.  Is this what you intended?  You can use the Xmath script node in LabVIEW if you have MATRIXx 7.x or earlier installed.  However, the syntax is slightly different from the syntax of The MathWorks, Inc. MATLAB® software.
    In LabVIEW 8.0, we introduced LabVIEW MathScript.  The LabVIEW MathScript syntax is similar to the MATLAB language syntax.  In LabVIEW MathScript, you generally can execute scripts written in the MATLAB language syntax.  However, the MathScript engine executes the scripts, and the MathScript engine does not support some functions that the MATLAB software supports.  In order to reuse code that you have written, open the MathScript Window by going to Tools >> MathScript Window.  You can also use the MathScript node as part of a VI you are writing.  You can find the node on the Programming >> Structures palette.  You can import an existing script by right-clicking the node and selecting "Import..."  You can create inputs and outputs for the script by right-clicking on the node and selecting the appropriate option.  If you wish to call any functions you have written, put them in the MathScript search path.  By default, this is your "My Documents\LabVIEW Data" folder.  In LabVIEW 8.5, you can change the default search path for the main application instance by going to Tools >> Options.
    LabVIEW MathScript does not contain very many GUI functions at this time.  You can use the VI's front panel as your GUI, though, and interact with your program that way.  Let me know if you have other questions about moving your code or about specific functions.
    MATLAB® is a registered trademark of The MathWorks, Inc.
    Grant M.
    Staff Software Engineer | LabVIEW Math & Signal Processing | National Instruments

  • Image script doesn't use the correct host name

    Hello NG
    I created a ZCM Imaging script so that I got a prompt for the name of the
    workstation. Unfortunatelly the script doesn't work correct. I set as WSName
    following Name WS999
    After the Image was restored, the hostname was set to Company-SJCFNSG
    (example: Company = Novell) NOVELL-SJCFNSG
    What could be the cause of this problem?
    Here the script i used:
    IMGSVR=192.168.4.30
    while test ! $WSNAME; do
    echo -n -e "\n Please set NetBIOS Name and a accept with Enter: ";
    read WSNAME;
    done;
    if test $WSNAME; then
    zisedit Name=$WSNAME;
    fi
    img -rp MyImage1.zmg
    img -rp MyAddOn1.zmg
    img -rp MyAddOn2.zmg
    sleep 10
    Regards
    Ramon

    I did find the solution!
    In earlier Zenworks versions the wsname was set by "zisedit name=PCName01"
    now in ZCM10 and ZCM11 the variable did change so I had to modify it to
    zisedit Computername=PCName01
    if test $WSNAME; then
    zisedit ComputerName=$WSNAME;
    fi
    Regards
    Ramon
    "Ramon Lustrati" schrieb im Newsbeitrag
    news:C%zup.26$C%[email protected]..
    Hello NG
    I created a ZCM Imaging script so that I got a prompt for the name of the
    workstation. Unfortunatelly the script doesn't work correct. I set as WSName
    following Name WS999
    After the Image was restored, the hostname was set to Company-SJCFNSG
    (example: Company = Novell) NOVELL-SJCFNSG
    What could be the cause of this problem?
    Here the script i used:
    IMGSVR=192.168.4.30
    while test ! $WSNAME; do
    echo -n -e "\n Please set NetBIOS Name and a accept with Enter: ";
    read WSNAME;
    done;
    if test $WSNAME; then
    zisedit Name=$WSNAME;
    fi
    img -rp MyImage1.zmg
    img -rp MyAddOn1.zmg
    img -rp MyAddOn2.zmg
    sleep 10
    Regards
    Ramon

  • Using Image Capture to import to Aperture but pictures went disappeared

    Dear All,
    I used Image Capture to import my pictures from iPad to my Aperture. This is my first time doing so. Normally I would just use Aperture to do the direct import.
    The Image Capture saying all imports were successful, however, I could not find one single picture in Aperture. So I did it again, and it said all images were imported.
    I restarted my computer to see whether the update was delayed, but I still could not find any picture.
    Then I tried to import again by watching out the disk size, to see whether the import was actually taken place. And the outcome is positive, the available size of the disk is dropping (nothing else was running at the mean time).
    So now I have this annoying thought keeps coming, where are all the images? And if I did import them 3 times, I want to delete them......

    Your Aperture library is showing a wrong icon - have you changed it manually? The Finder is showing it as a plug-in, not as a photo library.
    The icon should look like a fan of pictures, at least in aperture 3 - what is your Aperture version btw.?
    You said, that the available disk space is being reduced, when you are importing, but does the size of your Aperture library increase, or is it staying at 46.82 GB?
    If you did not change the icon of the library intentionally, your aperture library may be corrupted, and is not recognizable as a library. Try, if repairing the Aperture library with the First Aid Tools will fix this:
    Repairing and Rebuilding Your Aperture Library: Aperture 3 User Manual
    Make a backup of the library, before you try the First Aid options.
    After repairing, look for a "recovered" project inside the library.
    If your current Aperture library really does not import the photos, the images may be in a temporary folder or a different Aperture library.
    To search for the image files outside Aperture, use the Finder's search panel.
    Open a Finder window showing your HD and type "⌘F".
    Add a search rule "Kind is Image"
    And set "Arrange by" to "Date Added". This will show all newer imports at the end of the list.

  • I am using Indesign cs5 version 7.0.4 with a mac OS X version 10.9.4. I am having an issue where the save and save as option disappears. I am exporting the file as .idml and then resaving to avoid losing work but has to import all the images which takes a

    I am using Indesign cs5 version 7.0.4 with a mac OS X version 10.9.4. I am having an issue where the save and save as option disappears. I am exporting the file as .idml and then resaving to avoid losing work but has to import all the images which takes ages. Any help out there?

    I believe there are a couple of similar threads about CC or CC2014 behaving this way that might give yo some hints, but CS5 is not supported on your OS and may not run properly regardless of what you do. An in-place OS upgrade or an attempt to migrate the application would both be major problems for ID, so if you did either of those things you'll want to uninstall, run the cleaner tool (CS Cleaner Tool for installation problems | CCM, CS6, CS5.5, CS5, CS4, CS3) and reinstall.

  • Is there a way to format images using Image Catalog Script in Indesign cs4?

    I'm trying to make photo cards that are 3x4". I have 53 photos and I want one on a page. The script gets all the pages, but I can't figure out how to change the page size when I use the script. I keep getting 8 1/2x11. I have a master page set up. Anyone know how I can do this?
    Thanks!

    It looks like that will make a document using whatever the current default is—the same thing you would start from if you did File=>New=>Document. So you should make a new document preset (File=>Document Presets=>Define...) at the size you want, then make a new document, choosing that preset. Close that document and then run the script again.
    Jeff

Maybe you are looking for

  • Syndicating multiple Outputs for 1 Input file

    Hi SDners, When I am syndicating records output is splitting into 2 Files for 1 Input file. Example:- 10 records are there in Input file. While importing Import Manager Identifies 2 records as Duplicates and it will create only 8 records in MDM. Whil

  • To find Invoice Open or Partially Paid

    Hi friends, I have open invoices and iam displaying AMOUNT BSID-WRBTR in my report. a) Now i have to find out the invoice is fully open or partially paid. b) If partially paid what is the amount which is paid and what is the due amount.. what are the

  • A HREF LINKS TO NEW JSP PAGES

    hiya i got an sql statement that outputs results into an html table on a jsp. these results come in the form: if(rs.next()) {    %> <DIV ALIGN = "left"> <TABLE border = "0"> <TR> <TD> <%=rs.getString("Forename") + " " + rs.getString("Surname")%> </TD

  • NetworkManager: Disable interfaces in new rc.conf

    Im using NetworkManager and Gnome 3.2. The wiki article on NetworkManager is not up to date (https://wiki.archlinux.org/index.php/NetworkManager). Since the new rc.conf came out I'm having problems with connecting to wireless networks. It's either ve

  • Locking the guest system resolution

    Hi everyone, I'm having this annoying problem with my VM. I use VM Remote Console to interact with the VMs so the VM is a "window". The problem is that whenever I accidentally click on the lower border of the VMRC window, this will force the VM to ch