Is it possible to search multiple documents for text?

I have several hundred fake newspaper cuttings that I have generated in Photoshop CS4, in which there are multiple layers of text. I want to search for certain words within all those cuttings, similar to the way I can search for words in InDesign or PDF across multiple documents.
Is that possible, either from within PS or by using third-party software?

I’ve given it some thought and I think Scripting would be the best way after all.
I’ve asked about accessing the texts in a psd without actually opening it in Photoshop in the Scripting Forum, but I’ve been told it might be speedier to actually open the files in psd, so some BrigeTalk might be necessary.
Anyway I wonder if one should upon running the Script create text-files with all the psd-files’ collected texts so that subsequent searches wouldn’t necessitate repeated opening – of course that means risking searching obsolete lists (unless one institutes checks for relative change-dates or some such).
A way that aims much shorter would be to transfer all the textItem.contents to the File Info’s Description with a comparatively simple Script and search the Contents in the Finder.

Similar Messages

  • Can i search a document for text in column a to return the entire row if column a matches in a separate sheet?

    Can i search multiple sheets in a document for text in column a to return the entire row if column a matches in a
    separate sheet?

    Thank you, Barry. That was helpful, and am hopeful that what I want to do is possible.
    I am creating a spreadsheet that currently has 20 sheets, of which certain sheets have more than one table.  I will be adding more sheets.  I would like to return results for all occurences of the search string.  Preferably into a seperate spreadsheet.  It would be perfect if that seperate sheet updated whenever I update information in the first spreadsheet.  To give an example:
    Sheet:     baskets
         Tables:         straw
                             wire
    Sheet:      barware
         Tables:          glasses
                              decanters
                              coasters
    My tables all have the same titiels:
    Vendor      Description     Cost     Selling Price
    Since I will have upwards of 100 sheets, with multiple tables, and most of my vendors will fit into multiple sheet categories, it would be helpful if I could also see what my order will be from each vendor, not just who I will be ordering each item from.  How would I do that? 
    I hope I conveyed that properly. 
    Thank you in advance for your help,
    Rana

  • Search multiple folders for files with same name and create single file

     I have a project where I need to search multiple folders for a file name and when found append data from each file to a single input file.
     Example
    root folder to start search
    \\servera\sales
    \\servera\it\salesa\cmmstr.txt
    \\servera\it\salesb\cmmstr.txt
    \\servera\it\salesc\cmmstr.txt
     I need to create a a single cmmstr.txt on the root folder. I would like it to be able to run this with parms to pass in folders to search and file names to search and single file name to create. I'm going to have a least 10 differnt files to
    search for and create output file for. The folders to search
    will somewhat be static.
     Thanks.

    I tested this out on my own seat and I think it should work for you. I wrote it as a function, all you have to do is pass the root folders you want to search and the file your looking for. The function will then search that directory and all sub directories
    for that file name. you will also have to provide it a file to append to, if the file dosen't exists the function will create it. If you run into an issues let me know and the links Mike
    Laughlin posted are a great resource.
    Function Search-Files{
    Param([String[]]$Locations, $SearchFor, $AppendTo)
    Begin
    If(-Not (Test-Path $AppendTo)){New-Item $AppendTo -ItemType File -Force}
    Process
    ForEach($Location in $Locations)
    $Files = Get-ChildItem -Path $Location -Filter $SearchFor -Recurse
    ForEach($File in $Files)
    Get-Content -Path $FIles.FullName | Out-File $AppendTo -Append
    End{}
    Search-Files -Locations "\\Server1\c$\Temp", "\\Server1\c$\Test1" -SearchFor "Install.cmd" -AppendTo "C:\Temp\Search.log"

  • ON MAC OS, Adobe Reader unable to search a document for words

    Hi,
    I am using Adobe Reader on a Mac Os platform.  All my software is up to date, including OS and Adobe Reader.
    My issue is that when I try searching a particular document for a word, it may return one result, if any, although there are clearly more results in the document.  I also tried this same operation on a windows os, windows 7 most updated os.  The search returned all results that were there..
    This must be a mac thing, I am wondering what fix there is for this?
    If this helps, when I copy and past the highlighted text to msword, it comes back in wing dings or some symbols...although its clear it is readible text in the document....able to annotate andhighlight it..etc.
    Thank you!

    I have a similar problem, but it has only occurred since my Adobe Reader was updated a few days ago.
    Until then, the 'search' function (command-shift-F) would operate beautifully.
    Since the update (to version 9.4.0, on Mac OS-X 10.6) the 'search' menu does not even show, regardless of whether I use the shortcut or the  menu from the top.  'Find' still seems to work, but it is prety useless when there ae multiple occurrences of a word or phrase within a document.
    If this canot be resilved, I would much rather go back to the old version - how do I do this?

  • Multiple document for request correspondence FB12

    Hello all,
    currently i'm using version 4.7.
    as known in std t-code FB12, we need to request which documents to generate correspondence.
    steps are:-
    1. enter company code
    2. choose correspondence type
    3. key in document number & fiscal year
    as for item 3; is there a method that we can key in multiple document numbers & year in one shot?
    currently doc number and year enter one by one.
    pls give ideas anyone...really appreciate it.

    Hi,
    i got what u meant. for my case, i want to print customer invoices (includes with or without tax).
    is there any other std t-code to do it for multiple selection documents?
    update:
    i tested use t-code F.62 (internal doc) using my correspondence type. here i select multiple documents to request as you mentioned earlier.
    but error msg prompted as 'Correspondence type ZAPS1 requires an individual text'.
    then i check the setting for ZAPS1 (tcode OB77) and indicator 'indiv. text' maintained. for what purpose this is ticked?
    further to that i check the program attached to ZAPS1 (t-code OB78), 'Text' field is maintained. what purpose this is maintain?
    kindly help to explain to me as i'm in doubt of the setting. Thanks.
    Edited by: IM_SM on Nov 12, 2008 3:55 AM

  • Create URL Document for text only string (Not XML)

    I want to query a http page that return only a string of text. The response is not formatted with XML. Is it possible to read the value of “parameter1” containing “4321” from the Contact Center Express script?
    Response (pure text):
    parameter1=4321&parameter2=1234

    Getting the response body of an HTTP GET request is as easy as:
    Set my_string = URL[http://my-server.local/]
    Now, if the response body is formatted as a query string:  key1=value1&key2=value2, you will need to further process your results.
    You can feel free to search the web for "java query string" to see if there's code out there you like, otherwise, here's one way to do it in UCCX.
    /* This Set step makes the HTTP GET request to the web server and stores the response body in the String */
    Set my_string = URL[http://my-server.local/]
    /* This Do step takes any size query parameter and turns it into a HashMap */
    /* E.g., From this: key1=value1&key2=value2; to this: map[key1] = value1, map[key2] = value2 */
    Do {
        String[] pairs = my_string.split("&");
        int i = 0;
        int j = pairs.length;
        for (; i < j; i++) {
            my_map.put(pairs[i].split("=")[0], pairs[i].split("=")[1]);
    }/* This If step checks the existance of a specific key, and if it exists, we get the value for use in our script */If (my_map.containsKey("key1"))     True          /* The specified key is in the map, set account_number to its value */          Set account_number = (String) my_map.get("key1");     False          /* The specified key is not in the map */
    I hope that makes sense and helps you.  Ask questions if you need more help.  Good luck.
    Anthony Holloway
    Please use the star ratings to help drive great content to the top of searches.

  • Creating web app to search multiple document types

    I don't know that this is a Servelt API question but Im not sure where to ask it. I needto write a wb app that enables users to search through multiple files, foldes and document types for particular strings within a faculty intranet. I don't know if this is a Java task or if I should take a different approach. I'm looking for ideas before I start the project. Thanks.
    Ken

    Not that I have any experience in this area but you might want to look into the Apache Lucene project:
    http://lucene.apache.org/

  • Is it possible to search the client for a file in WebDynpro?

    Hi,
    I need to check inside a WebDynpro application wether a
    file exists on a client or not, befor showing or listing it.
    I have a UNC-Name for the location (e.g.
    servername\dirname\filename.extension).
    Another task would be to browse this directory for all other existing files and dirs and list them.
    Is this at all possible with WebDynpro?
    Or would this only be possible by using the filesystem of
    the applicationserver (e.g. mount the dir on the filesys)?
    Is it possible to launch a client-located script (like VB-Script or such) in WebDynpro?
    (e.g. to search the dir, create a text-file and read this text-file).
    Or are these concepts totally against the security-policies
    of web-based applications?
    Thanks in advance.
    Alf

    Hi Alfred,
    generally web applications run in a sandbox on the client.
    That means that they have no access to the file system.
    To get access you need to install a certificate on the client:
    You create a key with the Java-Tool "Keytool" and sign the application (or the applet) with the Java-Tool "Jarsigner".
    That generates a *.cert file wich you now have to export from the parent system and import onto the client (with Keytool).
    You will find many detilled instructions for this procedure in the internet.
    Unfortunately I don`t know how it works with Web Dynpro.
    Karsten

  • How do I search a document for hyperlinks in Acrobat Pro XI?

    Running Windows 7 Enterprise -- It seems neither the advanced nor simple search option includes a check box for hyperlinks in a search. What am I missing?

    That method has worked for me before with external URL's; however, I am attempting to enumerate links to sections, figures and tables within a large document. Another way to do it (for this particular document, as it happens) is by adding tags via the Accessibility tool, but this process is tedious and the accessibility problems Acrobat found are mostly spurious, found just by luck.
    All I want is a wildcard regular expression search and a check box to include all links in my search, like how the search function worked in previous versions of Acrobat.

  • BPS Web Interface don't show multiple documents for each cell

    Hi gurus,
    I have an issue... we are trying use text documents from BPS on the WEB interface. Everything works fine, I can input text documents on each cell on the web, and from Query as well.
    I saved several other documents from the query for the very same cell, and I can see these other documents from BPS itself or from the Query by clicking on the title... but on BPS WEB interface, it shows only the last text document saved.
    Is there anything wrong on the configuration, or is it possible for the WEB interface to show the titles so that the user can choose which document he wants to open?
    Thanks in advance,
    Chen

    Hi Luke,
    did you check whether the document attributes are generated for your Characteristics?
    AWB -> Documents -> Administration -> Generated Properties
    There is also a SAP Note 431126, which you might want to consult.
    Regards,
    Eric

  • Building index from multiple tables for text search

    Hallo,
    I had a look at how to build a index table to optimize search with Oracle text.
    At the moment we are using a JOIN of tables to search for a text in several fields located in different tables.
    My question is:
    Is it possible to create that index table from several tables?
    If yes, can you point me out to any links or give me an example.
    So far, all the examples I read were about 1 table only.
    Thanks
    Elisabeth

    The following is an extension of the original example. It uses ctx_ddl.sync_index to synchronize the index and shows the changes in one of the index tables and shows that the query finds the newly synchronized data. It also shows how this only happens when the column that the index is on is updated. In this example, the index is on the dummy column. The first update does not update the dummy column, so the ctx_ddl.sync_index command does not synchronize the new data. The second update does update the related dummy column, so ctx_ddl.sync_index does synchronize the new data. Lastly, I showed what happens to one of the index tables when you rebuild the index. Notice the reduction in rows in the index table after the rebuild process. You could also rebuild online or drop and recreate the index.
    SCOTT@10gXE> DROP TABLE addresses
      2  /
    Table dropped.
    SCOTT@10gXE> DROP TABLE customers
      2  /
    Table dropped.
    SCOTT@10gXE> CREATE TABLE customers
      2    (customer_id NUMBER,
      3       first_name  VARCHAR2(15),
      4       last_name   VARCHAR2(15),
      5       dummy         VARCHAR2(1),
      6    CONSTRAINT   customers_pk PRIMARY KEY (customer_id))
      7  /
    Table created.
    SCOTT@10gXE> CREATE TABLE addresses
      2    (customer_id NUMBER,
      3       street         VARCHAR2(15),
      4       city         VARCHAR2(15),
      5       state         VARCHAR2(2),
      6    CONSTRAINT   addresses_fk FOREIGN KEY (customer_id)
      7                REFERENCES customers (customer_id))
      8  /
    Table created.
    SCOTT@10gXE> GRANT SELECT ON customers TO ctxsys
      2  /
    Grant succeeded.
    SCOTT@10gXE> GRANT SELECT ON addresses TO ctxsys
      2  /
    Grant succeeded.
    SCOTT@10gXE> CONNECT CTXSYS/ctxsys_password
    Connected.
    CTXSYS@10gXE>
    CTXSYS@10gXE> CREATE OR REPLACE PROCEDURE concat_cols
      2    (p_rowid IN     ROWID,
      3       p_clob     IN OUT CLOB)
      4  AS
      5    v_clob            CLOB;
      6  BEGIN
      7    FOR c1 IN
      8        (SELECT customer_id, first_name || ' ' || last_name AS data
      9         FROM      scott.customers
    10         WHERE  ROWID = p_rowid)
    11    LOOP
    12        v_clob := v_clob || c1.data;
    13        FOR c2 IN
    14          (SELECT ' ' || street || ' ' || city || ' ' || state AS data
    15           FROM   scott.addresses a
    16           WHERE  a.customer_id = c1.customer_id)
    17        LOOP
    18          v_clob := v_clob || c2.data;
    19        END LOOP;
    20    END LOOP;
    21    p_clob := v_clob;
    22  END concat_cols;
    23  /
    Procedure created.
    CTXSYS@10gXE> SHOW ERRORS
    No errors.
    CTXSYS@10gXE> GRANT EXECUTE ON concat_cols TO scott
      2  /
    Grant succeeded.
    CTXSYS@10gXE> CONNECT scott/tiger
    Connected.
    SCOTT@10gXE>
    SCOTT@10gXE> EXEC CTX_DDL.DROP_PREFERENCE ('concat_cols_datastore')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> BEGIN
      2    CTX_DDL.CREATE_PREFERENCE ('concat_cols_datastore', 'USER_DATASTORE');
      3    CTX_DDL.SET_ATTRIBUTE ('concat_cols_datastore', 'PROCEDURE', 'ctxsys.concat_cols');
      4  END;
      5  /
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> CREATE INDEX customer_text_idx ON customers (dummy)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  PARAMETERS ('datastore concat_cols_datastore')
      4  /
    Index created.
    SCOTT@10gXE> INSERT INTO customers VALUES (1, 'Bob', 'Smith', NULL)
      2  /
    1 row created.
    SCOTT@10gXE> INSERT INTO addresses VALUES (1, 'Noplace', 'Nowhere', 'CA')
      2  /
    1 row created.
    SCOTT@10gXE> INSERT INTO customers VALUES (2, 'Bob', 'Jones', NULL)
      2  /
    1 row created.
    SCOTT@10gXE> INSERT INTO addresses VALUES (2, 'Smith St.', 'Somewhere', 'CA')
      2  /
    1 row created.
    SCOTT@10gXE> EXEC CTX_DDL.SYNC_INDEX ('customer_text_idx')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> COLUMN   token_text FORMAT A30
    SCOTT@10gXE> SELECT   token_text, token_type, token_first, token_last, token_count
      2  FROM     dr$customer_text_idx$i
      3  /
    TOKEN_TEXT                     TOKEN_TYPE TOKEN_FIRST TOKEN_LAST TOKEN_COUNT
    BOB                                     0           1          2           2
    CA                                      0           1          2           2
    JONES                                   0           2          2           1
    NOPLACE                                 0           1          1           1
    NOWHERE                                 0           1          1           1
    SMITH                                   0           1          2           2
    SOMEWHERE                               0           2          2           1
    ST                                      0           2          2           1
    8 rows selected.
    SCOTT@10gXE> SELECT   c.first_name, c.last_name, a.street, a.city
      2  FROM     customers c, addresses a
      3  WHERE    c.customer_id = a.customer_id
      4  AND      CONTAINS (C.dummy, 'Smith') > 0
      5  /
    FIRST_NAME      LAST_NAME       STREET          CITY
    Bob             Smith           Noplace         Nowhere
    Bob             Jones           Smith St.       Somewhere
    SCOTT@10gXE> -- dummy is not updated, so the index is not synchronized:
    SCOTT@10gXE> UPDATE   addresses
      2  SET      city = 'Anywhere'
      3  WHERE    city = 'Somewhere'
      4  /
    1 row updated.
    SCOTT@10gXE> EXEC CTX_DDL.SYNC_INDEX ('customer_text_idx')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> SELECT   token_text, token_type, token_first, token_last, token_count
      2  FROM     dr$customer_text_idx$i
      3  /
    TOKEN_TEXT                     TOKEN_TYPE TOKEN_FIRST TOKEN_LAST TOKEN_COUNT
    BOB                                     0           1          2           2
    CA                                      0           1          2           2
    JONES                                   0           2          2           1
    NOPLACE                                 0           1          1           1
    NOWHERE                                 0           1          1           1
    SMITH                                   0           1          2           2
    SOMEWHERE                               0           2          2           1
    ST                                      0           2          2           1
    8 rows selected.
    SCOTT@10gXE> SELECT   c.first_name, c.last_name, a.street, a.city
      2  FROM     customers c, addresses a
      3  WHERE    c.customer_id = a.customer_id
      4  AND      CONTAINS (C.dummy, 'Anywhere') > 0
      5  /
    no rows selected
    SCOTT@10gXE> -- once dummy is updated, the index is synchronized:
    SCOTT@10gXE> UPDATE   customers
      2  SET      dummy = NULL
      3  WHERE    customer_id = 2
      4  /
    1 row updated.
    SCOTT@10gXE> EXEC CTX_DDL.SYNC_INDEX ('customer_text_idx')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> SELECT   token_text, token_type, token_first, token_last, token_count
      2  FROM     dr$customer_text_idx$i
      3  /
    TOKEN_TEXT                     TOKEN_TYPE TOKEN_FIRST TOKEN_LAST TOKEN_COUNT
    BOB                                     0           1          2           2
    CA                                      0           1          2           2
    JONES                                   0           2          2           1
    NOPLACE                                 0           1          1           1
    NOWHERE                                 0           1          1           1
    SMITH                                   0           1          2           2
    SOMEWHERE                               0           2          2           1
    ST                                      0           2          2           1
    ANYWHERE                                0           3          3           1
    BOB                                     0           3          3           1
    CA                                      0           3          3           1
    JONES                                   0           3          3           1
    SMITH                                   0           3          3           1
    ST                                      0           3          3           1
    14 rows selected.
    SCOTT@10gXE> SELECT   c.first_name, c.last_name, a.street, a.city
      2  FROM     customers c, addresses a
      3  WHERE    c.customer_id = a.customer_id
      4  AND      CONTAINS (C.dummy, 'Anywhere') > 0
      5  /
    FIRST_NAME      LAST_NAME       STREET          CITY
    Bob             Jones           Smith St.       Anywhere
    SCOTT@10gXE> -- notice the changes if the index is rebuilt or dropped and recreated,
    SCOTT@10gXE> ALTER INDEX customer_text_idx REBUILD
      2  /
    Index altered.
    SCOTT@10gXE> SELECT   token_text, token_type, token_first, token_last, token_count
      2  FROM     dr$customer_text_idx$i
      3  /
    TOKEN_TEXT                     TOKEN_TYPE TOKEN_FIRST TOKEN_LAST TOKEN_COUNT
    ANYWHERE                                0           2          2           1
    BOB                                     0           1          2           2
    CA                                      0           1          2           2
    JONES                                   0           2          2           1
    NOPLACE                                 0           1          1           1
    NOWHERE                                 0           1          1           1
    SMITH                                   0           1          2           2
    ST                                      0           2          2           1
    8 rows selected.
    SCOTT@10gXE> SELECT   c.first_name, c.last_name, a.street, a.city
      2  FROM     customers c, addresses a
      3  WHERE    c.customer_id = a.customer_id
      4  AND      CONTAINS (C.dummy, 'Anywhere') > 0
      5  /
    FIRST_NAME      LAST_NAME       STREET          CITY
    Bob             Jones           Smith St.       Anywhere
    SCOTT@10gXE> 

  • Possible to have multiple views for one scene?

    Away3D allows multiple Views to be created for one Scene, allowing different camera positions for the same geometry.
    Can Proscenium support this? I've been banging my head against a brick wall for a while now...
    Joe

    Hi Kopaacabana,
    (I  feel like I'm in one of those post-apocalyptic scenes where the last two humans left on earth finally meet.....)
    Thanks for answering!
    Yes, I've actually got two cameras quite happily working in the scene, the problem is that I need to re-use the geometry for the scene in two windows, or at least, two separate parts of one window simultaneously. Away3D can do it very easily, where one sets up a 'View', which has a 'Scene' it views. With Proscenium it seems that the whole thing is tied up with an Instance3D, which is fine for one camera, but the scene nodes seem tied up as children of some root scene node. I've tried assigning the scene data as a child of two instances of BasicScene (hacking the stage3ds[number] to be different for each), but that causes an exception.
    Just changing the activeCamera changes the view to the new camera, where I actually need to be able to render to two windows/screen areas from one set of geometry.
    I would have hoped that the paradigm would have been 'here is some geometry, lights, etc., now do with it what you will'
    Adobe, are you there to help us out, like, anyone at all? Are we wasting our time with this?
    Joe

  • How is it possible to have multiple styles for a single control

    Hi ,
    I have a CSS associated with my MXML File . Now how can i assign all these things to my TextInput ,for example by doing below , i can only assign font Size , how can i assign all these styles at a time to my TextInput
    <mx:Label name="UserName" width="80" x="89" y="80" text="UserName" styleName="p">
    This is my external css file
    .h1 {
        font-size: 24;
    .p {
        font-size: 50;
    .a {
        text-decoration: underline;
    .a:hover {
        color: #FF0000;
    Thanks in advnace .

    Hi,
    Try to combine your declarations.
         .newStyle {
    font-size: 50;
           text-decoration: underline;
    <mx:Label name="UserName" width="80" x="89" y="80" text="UserName" styleName="newStyle">

  • Is it possible to have multiple lines of text show for an event in monthly view?

    as an example, have a few lines of flight info show up without double clicking on event and it would be nice to have the entire event in a monthly printout too. Thank you.

    Hi Scott,
    Thank you very much for your reply and I apologize for getting back to this so late. I started using your suggestions today and I did have some success! The "shadow" button is very clever. Now, I think my lack of javascript syntax knowledge is keeping me from getting it all correct. I experimented with one field, a date field and I created the shadow button as you suggested and it worked perfectly!. The successful code I used for the click event for the gray button (see image below), was:
    form1.SSA.SF_Approver2RIF.SubmitRIFToFinalHrShadowButton::click - (JavaScript, client)
    if (form1.SSA.SF_Approver2RIF.Approver2RIFDate.rawValue == null) {
    xfa.host.messageBox("Please fill in all required fields");
    else form1.SSA.SF_Approver2RIF.SubmitRIFToFinalHrButton.execEvent("click");
    However, I have not yet had luck getting the other fields in that row to work like the date field has though. I don't think I'm coding the "or' part correctly when I begin to add the fields (the next one I'm trying to add after the "or" is the "Name" dropdown list box, but maybet the dropdown list doesn't count as a "null" value like the Date field does?
    My attempt at adding the name field so that two items are being checked is something like this but it does not work:
    form1.SSA.SF_Approver2RIF.SubmitRIFToFinalHrShadowButton::click - (JavaScript, client)
    if (form1.SSA.SF_Approver2RIF.Approver2RIFDate.rawValue == null){
    or
    (form1.SSA.SF_Approver2RIF.Approver2RIFName.rawValue == null)
    xfa.host.messageBox("Please fill in all required fields");
    else form1.SSA.SF_Approver2RIF.SubmitRIFToFinalHrButton.execEvent("click");
    Thank you so much for any additional insights you or the other members may have. I really appreciate it!
    -Chris

  • T is possible to create Multiple services for PM order

    Hi,
    Is it possible to take multi-service in a single maintenance order,so that cost will book on that equipment only and at cost center accordingly.At present the equipment and functional location field are disabled in the system.
    Thanks

    As I mentioned, do the config in Define Notification & Order Integration in IMG.
    Then give the equipments in Object List. Then select the equipment & click the button Assignments at the bottom.
    Then you can find the operations. Select the operation which should be assigned to the selected equipment.
    So that, in Operation details screen, you can find that equipment.
    You cant edit the equipment / FL field in operation details screen.
    Regards,
    Maheswaran.

Maybe you are looking for

  • Where can I find a 2010 Mac Pro replacement battery?

    Every time I google BR 2032 battery, I get links to Cr 2032 batteries.  My Mac Pro owners manual specifies BR 2032 for a replacement - i would be very grateful for any info.

  • Tv input names disappear 65L7300U

    looking for some help, i have a new toshiba  65L7300U tv i have managed to relabel the inputs ( ie i change hdmi 1 to tivo) and it looks fine but a few days later it reverts back to hdmi 1. i have not had any power outages. is there some problem or s

  • Usage of Documents vs. Public Documents folders

    Can someone please explain the usage of Documents vs. Public Documents folders in BOL? I understand that if someone is registered in a Group, but not added as a participant to a specific Workspace, he/she will be able to access Team Collaboration but

  • Exporting an iphoto slideshow to play in the iphone

    Hello - any ideas how i can get a iphoto slideshow exported to play on an iphone. If you export an iMovie - under the share option there is an export movie option, and then you can choose the iphone format? Many thanks

  • Issues with freezing and now, Disk Warrior.

    My Mac keeps freezing (with the pinwheel).  I went to run Disk Warrior to see if that helped, and it told me to delete a file that didn't exsist (com.Alsoft.diskwarrior.prefs... or something like that).  I am at the end of my rope.  Please help.