Help with scripting: need to import Excel files into PS type layers

Howdy all,
I have a series of TV commercials provided to me as layered PS files.  I work in CS3 and export to Avid for editing.
For customization, I need to import their Excel list of phone numbers and duplicate each one into a type layer with existing efx and placement.
There are 30-60 #s, which appear in 2 locations, so automation is key (just finished a 45 # series, and they have more!)
I dont know how to script this, and would appreciate any guidance. I am not asking for someone to do it for me, just help me learn what I have to do.
Dave Koslow

From Excel save your file out as either CSV or TDT from the drop down 'save as' options. Once you have a plain text file script will be able to read the text file using which ever delimiter best suits you and create an array of string variables that you can use within photoshop to assign to the contents of a text layer…

Similar Messages

  • Importing excel file into OBIEE 10.1.3.4

    Hi,
    I am trying to import excel file into OBIEE and would like to use it as a data source. Fro this, I have already created an excel file (using MS excel 2007) with some sample data and named the data ranges with in the excel sheet as well. and I have placed that file under C:\ drive directly. And then created DSN and made sure that it points to the excel file.
    When I go to Administration tool -> Import from Database -> seelct ODBS 3.5 and selected my DSN and clicked OK. Here I have not provided the user name and password (though I have provided the username/pwd as Administrator it is not taking).
    when I click ok, it is throwing the following error :
    nQSerror:16001 ODBC error state : IM006 code: 0 message: [Microsoft][ODBCDriver Manager] Driver's SQLSetConnectAttr failed. [nQSError: 16001]ODBC error state: S1000 code - 5015 message: [Microsoft][ODBC Excel Driver] External table is not in the expected format
    Pls help me in rectifying this error. Many thanks in advance.
    Thanks
    Edited by: 858747 on 25-Aug-2011 05:47
    Edited by: 858747 on 25-Aug-2011 05:48

    Hi, I am facing the same issue.
    I am using OBIEE 11g with MS Excel 2007 file as source. I have created ODBC Driver by selecting Microsoft excel driver.
    NQSAdminTool.log gives error:
    ODBC error state: S1000 code: -5015 message: [Microsoft][ODBC Excel Driver] External table is not in the expected format
    The Admin tool gives error: "Unable to connect database using connection pool", when I try to 'update row count' in Physical Layer.
    Any quick resolution to this?
    Many thanks in advance.
    Edited by: user1603699 on 25-Oct-2011 09:28

  • Bug - Import Excel File into Indesign cs5.5

    Hi,
    I'm doing a complex Indesign file with a link to a Excel file.
    To import the Excel file I have created several tables always using styles (table, cell, paragraph).
    The problem born when I make a correction into the file Excel and I update the link in Indesign.
    The text updated automatically bring a caracther style (the first that I have created).
    I don't want to apply any character style, but I want to maintein the paragraph style that I have applied.
    If I delete all caracther styles the problem is solved, but I need to have caracther styles in my layout.
    Anyone can help me?
    Thanks to all
    Elisa

    The import facility of Excel or Word Document is only on a PC system of Dreamweaver.
    File >> Import >> Excel Document
    File >> Import >> Word Document
    For mac system I understand this facility isn't there.  What can you do about this?
    1) Get hold of a PC and download a trial version of DW and import the file(s) and you are done;
    2) Ask a friend to do it for you;
    3) Post your excel file online and some nice guy like Nancy, john or Murray will help you out.
    Good luck and let us know if this has given you some more ideas to explore.
    Good Guy
    Website: http://mytaxsite.co.uk
    Website: http://html-css.co.uk
    Forums: http://mytaxsite.boardhost.com
    Email: http://mytaxsite.co.uk/contact-us

  • Help with Script created to check log files.

    Hi,
    I have a program we use in our organization on multiple workstations that connect to a MS SQL 2005 database on a Virtual Microsoft 2008 r2 Server. The program is quite old and programmed around the days when serial connections were the most efficient means
    of connection to a device. If for any reason the network, virtual server or the SAN which the virtual server runs off have roughly 25% utilization or higher on its resources the program on the workstations timeout from the SQL database and drop the program
    from the database completely rendering it useless. The program does not have the smarts to resync itself to the SQL database and it just sits there with "connection failed" until human interaction. A simple restart of the program reconnects itself
    to the SQL database without any issues. This is fine when staff are onsite but the program runs on systems out of hours when the site is unmanned.
    The utilization of the server environment is more than sufficient if not it has double the recommended resources needed for the program. I am in regular contact with the support for the program and it is a known issue for them which i believe they do not
    have any desire to fix in the near future. 
    I wish to create a simple script that checks the log files on each workstation or server the program runs on and emails me if a specific word comes up in that log file. The word will only show when a connection failure has occurred.
    After the email is sent i wish for the script to close the program and reopen it to resync the connection.
    I will schedule the script to run ever 15 minutes.
    I have posted this up in a previous post about a month ago but i went on holidays over xmas and the post died from my lack or response.
    Below is what i have so far as my script. I have only completed the monitoring of the log file and the email portion of it. I had some help from a guy on this forum to get the script to where it is now. I know basic to intermediate scripting so sorry for my
    crudity if any.
    The program is called "wasteman2G" and the log file is located in \\servername\WasteMan2G\Config\DCS\DCS_IN\alert.txt
    I would like to get the email side of this script working first and then move on to getting the restart of the program running after.
    At the moment i am not receiving an error from the script. It runs and doesn't complete what it should.
    Could someone please help?
    Const strMailto = "[email protected]"
    Const strMailFrom = "[email protected]"
    Const strSMTPServer = "mrc1tpv002.XXXX.local"
    Const FileToRead = "\\Mrctpv005\WasteMan2G\Config\DCS\DCS_IN\alert.txt"
    arrTextToScanFor = Array("SVR2006","SVR2008")
    Set WshShell = WScript.CreateObject("WScript.Shell")
    Set objFSO = WScript.CreateObject("Scripting.FileSystemObject")
    Set oFile = objFSO.GetFile(FileToRead)
    dLastCreateDate = CDate(WshShell.RegRead("HKLM\Software\RDScripts\CheckTXTFile\CreateDate"))
    If oFile.DateCreated = dLastCreateDate Then
    intStartAtLine = CInt(WshShell.RegRead("HKLM\Software\RDScripts\CheckTXTFile\LastLineChecked"))
    Else
    intStartAtLine = 0
    End If
    i = 0
    Set objTextFile = oFile.OpenAsTextStream()
    Do While Not objTextFile.AtEndOfStream
    If i < intStartAtLine Then
    objTextFile.SkipLine
    Else
    strNextLine = objTextFile.Readline()
    For each strItem in arrTextToScanFor
    If InStr(LCase(strNextLine),LCase(strItem)) Then
    strResults = strNextLine & vbcrlf & strResults
    End If
    Next
    End If
    i = i + 1
    Loop
    objTextFile.close
    WshShell.RegWrite "HKLM\Software\RDScripts\CheckTXTFile\FileChecked", FileToRead, "REG_SZ"
    WshShell.RegWrite "HKLM\Software\RDScripts\CheckTXTFile\CreateDate", oFile.DateCreated, "REG_SZ"
    WshShell.RegWrite "HKLM\Software\RDScripts\CheckTXTFile\LastLineChecked", i, "REG_DWORD"
    WshShell.RegWrite "HKLM\Software\RDScripts\CheckTXTFile\LastScanned", Now, "REG_SZ"
    If strResults <> "" Then
    SendCDOMail strMailFrom,strMailto,"VPN Logfile scan alert",strResults,"","",strSMTPServer
    End If
    Function SendCDOMail( strFrom, strSendTo, strSubject, strMessage , strUser, strPassword, strSMTP )
    With CreateObject("CDO.Message")
    .Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
    .Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = strSMTP
    .Configuration.Fields.item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 'basic
    .Configuration.Fields.item("http://schemas.microsoft.com/cdo/configuration/sendusername") = strUser
    .Configuration.Fields.item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = strPassword
    .Configuration.Fields.Update
    .From = strFrom
    .To = strSendTo
    .Subject = strSubject
    .TextBody = strMessage
    On Error Resume Next
    .Send
    If Err.Number <> 0 Then
    WScript.Echo "SendMail Failed:" & Err.Description
    End If
    End With
    End Function

    Thankyou for that link, it did help quite a bit. What i wanted was to move it to csript so i could run the wscript.echo in commandline. It all took to long and found a way to complete it via Batch. I do have a problem with my script though and you might
    be able to help.
    What i am doing is searching the log file. Finding the specific words then outputting them to an email. I havent used bmail before so thats probably my problem but then im using bmail to send me the results.
    Then im clearing the log file so the next day it is empty so that when i search it every 15 minutes its clean and only when an error occurs it will email me.
    Could you help me send the output via email using bmail or blat?
    @echo off
    echo Wasteman Logfile checker
    echo Created by: Reece Vellios
    echo Date: 08/01/2014
    findstr "SRV2006 & SRV2008" \\Mrctpv005\WasteMan2G\Config\DCS\DCS_IN\Alert.Txt > c:\log4mail.txt
    if %errorlevel%==0 C:\Documents and Settings\rvellios\Desktop\DCS Checker\bmail.exe -s mrc1tpv002.xxx.local -t [email protected] -f [email protected] -h -a "Process Dump" -m c:\log4mail.txt -c
    for %%G in (\\Mrctpv005\WasteMan2G\Config\DCS\DCS_IN\Alert.Txt) do (copy /Y nul "%%G")
    This the working script without bmail
    @echo off
    echo Wasteman Logfile checker
    echo Created by: Reece Vellios
    echo Date: 08/01/2014
    findstr "SRV2006 & SRV2008" \\Mrctpv005\WasteMan2G\Config\DCS\DCS_IN\Alert.Txt > C:\log4mail.txt
    if %errorlevel%==0 (echo Connection error)
    for %%G in (\\Mrctpv005\WasteMan2G\Config\DCS\DCS_IN\Alert.Txt) do (copy /Y nul "%%G")
    I need to make this happen:
    If error occurs at "%errorlevel%=0" then it will output the c:\log4mail.txt via smtp email using bmail.

  • No Clue where to start: Importing Excel file into existing oracle tables

    I have an excel document that has data organized in formats according to the columns of tables we have. Our database is 10 G and developers only have clients such as toad to manipulate database.
    There are two columns that are sequentially created using tbl.NEXTVAL in two different tables. They are called LEAD_ID and CUSTOMER_ID in LEADS and CUSTOMER table obviously these are not included in the file.
    CREATE tbl CUSTOMER ( int CUSTOMER_ID, varchar(40) FirsName, varchar(40) LastName )
    CREATE tbl LEADS ( int LEAD_ID, int CUSTOMER_ID, varchar(40) notes, varchar(40) status )
    The excel file is organized in cells that is consistent..
    Where do I start, how would I do it? and I am being asked to do it by tomorrow and I have no clue..Can I do this with oracle itself or I have to read the file through Java?
    Please give me some idea
    Thank you,

    Thanks for your suggestion with checking the log and bad file..It helped and was able to insert..
    Actually this is a real project.. and the actual data is in the hundreds or more.. The problem was I had put sysdate in double quotes and should have been without them. It is now inserting into the table.. however If I can ask one more question.. I have actually multiple tables that I need to insert into from an excel file which is organized in columns..
    For example.. let's say I have a row in the excel file as
    Claim_Number FirstName LastName
    A single insert would be inserting into four tables (CLAIMS, CUSTOMERS, LEADS, etc..)
    first on CLAIMS table that only takes the Claim_Number
    Second CUSTOMER table, that takes the Claim Number and Customer names ( FIRST and LAST)
    Third could be inserting the LEADS table with a sequenced lead number along with the customer name and claim number..
    So I would need to reuse the values three or four times for a single record to be inserted..
    Can you give me some idea?
    And also I have columns like ACCOUNT_TYPE that would be have same value always more like a constant or other columns like UPPER_FIRSTNAMEwith result that comes from a sql function with Uppse case of the other column.. which is just the upper case letter version of FIRST_NAME column.. and it won't be read from the input file.. How would I take care of such issues like the sysdate .. I tried the following shown in bold but didn't work..
    LOAD DATA
    INFILE 'c:\trex2.csv'
    BADFILE 'c:\trexbad.txt'
    APPEND
    INTO TABLE CC_CUSTOMERS
    FIELDS TERMINATED BY ","
    TRAILING NULLCOLS
         LAST_UPDATE_DATE sysdate,
         CUSTOMER_NUMBER "CC_CUSTOMERS_S.NEXTVAL",
         CUSTOMER_ID "CC_CUSTOMERS_S.NEXTVAL",
    UPPER_FIRSTNAME UPPER(:FIRST_NAME) ,
    ACCOUNT_TYPE CONSTANT 'Residential'
         FIRST_NAME,
         LAST_NAME
    Thank you in advance..

  • Import Excel file into SQL, using bulk copy - date issues

    Hello. I have a VB project where I need to import multiple excel files with lots of rows and columns into SQL 2012. Currently the import is set up, using OleDbConnection and insert commands and it takes up to 10 minutes to process all the spreadsheets.
    I'm trying to switch the code to use SQLBulkCopy, but experienced issues with dates columns. Some rows have Null dates and those are interpreted as strings and won't import into SQL tables. Is there a way to format the column prior to import programmatically?
    Any advice is appreciated.
    Note -
    If I add column mapping and exclude all dates columns - import works fine. All excel files have date fields, excel files are reports from other vendor and change on weekly bases, manual formatting of the excel files prior to import are out of the question...
    The code is just basic:
    Public Sub ImportFormExcelSample()
    Dim ExcelConnection As New System.Data.OleDb.OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\MyExcelSpreadsheet.xlsx;Extended Properties=""Excel 12.0 Xml;HDR=Yes""")
    ExcelConnection.Open()
    Dim expr As String = "SELECT * FROM [Sheet1$]"
    Dim objCmdSelect As OleDbCommand = New OleDbCommand(expr, ExcelConnection)
    Dim objDR As OleDbDataReader
    Dim SQLconn As New SqlConnection()
    Dim ConnString As String = "Data Source=MMSQL1;Initial Catalog=DbName; User Id=UserName; Password=password;"
    SQLconn.ConnectionString = ConnString
    SQLconn.Open()
    Using bulkCopy As SqlBulkCopy = New SqlBulkCopy(SQLconn)
    bulkCopy.DestinationTableName = "TableToWriteToInSQLSERVER"
    Try
    objDR = objCmdSelect.ExecuteReader
    bulkCopy.WriteToServer(objDR)
    objDR.Close()
    SQLconn.Close()
    Catch ex As Exception
    MsgBox(ex.ToString)
    End Try
    End Using
    End Sub
    The error I get is System.InvalidOperatiomException: The given value of type String from the data source cannot be converted to type date of the specified target column. System.FormatException: Failed to convert parameter value from String to a DateTime...
    Thank you!
    Alla Sanders

    Hi Alla,
    This issue might be caused because the field contains a NULL value, but the date/time columns in your table does not allow NULL values. Furthermore, please aslo take a look at "Data Type Issues" session in the article below:
    http://odetocode.com/blogs/scott/archive/2013/02/08/working-with-sqlbulkcopy.aspx
    Here is a similar thread about this topic for your reference, please see:
    http://social.technet.microsoft.com/Forums/sqlserver/en-US/2d99181c-fc2b-4caf-9530-3bd6ae1745f1/sqlbulkcopy-column-validation-not-working?forum=sqldataaccess
    If you have any feedback on our support, please click
    here.
    Regards,
    Elvis Long
    TechNet Community Support

  • Import excel file into owb automatically, is it possible?

    Is it possible to load several excel files in owb automatically?
    I want to avoid the follow situation...
    I have like 100 excel files I have to create 100 system dsn each pointing to one excel file.
    Is it possible?
    Thanks

    The forum is how to integrate foreign databases into an oracle database using gateway. From the provided description you're trying to import an Excel file directly into OWB. OWB has its own mechanism to import these files , so better post your issue in the OWB forum:
    Warehouse Builder

  • Help with script to translate randomly-placed layer into specific coordinates.

    I have a set of images in a folder. They all have the same size (200px x 200px).
    I create a large blank document, and I'm making a script to put all the images in my large document as a series of layers.
    The idea is to make image1 align with the left edge of the document, and then have the rest of images follow to the right (imageX is X*250 pixels away from the left edge of the document). That way I would get a series of images that start at the left edge and go right, separated by 50 pixels from each other.
    My code is something like this:
    var folderPath=Folder("C:/bleh/images/");
    var images=10;
    var imagesWidth=200;
    var separation=10
    var newFileName;
    for(var i=0;i<images;i++){
         newFileName="image"+counter+".jpg"
         app.load(File(folderPath+"/"+newFileName));     //open the new image
         backFile=app.activeDocument;
         backFile.selection.selectAll();                 //select it's contents
         backFile.selection.copy();                      //copy them
         backFile.close(SaveOptions.DONOTSAVECHANGES);   //close the image
         app.activeDocument.paste();                     //paste the image's contents into the large document
         app.activeDocument.layers[0].translate(20,0)    // <---- THIS IS THE PROBLEM
    The problem is that when an image is pasted onto the large document, it seems that it aligns itself depending on the current view's zoom and seeing area. That means that each time the script is ran, the images will be pasted at different "global coordinates". This is a problem because the only way to move a layer seems to be with the layer.translate() function, which takes as parameters an amount in pixels to move the layer. I can't find anything that remotely looks like "align layer to the leftmost edge" or anything.
    I want to be able to translate them all the way to the left (and then translate them again in this manner: deltaX = i*(imagesWidth+separation)).
    So how can I find the gap in pixels between the left edge of the document and the edge of the layer/center of the layer?

    Here is the align method..
    align("AdRg");   // move layer to the bottom
    function align(method) {
    activeDocument.selection.selectAll();
       // methods:
       // 'AdCH' - center horizontal
       // 'AdCV' - center vertical
       // 'AdLf' - left
       // 'AdBt '- bottom
       // 'AdTp' - Top
       //  'AdRg' - Right
       var desc = new ActionDescriptor();
               var ref = new ActionReference();
               ref.putEnumerated( charIDToTypeID( "Lyr " ), charIDToTypeID( "Ordn" ), charIDToTypeID( "Trgt" ) );
           desc.putReference( charIDToTypeID( "null" ), ref );
           desc.putEnumerated( charIDToTypeID( "Usng" ), charIDToTypeID( "ADSt" ), charIDToTypeID( method ) );
        try{
       executeAction( charIDToTypeID( "Algn" ), desc, DialogModes.NO );
       }catch(e){}
       activeDocument.selection.deselect();

  • [HELP] No audio track on imported MPG file into FCP

    I am trying to import a 1hr 50min mpg into FCP. If I open it in QT or even in Windows Media Player on the PC, it opens fine. However, when I import it into FCP, I get the video track, but no audio tracks. I am still rather new to FCP, so I am sure this is a simple solution. Please help.
    Thanks...
    Dave

    Welcome to the forum, David. As Wes said, you need to DeMUX the MPEG. There are a few ways to do this. MPEG Streamclip is one, bbDemux, another is DVDxDV.
    Good luck

  • Import EPA file into portal

    Hi,
    I need to import EPA file into portal . Any one please tell me how can i import EPA file into portal.
    Thanks,
    Sumanth

    Hi Sumanth,
    Follow this link which contains whole process of importing EPA files into the Portal
    http://help.sap.com/saphelp_nw70/helpdata/en/50/842240852e8f5ce10000000a155106/frameset.htm
    Hope this helps for you.
    Cheers
    Phani

  • I bought Numbers because my Excel files would not work with Mavericks. How can I import a non-functioning Excel file into numbers? (As of now, the file NAME transfers but data is not.) but

    I bought Numbers because my Excel files would not work with Mavericks. How can I import a non-functioning Excel file into numbers? (As of now, the file NAME transfers but data does not.)

    HI Dave,
    I'm surprised you get no message when you attempt opening the Excel document in Numbers.
    I'm assuming Numbers 3.1, since you are running Mavericks.
    Does the Numbers file that opens show any content?
    Does it contain a table?
    How large?
    Does it contain more than one tab (indicating more than one sheet)?
    Do those other tabs contain a table?
    Have you checked those tables for data content?
    There have been cases in the past of imported documents opening with white text on a white background, giving the appearance of containing nothing. Check for this by selecting a block of cells, then applying a Fill colour or a Text colour using the Format button (paintbrush).
    I'd also suggest attempting to open the Excel files using LibreOffice, which can be downloaded from the linked website.
    Regards,
    Barry

  • Importing excel files - problem with single quote

    When importing excel files using 1.5, I can't get data with single quotes (') imported.
    When I run the insert statement given in SQLPlus I get "ORA-01756: quoted string not properly terminated", which is different than the error that SQL Developer gives me (see below).
    Also, I have a numeric value shown without a thousands comma-separator in the XLS file that I'm trying to load into a varchar2 field. But, the insert statements have added a thousands comma-separator which I don't want.
    REM Error starting at line 1 in command:
    REM INSERT INTO table (ID, NAME, CODE)
    REM VALUES (2427407, 'Ed-u-care Children's Center', '73,000');
    REM Error at Command Line:2 Column:37
    REM Error report:
    REM SQL Error: ORA-00917: missing comma
    REM 00917. 00000 - "missing comma"
    REM *Cause:   
    REM *Action:
    One last thing, TOAD gives a way to automap columns chosen from XLS to the columns in the database. It sure would be nice to have this functionality in SQL Developer.
    Thanks,
    Steve

    Did you consider both to be bugs (i.e., single quote issue and thousands comma separator issue)?
    Thanks

  • Help with importing r3d files into premiere pro cs6

    When I try to import these files into the media browser, a notification pops up saying the file is either damaged or unsupported. The file is not damaged however, and I need to be able to import these files into my project.

    do you know the 'flavor' of .r3d?
    red epic: imports fine
    red dragon: can't import into cs6
    if it's dragon, you will have to flip to a format cs6 likes
    by using the free redcine-x
    http://www.red.com/products/redcine-x
    hahahahahahahahahaha!!!

  • Importing excel file to SQL Server

    I have an application that needs to import an excel file with
    10 columns of data into an SQL Server database table with 13
    columns of data. Two of the 3 extra database columns are manditory,
    and I need to manipulate the values going in.
    I've determined the best method to do this using coldfusion
    is to import the excel file into a cvs file then use SQL to import
    the cvs file into SQL server. Does anyone know how to import an
    excel document into a cvs file using ColdFusion?
    Thanks!

    A couple of things come to mind. You might consider using DTS
    to import your data directly into SQL Server from Excel, rather
    than putting ColdFusion in the middle. Or, you might consider
    creating a ColdFusion ODBC datasource out of your Excel file, use a
    cfquery to select the applicable data, then insert the data into
    SQL Server in a loop. Not very efficient, but it can be done.
    Phil

  • Help Required:How Upload Excel file Into Oracle Table Using PLSQL Procedure

    Please Help , Urgent Help Needed.
    Requirement is to Upload Excel file Into Oracle Table Using PLSQL Procedure/Package.
    Case's are :
    1. Excel File is On Users/ Client PC.
    2. Application is on Remote Server(Oracle Forms D2k).
    3. User Is Using Application Using Terminal Server LogIn.
    4. So If User Will Use to GET_FILE_NAME() function of D2K to Get Excel File , D2k Will Try to pick File from That Remote Server(Bcs User Logind from Terminal Server Option).
    5. Cannot Use Util_File Package Or Oracle Directory to Place That File on Server.
    6. we are Using Oracle 8.7
    So Need Some PL/SQL Package or Fuction/ Procedure to Upload Excel file on User's Pc to Oracle Table.
    Please Guide me wd some Code. or with Some Pl/SQL Package, or With SOme Hint. Or any Link ....
    Jus help to Sort This Issue ........
    you can also write me on :
    [email protected], [email protected]

    TEXT_IO is a PL/SQL package available only in Forms (you'll want to post in the Forms forum for more information). It is not available in a stored procedure in the database (where the equivalent package is UTL_FILE).
    If the Terminal Server machine and the database machine do not have access to the file system on the client machine, no application running on either machine will have access to the file. Barring exceptional setups (like the FTP server on the client machine), your applications are not going to have more access to the client machine than the operating system does.
    If you map the client drives from the Terminal Server box, there is the potential for your Forms application to access those files. If you want the files to be accessible to a stored procedure in the database, you'll need to move the files somewhere the database can access them.
    Justin

Maybe you are looking for

  • Got prompt "the location of the document cannot be determined" then presentation GONE!

    I'm freaking out! I hope someone can help. I started getting the prompt "the location of the document cannot be determined" as well as asking me where the movie "VIBCPart1" was, which I thought was odd, as that was the name of the presention - not a

  • Making video vanish after playing?

    I would like to have an approx. half viewer height video play to open the cover of our publication, then fade to the full page composition. Anyone know how to make a video play, then essentially fade to what is behind it on the page? I have seen this

  • New episode available, but its skipped an episode!

    Hey! I bought a season pass for 'How i met your mother' Ages ago, (which brings me to a seperate question, why havent i got all the episodes despite it being aired already????) and i was notified of an episode that was available for download, but it

  • Re: Function Module to Validate ESS Id and Password

    Hi ,      Is there is any function module / BAPI to validate the ESS Id and Password . Regards, Vijay

  • Cant access my portal applicaion via internet

    hi i have installed 10.1.0.2 OAS infrastructure and middle tier "portal and wireless" OS = win 2003 server /etc/host file I have included 10.132.12.132 myservername.dpw.gov.za mytest my machine is on the domain=dpw.gov.za i have created page_group na