Captivate 5 export and import legend and sub title issue

when
i export a legend and sub title for revisiont and then import it
i get a white text on withe background why ?
my font on the project are white is it because of this ?
Thanks

let me explain better :-)
in captivate 5 there a feature for people to export legend and sub title so some one could revise the slide text etc...
i exprt it in word format but the doc created  we could reed the text cause the text is white on a white background
any idea ?
Thanks

Similar Messages

  • How to export and import template and dimensions mumbers between 2 appset

    hi expert:
          1.How to export and import template and dimensions mumbers between two application set
          2. In Our project Requirement ,
              we moust be  develop our planning in develop evn application set , distribute template and
              dimension mumbers to another  Qas applications set .
         3. how can  i   package our template in dev application set  and Anti-package to Qas application set
             with BPC  system tools?
         4. This  Requirement  is  from  our Security control Dep. we must be change template version or dimension
              mumber with system tools.
         5.thanks for your help!

    Ian,
    So, in other words, you're saying that it's not possible to export directly objects (like smart albums) that reside outside of projects?
    I know, for example, you can "export" anything created inside a folder by dragging and dropping the folder to another library; but you then have to rebuild the library to get the new folder and its contents to be recognized. For my library, this takes too much time to do.

  • How to export and import reports and presentations?

    Hi Guys,
    how to export and import reports and presentations from Analyzer 7.2 to Web Analysis 11.1.1.
    Can you plz tell me the procedure.
    Thanks

    Hi,
    Like I mentioned earlier, you can export documents and presentations to local computers and/or mapped drives.
    - Exported documents take ARD extension & presentations take APT extension.
    To export the current document, select File, then Export, then Current Document. In the Save dialog box, indicate your local drive/network location to which the file is to be saved and click OK.
    I believe- Analyzer 7.2 also has the wizard to let you Export docs. & Presentations.
    - Natesh

  • Exporting and importing projects and DCs

    We are not blessed with the JDI, and I am in a situation whereby I would like to take a project from one machine and import it into another.
    I tried this by exporting to a ZIP file, but when I try to import it, I have to create a new project in the target system, then import the ZIP file into that. When I do that it does not seem to preserve the original structure of the project.
    I noticed that there are many different formats in which the projects can be exported. Do any of these allow me to export the project and import it, preserving the internal structure of the project, ideally without creating a project in the target system first?
    Kind Regards,
    Tony.

    If you are working with the same version of Developer Studio on both PCs you can just copy the whole file structure of the project from your workspace to the workspace of the other PC.
    Then, in developer studio of the second PC, choose "import existing project", and browse to the root folder of the project.
    This should work, but keep in mind that eventually you will face versioning problems as you will make changes on both PCs...
    Johan

  • Script to Export and Import Keywords and Metadata

    I have a requirement to mass upload and download keywords and various metadata fields (i.e. File Name, Date Created, City, Country, Document, Title, etc.) into an external database from the Adobe Bridge. Ideally it would be compatible to .txt, .csv, etc type of database format. Currently I have to accomplish this task one at a time. I have an immediate need to upload 1000 plus pictures and various text fields into my website to share with others and be able to sell my pictures online.
    My immediate is for exporting the metadata and keywords.
    Does anyone know of a script that is aavailable?
    Arnold

    John,
    Thanks for your quick response. Below is the script I just modified this morning. When looking in the keyword field, it returns the word "undefined" for all records.
    I tried that yesterday and it didn't work. When looking at the Advance file info on Adobe Bridge I see the below format which had 2 levels. All the others I used only had one. Since I am not a programmer, I need help on that part of the script.
    ==========================
    EXIF Properties (exif,http://ns.adobe.com/exif/1.0/)
    - exif:Flash
    - exif:Fired: True
    ====================================
    Any luck on determining how to obtain file size.
    Again thank you so much for supporting me on my project,
    Arnold
    =====================
    #target bridge
    if (BridgeTalk.appName == "bridge")
    // Let's create our menu
    var menu = MenuElement.create( "command", "Export CSV File", "at the end of Tools");
    menu.onSelect = function(m) {
    try
    // Let's ask what the name of the output file
    var f = File.saveDialog("Export file list to:", "Comma delimited file:*.CSV");
    // Write the column headings
    f.open("w");
    f.writeln("Seq Number,New File Name,New File Name Path,Original File Name,Org Dt & Tm,ISO,Exposure Time,F Stop,EV,Exposure Program,Meter Mode,Focal Length,Flash,Lens,Author, Author's Position,City,Country,Description,Title,Orientation,Width,Height,Rating,Label");
    // Let's get a list of all the visible thumbnails
    var items = app.document.visibleThumbnails;
    for (var i = 0; i < items.length; ++i) { var item = items[i]; f.writeln(i + 1, ",\"", item.name, "\",\"", item.path.replace(/\"/g, "\"\""), "\",\"", ListMetadata(item), "\",\"", "\"" ); } f.close(); } catch(e) { } } menu.onDisplay = function(m) { m.enabled = app.document.contentPaneMode == "filesystem" && app.document.visibleThumbnails.length > 0;
    function ListMetadata(tn)
    md = tn.metadata;
    md.namespace = "http://ns.adobe.com/photoshop/1.0/";
    varAuthor = md.Author + "\",\"" + md.AuthorsPosition + "\",\"" + md.City + "\",\"" + md.Country + "\",\"";
    md.namespace = "http://ns.adobe.com/exif/1.0/aux/";
    varLens = md.Lens + "\",\"" ;
    md.namespace = "http://purl.org/dc/elements/1.1/";
    vartitle = md.title + "\",\"" + md.description + "\",\"" ;
    md.namespace = "http://ns.adobe.com/xap/1.0/mm/"
    VarPreservedFileName = md.PreservedFileName + "\",\"" ;
    md.namespace = "http://ns.adobe.com/exif/1.0/"
    VarDateTimeOriginal = md.DateTimeOriginal + "\",\"" + md.ISOSpeedRatings + "\",\"" + md.ExposureTime + "\",\"" + md.FNumber + "\",\"" + md.ExposureBiasValue + "\",\"" + md.ExposureProgram + "\",\"" + md.MeteringMode + "\",\"" + md.FocalLengthIn35mmFilm + "\",\"" + md.Flash + "\",\"" ;
    md.namespace = "http://ns.adobe.com/tiff/1.0/"
    varOrientation = md.Orientation + "\",\"" + md.ImageWidth + "\",\"" + md.ImageLength + "\",\"" ;
    md.namespace = "http://ns.adobe.com/xap/1.0/"
    varRating = md.Rating + "\",\"" + md.Label ;
    md.namespace = "http://ns.adobe.com/photoshop/1.0/";
    varKeywords = ListKeywords(md) + "\",\"" ;
    function ListKeywords(md)
    var varKeywords = "" ;
    for (var i = 0; i < md.Keywords.length; ++i) { varKeywords = varKeywords + md.Keywords[i] + ", "; } //strip off final comma and space varKeywords = varKeywords.substring( 0, varKeywords.length-2);
    return VarPreservedFileName + VarDateTimeOriginal + varLens + varAuthor + vartitle + varOrientation + varRating + varKeywords;
    ==============================

  • Stop sending me Valuable and Important Information and then make me fill in a form to retreive it!!!

    I AM GETTING EXTREMELY ANNOYED WITH YOU ADOBE!!!!!!!!!
    I pay you every month and you sedn me links to Adobe articles.  You try to make me fill out a form but (I do not have the time for that crap... and yes, it's total crap!!!!  Do you want your database full of multiple entries... for what?  Speculating, Selling?  I'm Sold.  I Pay you!!!  Stop soliciting me!!!!  Understand or fire the people who do this.,.. it is stupid and it is wasting my time.
    "Create, manage, and deliver personalized digital experiences"
    Just send me the link to a downloadable article... no more forms to complete.
    Soon I will get so pissed that I will cancel my Creative Cloud Subscription and go join the piraters.  I pay you enough money top treat me as a valued customer!!!
    And what's with your customer service...
    "With this response, we believe your issue is resolved and have therefore closed your case xxxxxxxxxxxxxxx.  If your support case has not been completed to your satisfaction or you should you need to contact us on this issue again, please reference your case number. You can reopen your case up to 14 days after it has been closed. "
    Are you kidding me????  You close the case without answering it, let alone resolving it?
    And I am supposed to call again, wait another 2 hours on hold just to re-open this case for the 4th time?
    ARE YOU LISTENING ADOBE???????????
    STOP WASTING MY TIME!!!!!  SEND ME YOUR ARTICLES WITHOUT HASSLING ME!!!!!  STOP BEING IDIOTS!!!!!

    Thanks for the response but in actuality I am interested in the articles
    they send.  There are good tips and techniques, strategies, and information
    about product updates.
    But the make it difficult to obtain it.  A form every time?
    As a Creative Cloud Subscriber I can't imagine what more Adobe wants from
    me.  They should automatically send this info to Creative Cloud Subscribers
    who pay a substantial monthly fee.
    Thanks again!
    [ email signature removed - see http://forums.adobe.com/docs/DOC-3731 ]

  • Captivate won't import comments and gives no message as to why

    I have projects built that have not been changed since sent out for comment. After getting the comments back, clicking on the import comments icon, and selecting the comment file the computer thinks for a minute and then does nothing. I have not had this problem before. The comments have always imported with no trouble. Today, no comments will import into any project. Whats up?

    Place your phone in DFU mode (search google for instructions) and restore as new.
    If this doesn't work, you'll need to bring your phone into Apple.

  • Export and import data to an external accounting software

    I have to make a link between SAGE accounting and B1 for a frnch customer.
    I want to export sales and prurchase invoices to SAGE
    and import customer and supplier payments.
    I would like to know what would be the consequence in B1.
    Ould it be "transparent" for the users ?
    For example do I have to make the Year End Closing ?
    Is there other things that I have to do except make the setiings as if I use the B1 accounting
    Thanks for your help
    Christophe FLAMENT

    Hi,
    What happens if we don't use accounting functionalities ?
    Every sales, purchase and inventory transactions that are executed in Business One automatically generate an accounting document. So, there is will be no impact as such on the system.
    Is there any probleme acting like this ? And what kind of problem ?
    In the very first place, i would never suggest using of any other ERP when SAP B1 is implemented. As SAP B1 itself is very robost and can handle almost all the requirements of SMB.
    Also, I am really not sure about the functionality of SAGE accounting software.
    In general, we dont suggest any customer using multiple systems, as it not only causes dulipcation of work, sometime it may also result in not recording of some of the data. As a result there is every chance that neither systems will have complete set of information.
    Do we have to do something in the accounting ?
    Depends on what kind of transactions you want process thru B1.
    In case if you're processing Sales, Purchase and inventory related transaction, you have to process payments and receipts related to the same. also, ensure proper monthly (if necessary) & yearly closing.
    Assign points if useful
    Thanks,
    Srikanth

  • Differ between import manager and import server

    Hi to all,
                Can any one explain difference between import server and import manager and how the data will be imported to the same.
    Regards
    MM

    Hi reddy,
    Can any one explain difference between import server and import manager and how the data will be imported to the same
    Please follow the text below, which has been taken from the help.sap.com
    Both MDIS and the MDM Import Manager can import data from a source file into an MDM repository. However, each has unique capabilities that distinguish it from the other. When each is used to its advantage, the result is an import strategy which provides the most efficient importing of data possible.
    The strength of the Import Manager is its connection to the source data, which enables its interactive map-making capabilities. When the Import Manager connects to a source it preloads the entire source file, giving it knowledge of every field and every value in the source data. This u201Ctotal awarenessu201D is crucial for preparing a complete import map. To help ensure a map is complete, the Import Manageru2019s Import Status tab alerts users to any discrepancies between source data values and the current map. The user can fix these problems interactively within the Import Manager and save the corrected map before any data is imported.
    Preloading an entire source file comes at a price, however. It consumes memory on the computer running the Import Manager and very large source files may exhaust the computeru2019s available memory.
    By contrast, MDISu2019s strengths are its scalability and automation.
    For scalability, instead of preloading the entire source file into the host machineu2019s memory as the Import Manager does, MDIS processes records in a stream by loading a record at a time into memory.
    This streaming technique enables MDIS to process much larger source files than the Import Manager, as the demand for memory on the host machine is not affected by the size of the import file.
    In addition to file size, file quantity poses a second scalability challenge. For example, a real-time transactional environment may produce a staggering number of files, each containing only one or two records. To import these files individually through Import Manager would be extremely inefficient. MDIS tackles this problem with a file aggregation feature that processes files systematically in batches rather than as individual files, resulting in faster, more efficient import of data.
    As it relates to automation, MDIS requires no user intervention to import files to an MDM repository. Instead, it relies on maps created previously within the Import Manager. Once an import file is placed in the appropriate folder, its data is imported automatically into the MDM repository using the rules of the pre-defined import map. Once a file is processed, MDIS scans the repository for the next file to import. This process continues 24 hours a day, seven days a week, until either MDIS or MDM Server are stopped.
    The trade-off for this scalability and automation is that if discrepancies between the source data and the import map arise, MDIS cannot u201Cfixu201D these problems by itself. Instead, the u201Cproblem casesu201D can be fixed manually at a later time using the interactive capabilities of the Import Manager. Unlike the Import Manager, however, MDIS can set aside problem records or files and continue importing.
    These conceptual and operational differences between the Import Manager and MDIS are summarized in the table below.
    Item
    Import Manager
    MDIS
    Source file location
    Anywhere
    Automatic inbound port
    Import process
    Interactive
    Automatic
    Import map state
    Editable
    Read-only
    Object loaded in memory
    Entire import file
    Individual records
    Streaming import support
    No
    Yes
    File aggregation support
    No
    Yes
    Maximum import file size
    Limited (50,000 records)
    Unlimited
    Status location
    Import Status Tab
    MDM Console/Report file
    Error correction prior to import
    Yes
    No
    Exception handling during import
    No
    Yes
    For additional info, kindly refer the link below:
    http://help.sap.com/saphelp_mdm550/helpdata/en/43/12036df94c3e92e10000000a1553f6/frameset.htm
    GO to-> MDM import Server
    Hope it helps.
    Thanks and Regards
    Nitin Jain

  • I try the first time to export or import schemas

    Hi
    I have never used Data moving utilities. I read some from guides and blogs, but I confused.
    Can you help me with simple examples export and import data* and directory_
    Thanks

    I think you want this.
    -- on windows os
    create or replace directory exportfiles on 'C:\exportfiles';
    --- exportfiles folder created on C: directory and we are created Oracle directory on this folder.
    grant read, write on directory exportfiles to mahir;
    -- we are give read, write priviligies to  mahir user on this  directory
    C:\> expdp  mahir/mahir@testdb DIRECTORY=exportfiles FILE=mahirshemadump.dmp SCHEMAS=mahir;
    -- exporting DUMP mahir users schema to exportfiles directory
    C:\> impdp  mahir/mahir@testdb1 DIRECTORY=exportfiles FILE=mahirshemadump.dmp SCHEMAS=mahir;
    -- and importing this dump to other database.
    -- in testdb1 create exportfiles directory too.
    and read same link on Sunny kichloo's post:
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/exp_imp.htm
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_export.htm
    Edited by: Mahir M. Quluzade on May 10, 2011 11:31 AM

  • Exporting the titles in HD format and importing back in SD format in DVDSP4

    Hello,
    I am new to this... still learning. I created a project in DVDSP4 in HD format. We did all the sub-titles unfortunately this format is relevently new, we would like to create the same project in SD format. Now when I am trying to export the item description and trying to re-import it back. There is a message which says cannot be imported into this project because it was exported from a different type of project. Its standard type is HD.
    Any help ??? It almost took 2 weeks to create this project with subtitles.. how may I able to get the subtitles in SD format....

    If you started a HD project, then you need to start completely new if you want a SD project.
    No way around it.

  • Regarding Exporting and Importing internal table

    Hello Experts,
    I have two programs:
    1) Main program: It create batch jobs through open_job,submit and close job.Giving sub program as SUBMIT.
    I am using Export IT to memory id 'MID' to export internal table data to sap memory in the subprogram.
    The data will be processed in the subprogram and exporting data to sap memory.I need this data in the main program(And using import to get the data,but it is not working).
    Importing IT1 from memory id 'MID' to import the table data in the main program after completing the job(SUBMIT SUBPROGRAM AND RETURN).
    Importing is not getting data to internal table.
    Can you please suggest something to solve this issue.
    Thank you.
    Regards,
    Anand.

    Hi,
    This is the code i am using.
    DO g_f_packets TIMES.
    * Start Immediately
           IF NOT p_imm IS INITIAL .
             g_flg_start = 'X'.
           ENDIF.
           g_f_jobname = 'KZDO_INHERIT'.
           g_f_jobno = g_f_jobno + '001'.
           CONCATENATE g_f_jobname g_f_strtdate g_f_jobno INTO g_f_jobname
                                                  SEPARATED BY '_'.
           CONDENSE g_f_jobname NO-GAPS.
           p_psize1 = p_psize1 + p_psize.
           p_psize2 = p_psize1 - p_psize + 1.
           IF p_psize2 IS INITIAL.
             p_psize2  = 1.
           ENDIF.
           g_f_spname = 'MID'.
           g_f_spid = g_f_spid + '001'.
           CONDENSE g_f_spid NO-GAPS.
           CONCATENATE g_f_spname  g_f_spid INTO g_f_spname.
           CONDENSE g_f_spname NO-GAPS.
    * ... (1) Job creating...
           CALL FUNCTION 'JOB_OPEN'
             EXPORTING
               jobname          = g_f_jobname
             IMPORTING
               jobcount         = g_f_jobcount
             EXCEPTIONS
               cant_create_job  = 1
               invalid_job_data = 2
               jobname_missing  = 3
               OTHERS           = 4.
           IF sy-subrc <> 0.
             MESSAGE e469(9j) WITH g_f_jobname.
           ENDIF.
    * (2)Report start under job name
           SUBMIT (g_c_prog_kzdo)
                  WITH p_lgreg EQ p_lgreg
                  WITH s_grvsy IN s_grvsy
                  WITH s_prvsy IN s_prvsy
                  WITH s_prdat IN s_prdat
                  WITH s_datab IN s_datab
                  WITH p1      EQ p1
                  WITH p3      EQ p3
                  WITH p4      EQ p4
                  WITH p_mailid EQ g_f_mailid
                  WITH p_psize EQ p_psize
                  WITH p_psize1 EQ p_psize1
                  WITH p_psize2 EQ p_psize2
                  WITH spid     EQ g_f_spid
                  TO SAP-SPOOL WITHOUT SPOOL DYNPRO
                  VIA JOB g_f_jobname NUMBER g_f_jobcount AND RETURN.
    *(3)Job closed when starts Immediately
           IF NOT p_imm IS INITIAL.
             IF sy-index LE g_f_nojob.
               CALL FUNCTION 'JOB_CLOSE'
                 EXPORTING
                   jobcount             = g_f_jobcount
                   jobname              = g_f_jobname
                   strtimmed            = g_flg_start
                 EXCEPTIONS
                   cant_start_immediate = 1
                   invalid_startdate    = 2
                   jobname_missing      = 3
                   job_close_failed     = 4
                   job_nosteps          = 5
                   job_notex            = 6
                   lock_failed          = 7
                   OTHERS               = 8.
               gs_jobsts-jobcount = g_f_jobcount.
               gs_jobsts-jobname  = g_f_jobname.
               gs_jobsts-spname   = g_f_spname.
               APPEND gs_jobsts to gt_jobsts.
             ELSEIF sy-index GT g_f_nojob.
               CLEAR g_f_flg.
               DO.                         " Wiating untill any job completion
                 LOOP AT gt_jobsts into gs_jobsts.
                   CLEAR g_f_status.
                   CALL FUNCTION 'BP_JOB_STATUS_GET'
                     EXPORTING
                       JOBCOUNT                         = gs_jobsts-jobcount
                       JOBNAME                          = gs_jobsts-jobname
                    IMPORTING
                       STATUS                           = g_f_status
    *            HAS_CHILD                        =
    *          EXCEPTIONS
    *            JOB_DOESNT_EXIST                 = 1
    *            UNKNOWN_ERROR                    = 2
    *            PARENT_CHILD_INCONSISTENCY       = 3
    *            OTHERS                           = 4
                   g_f_mid = gs_jobsts-spname.
                   IF g_f_status = 'F'.
                     IMPORT gt_final FROM MEMORY ID g_f_mid .
                     FREE MEMORY ID gs_jobsts-spname.
                     APPEND LINES OF gt_final to gt_final1.
                     REFRESH gt_prlist.
                     CALL FUNCTION 'JOB_CLOSE'
                       EXPORTING
                         jobcount             = g_f_jobcount
                         jobname              = g_f_jobname
                         strtimmed            = g_flg_start
                       EXCEPTIONS
                         cant_start_immediate = 1
                         invalid_startdate    = 2
                         jobname_missing      = 3
                         job_close_failed     = 4
                         job_nosteps          = 5
                         job_notex            = 6
                         lock_failed          = 7
                         OTHERS               = 8.
                     IF sy-subrc = 0.
                       g_f_flg = 'X'.
                       gs_jobsts1-jobcount = g_f_jobcount.
                       gs_jobsts1-jobname  = g_f_jobname.
                       gs_jobsts1-spname   = g_f_spname.
                       APPEND gs_jobsts1 TO gt_jobsts.
                       DELETE TABLE gt_jobsts FROM gs_jobsts.
                       EXIT.
                     ENDIF.
                   ENDIF.
                 ENDLOOP.
                 IF g_f_flg = 'X'.
                   CLEAR g_f_flg.
                   EXIT.
                 ENDIF.
               ENDDO.
             ENDIF.
           ENDIF.
           IF sy-subrc <> 0.
             MESSAGE e539(scpr) WITH g_f_jobname.
           ENDIF.
           COMMIT WORK .
         ENDDO.

  • Question regarding Export and Import

    First let me say that any software that comes without a save button should be sold with a warning label.
    Question 1:  I have having an issue comprehending how to save a photo.  In my case  I select the photo, zoom in on the subject, export it to my desktop. The pciture on my desktop does not incorporate the change. Am I missing a step? What do I need to do to export it with this change? I actually watched a You Tube video on this and could not see what i was not doing.
    Question 2: I just installed Lightroom and am trying to import my 12k strong photo collection. The Import button pulls in about 2k and then cannot find anymore. The photos are stored in folders by date within a master folder. I am selecting the master folder. I can go in and import the sub-fodler individually. However i do not want to do that 200 times.There is no apparent way to go into the subfolder level and select more than one folder.
    Can anyone help me upgrade my opinion of Lightroom from it's current level of POS to usuable?

    Ihatelightroom wrote:
    First let me say that any software that comes without a save button should be sold with a warning label.
    Why?
    Question 1:  I have having an issue comprehending how to save a photo.  In my case  I select the photo, zoom in on the subject, export it to my desktop. The pciture on my desktop does not incorporate the change. Am I missing a step? What do I need to do to export it with this change? I actually watched a You Tube video on this and could not see what i was not doing.
    You must have selected the wrong option in the Export dialog box. Under "File Settings", you need to select JPG and not "Original". Of course, you probably need to do some additional viewing of videos (or some reading) to learn that most people's workflow does not automatically include a "Save" or "Export" after editing the photo. It's not a necessary part of Lightroom's workflow, unless you need the photo for some non-Lightroom activity.
    Question 2: I just installed Lightroom and am trying to import my 12k strong photo collection. The Import button pulls in about 2k and then cannot find anymore. The photos are stored in folders by date within a master folder. I am selecting the master folder. I can go in and import the sub-fodler individually. However i do not want to do that 200 times.There is no apparent way to go into the subfolder level and select more than one folder.
    In the Import dialog box, on the left, under "Source", there is a checkbox that says "Include SubFolders". Make sure this is checked.
    Seriously, you need to spend some time reading introductory material about LR because Lightroom does not work like any other photographic software you might have used in the past. You are handling it as if it was no different than standard photo editing software, and you are going to be frustrated if that is your mindset. See the videos at adobe.tv and read this: http://www.flickr.com/groups/adobe_lightroom/discuss/72157603590978170/

  • Question regarding export and import of Hyperion Security during upgrade

    Hi Guys,
    We are upgrading Essbase, Integration Services from 7x to 9x which are utilizing Hyperion Hub and we are going to follow the method of uninstalling 7x and reinstalling 9x components.
    Now my question is, what is the best way of transferring security from 7x to 9x. I heard that Advanced Security Manager can be used to export and import back security. Or is there any
    other way of doing it??
    Can someone please enlighten me on this.
    Thanks in advance
    K

    Ihatelightroom wrote:
    First let me say that any software that comes without a save button should be sold with a warning label.
    Why?
    Question 1:  I have having an issue comprehending how to save a photo.  In my case  I select the photo, zoom in on the subject, export it to my desktop. The pciture on my desktop does not incorporate the change. Am I missing a step? What do I need to do to export it with this change? I actually watched a You Tube video on this and could not see what i was not doing.
    You must have selected the wrong option in the Export dialog box. Under "File Settings", you need to select JPG and not "Original". Of course, you probably need to do some additional viewing of videos (or some reading) to learn that most people's workflow does not automatically include a "Save" or "Export" after editing the photo. It's not a necessary part of Lightroom's workflow, unless you need the photo for some non-Lightroom activity.
    Question 2: I just installed Lightroom and am trying to import my 12k strong photo collection. The Import button pulls in about 2k and then cannot find anymore. The photos are stored in folders by date within a master folder. I am selecting the master folder. I can go in and import the sub-fodler individually. However i do not want to do that 200 times.There is no apparent way to go into the subfolder level and select more than one folder.
    In the Import dialog box, on the left, under "Source", there is a checkbox that says "Include SubFolders". Make sure this is checked.
    Seriously, you need to spend some time reading introductory material about LR because Lightroom does not work like any other photographic software you might have used in the past. You are handling it as if it was no different than standard photo editing software, and you are going to be frustrated if that is your mindset. See the videos at adobe.tv and read this: http://www.flickr.com/groups/adobe_lightroom/discuss/72157603590978170/

  • LCM export and import for Hyperion financial reports 11 1 2 2

    Hi All,
    Could you please let me know how to perform the LCM migration for HFR in 11.1.2.2 version. I am on AIX.
    I am having some issues with my HFR server and so I cannot open the reports. So I am thinking if I can use LCM and export and migrate the reports to another server.
    The steps I am performing to do this:
    Login to HSS > Application group> Reporting and Analysis> Repository objects> report folder name> select reports> Hit on Export
    Now in the exported folder I see three things:
    RnA-Reporting and Analysis (Its a folder)
    Export.xml
    Import.xml
    Now under RnA-Reporting and Analysis folder I see sub folders
    resource\Repository Objects\Under this folder, I see for every report there is one .xml file and 5 other files for the same report.
    Can anyone tell me how to import these reports back into the new environment?
    Thanks,

    Hi Celvin-
    Thanks for the reply- And I followed what you recommended but none of the reports being migrated. I can only see one batch script under HSS and workspace in the target server but in the LCM export from the source server (The exported folder) i can see all the reports and the books.
    Can you please advise what should be done now?
    Thanks a lot!!!

Maybe you are looking for

  • Unable to find master data in R3

    Hi all I am not able to find the follwing master data components in R3 but they are present in BI content.. I am not sure how to go about it ... Could you pls help.. Thanks Account Assignment Category (0BBP_ACCCAT_TEXT) Account type (0ACCT_TYPE_ATTR)

  • How do I restrict use of mac mini to one website only?

    Hi Geniuses! I want to set up a Mac Mini in my office that can only be used to browse 1 website and nothing else. I don't want any user other than Admin to have the ability to change any settings, download any apps, install any software or browse the

  • BOM at Sales Order

    Dear All, My client have 3 material, contract is created with material one, but on sales order level when i call material one, system should explode BOM, and shows second and third material, price is only applicable with material 2nd and 3rd, no pric

  • HTTP 400 Bad Request Error

    Application Express 3.1.1.00.09 We have some users who are experiencing what appears to be a browser problem in one of our APEX applications. When clicking on any button that does an insert or update to the database some users get an HTTP-400 Bad Req

  • My antenna signal is very weak and I have the iOS 6.1 I CAN´T GET THE WIRELESS CONNECTION

    my antenna signal is very weak and I have the iOS 6.1 I CAN´T GET THE WIRELESS CONNECTION