How can I produce two outputs of the same project

Dear Sir.

My goal is to produce the two outputs of the same main project, Webhelp and HTML help, each of them will be used differently in my compnay.

Producing two outputs is fine, but the problem was that external links are done differently for HTML help and Webhelp and as I Knew about you that can be solved by using conditional tags.

Actually I am new to conditional tags and I don't know how to use them. Could you please help me to do this or recommend a link on how to use condtional tags to produce different outputs.

Thank you very much

Hi there ahlam323

See if the link below helps everything. Some goober wrote something on it.

Click here to read the goober guide

See you soon... Rick

Tags: Adobe

Similar Questions

  • How can there be two accounts in the same user name

    How can I have two usernames even, that of the Australia and the other in the United States?

    Hello

    Thanks for posting your query in Microsoft Community.

    a. are both connected anyway through the network (for example in a server domain common network, VPN etc.)?

    b. What is a local user account or an Microsoft account?

    Unless the systems in the two countries are connected via a common domain, they are independent and can have accounts of local users with common names. If you talk about Microsoft accounts, then they can be configured two different computers, but the information that is on the server online sync is common to both systems.

    Additional information:

    User accounts: FAQ

    Hope this information is useful. Let us know if you need more help, we will be happy to help you.

  • How can I separate two movies on the same timeline?

    I use the first elements 11 but that you him have not used for quite awhile so I forgot much of what I learned. So here's my question: I have two movies on the same timeline. How can I separate them. In other words, how can I move one on the timeline, so it won't confuse my editing on the other? But better yet - how can I make a movie on the timeline completely and change it later as a separate film. I have really four shorts - a minute long. I would like to change separately, with a new file name. I don't know how to do that more.

    Tommyvincent

    I did some research on the issues that you have raised in this thread.

    Comments...

    1.

    After you import a video into the assets of the project, you can right click it, select Rename. This file when you drag the timeline will have the new name.

    But...

    If you import a video into the assets of the project, drag it to the timeline, right-click clip timeline, select Rename from the pop-up, then the calendar file will be renamed but not its thumbnail in the active project. You rename this project asset vignette to match if you want. However, these traces yet files renamed to the original with original filename to its disk hard saving location.

    2.

    All down your Timeline... one way would be to export the clip selectively if she was included in the Group of the clips on the Timeline. Two conditions for

    a. change box, set the gray tabs on the work area bar to expand on the segment to export

    and

    (b) in the field of export, have a check mark next to the option "Action work area Bar only.

    3.

    If you have made a clip in the active project, double clicked to open the preview window, you can cut the clip with the points put in and Set Out and create "subitems" with new names in the active project. These "subitems" would be part of the media of this project which could be moved to the timeline when necessary.

    Please review and determine if all the foregoing is in the right direction for what you want to do.

    Thank you.

    RTA

  • Mr President, how can I enter two rows at the same time with different default values that only the first line to use see?

    Mr President.

    My worm jdev is 12.2.1

    How to enter two rows at the same time with different default values that only the first line to use see?

    Suppose I have a table with four fields as below

    "DEBIT" VARCHAR2(7) , 
      "DRNAME" VARCHAR2(50),
      "CREDIT" VARCHAR2(7) , 
      "CRNAME" VARCHAR2(50),
    

    Now I want that when I click on a button (create an insert) to create the first line with the default values below

    firstrow.png

    So if I click on the button and then validate the second row with different values is also inserted on commit.

    The value of the second row are like the picture below

    tworows.png

    But the second row should be invisible. It could be achieved by adding vc in the vo.

    The difficult part in my question is therefore, to add the second row with the new default values.

    Because I already added default values in the first row.

    Now how to add second time default values.

    Concerning

    Mr President

    I change the code given by expensive Sameh Nassar and get my results.

    Thanks once again dear Sameh Nassar .

    My code to get my goal is

    First line of code is

        protected void doDML(int operation, TransactionEvent e) {    
    
            if(operation != DML_DELETE)
                 {
                     setAmount(getPurqty().multiply(getUnitpurprice()));
                 } 
    
            if (operation == DML_INSERT )
                       {
                               System.out.println("I am in Insert with vid= " + getVid());
                           insertSecondRowInDatabase(getVid(),getLineitem(),"6010010","SALES TAX PAYABLE",
                            (getPurqty().multiply(getUnitpurprice()).multiply(getStaxrate())).divide(100));      
    
                           }
    
            if(operation == DML_UPDATE)
                              {                                                    
    
                                 System.out.println("I am in Update with vid= " + getVid());
                             updateSecondRowInDatabase(getVid(),
                                 (getPurqty().multiply(getUnitpurprice()).multiply(getStaxrate())).divide(100));      
    
                              }                      
    
            super.doDML(operation, e);
        }
        private void insertSecondRowInDatabase(Object value1, Object value2, Object value3, Object value4, Object value5)
                  {
                    PreparedStatement stat = null;
                    try
                    {
                      String sql = "Insert into vdet (VID,LINEITEM,DEBIT,DRNAME,AMOUNT) values " +
                 "('" + value1 + "','" + value2 + "','" + value3 + "','" + value4 + "','" + value5 + "')";  
    
                      stat = getDBTransaction().createPreparedStatement(sql, 1);
                      stat.executeUpdate();
                    }
                    catch (Exception e)
                    {
                      e.printStackTrace();
                    }
                    finally
                    {
                      try
                      {
                        stat.close();
                      }
                      catch (Exception e)
                      {
                        e.printStackTrace();
                      }
                    }
                  }  
    
                  private void updateSecondRowInDatabase(Object value1, Object value5)
                  {
                    PreparedStatement stat = null;
                    try
                    {
                      String sql = "update vdet set  AMOUNT='"+ value5+"' where VID='" + value1 + "'";                     
    
                      stat = getDBTransaction().createPreparedStatement(sql, 1);  
    
                      stat.executeUpdate();
                    }
                    catch (Exception e)
                    {
                      e.printStackTrace();
                    }
                    finally
                    {
                      try
                      {
                        stat.close();
                      }
                      catch (Exception e)
                      {
                        e.printStackTrace();
                      }
                    }                  
    
                  }
    

    Second line code is inside a bean method

        public void addNewPurchaseVoucher(ActionEvent actionEvent) {
            // Add event code here...
    
            BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
                   DCIteratorBinding dciter = (DCIteratorBinding) bindings.get("VoucherView1Iterator");
                   RowSetIterator rsi = dciter.getRowSetIterator();
                   Row lastRow = rsi.last();
                   int lastRowIndex = rsi.getRangeIndexOf(lastRow);
                   Row newRow = rsi.createRow();
                   newRow.setNewRowState(Row.STATUS_NEW);
                   rsi.insertRowAtRangeIndex(lastRowIndex +1, newRow);
                   rsi.setCurrentRow(newRow);
    
                   BindingContainer bindings1 = BindingContext.getCurrent().getCurrentBindingsEntry();
                   DCIteratorBinding dciter1 = (DCIteratorBinding) bindings1.get("VdetView1Iterator");
                   RowSetIterator rsi1 = dciter1.getRowSetIterator();
                   Row lastRow1 = rsi1.last();
                   int lastRowIndex1 = rsi1.getRangeIndexOf(lastRow1);
                   Row newRow1 = rsi1.createRow();
                   newRow1.setNewRowState(Row.STATUS_NEW);
                   rsi1.insertRowAtRangeIndex(lastRowIndex1 +1, newRow1);
                   rsi1.setCurrentRow(newRow1);
        }
    

    And final saveUpdate method is

        public void saveUpdateButton(ActionEvent actionEvent) {
            // Add event code here...
    
            BindingContainer bindingsBC = BindingContext.getCurrent().getCurrentBindingsEntry();      
    
                   OperationBinding commit = bindingsBC.getOperationBinding("Commit");
                   commit.execute(); 
    
            OperationBinding operationBinding = BindingContext.getCurrent().getCurrentBindingsEntry().getOperationBinding("Commit");
            operationBinding.execute();
            DCIteratorBinding iter = (DCIteratorBinding) BindingContext.getCurrent().getCurrentBindingsEntry().get("VdetView1Iterator");// write iterator name from pageDef.
            iter.getViewObject().executeQuery();  
    
        }
    

    Thanks for all the cooperation to obtain the desired results.

    Concerning

  • How can I have two instances of the same open page to separate tabs?

    New 4.0.1 on a Win7 machine - last week using. It happens in time I want to open the same page twice. In the case of today, it's because I need to fill out a form and the need to look at a previous version - filled - in the same form that opens with the same URL. I've done this before, on the old machine with the next recent FF and Win XP.

    Thank you and I love Firefox!

    You can middle - click reload on the side of the right end of the address bar to open the same page in a new tab.

  • Can we have two textures for the same project?

    Hi all

    I use Captivate4. In my project, the transparency of the background for reading bar controls is 100%. If the texture would be considered to be the background of the PlayBar. I have a requirement to hide the commands of reading in a few slides. Then I would change my texture to another image. In short, I want to show a single texture when the play bar is visible and another texture when the play bar is invisible.

    Is this possible?

    Thank you and best regards,

    Kartik.

    In Captivate 4, to achieve something like this, you must use a picture placed on the layer immediately above your background layer with your PlayBar in the overlay mode.  Then turn off your PlayBar would reveal the image below instead.

  • How can I disable two back on the HP Officejet 6500

    How can I disable two back on the HP Officejet 6500?

    Hi ekiongozi,

    You need to access print options, and then select None to print on both sides drop-down box.

  • Windows Live Mail: How can I configure an output of the view?

    How can I configure an output of the opinion-i am using my cable by MS Live mail email

    original title: notice of the Office

    Hello Felise,

    The best place to ask your question of Windows Live is inside Windows Live help forums. Experts specialize in all things, Windows Live, and would be delighted to help you with your questions. Please choose a product below to be redirected to the appropriate community:

     

    Windows Live Mail

    Windows Live Hotmail

    Windows Live Messenger

    Looking for a different product to Windows Live? Visit the home page Windows Live Help for the complete list of Windows Live forums to www.windowslivehelp.com.

  • How can I disable all tabs at the same time?

    How can I disable all tabs at the same time with the IMac?

    Ask yourself how to close Firefox with multiple tabs / windows open?

    Firefox menu > exit.

    Or, you try to do something else?

  • When I connect my Ipad or Iphone to my computer via a USB cable, I can open the storage folder without using a password. How can I avoid someone else do the same?

    When I connect my Ipad or Iphone to my computer via a USB cable, I can open the storage folder without using a password. How can I avoid someone else do the same?

    This storage folder are you referring? If you are referring to the film, what happens because you have accepted a trust between the iOS device and the computer. If the device has been connected to another computer, it must be unlocked and establish a relationship of trust as well. If you are referring to something different, please explain.

  • How can I place two images on the screen?

    Hello

    I need to compare two images on the screen to see the colors are the same.

    How can I place two or three images on screen from Lightroom?

    Thank you for reading

    Lightroom allows you to use the comparison mode in the library Module, select the two images desired and press c.

    Also in the library Module is mode of investigation where you can select two or more wanted images, then press n.

  • You can play with two players on the same conlsoe on modern war

    XXXXXXXXXXXXXX

    Hi Capcurt,

    Welcome to the Microsoft Answers site!

    You try to play the game live with 2 players on the same console?

    Unfortunately, you can not go online with two people on the same console. Modern Warfare 2 allows a user to sign in when you play in multiplayer.

    Modern Warfare 2 is a completely new game mode that supports 2-player cooperative play in single line of the solo campaign in history. To do this, you will need two machines.

    For better support, you can contact Xbox Forums.

    http://www.xbox360forum.com/Forum/

    Hope this information is useful.

    Amrita M

    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • NEWBIE! How to create a second timeline in the same project?

    I often use first Pro CS5. I just bought a copy of the first 10 Elements for my wife. Surprisingly, a large part of my experience of the body has no transfer! For the most part, I was able to answer his questions, but need your help with this seemingly simple question...

    How can I create an another sequence/timeline in the same project file?

    Thanks for your help!

    Premiere Elements allows only a chronology by project.

  • How to get two outputs at the same time?

    Hello

    I use the PCIe6351 DAQ card to generate two signals separately. This product has two exits, so I thought that I can use both at the same time, but when I run the code it gives an error: "the spesified resource is reserved. I just want to know if it is possible for me to use both outputs together at the same time or not? If so, would you please guide me what should I do to solve the problem?

    Thank you very much

    Soran

    Great! This works. I appreciate your help

  • How can I call two functions in the HTML Form element attributes

    Hello

    I want the same value in the text field two, when I select the value to select the list then the value with a number increment should be two text field.
    I use both java script

    < script >
    function sumItems() {}
    function getVal (item) {}
    If ($x (point) .value! = "")
    Return parseFloat ($x (item) .value);
    on the other
    return 0;
    }
    $x('P19_LAST_END_YR').value = getVal ('P19_LAST_STR_YR') + 1;
    }
    < /script >


    < script >
    function per1Items() {}
    function getVal (item) {}
    If ($x (point) .value! = "")
    Return parseFloat ($x (item) .value);
    on the other
    return 0;
    }
    $x('P19_LAST_END_YR').value = getVal ('P19_START_YEAR') + 1;
    }
    < /script >


    now how can I call function onchange two attributes of the element in the HTML form for the discount:
    ' onChange = "javascript:sumItems()" onChange ="javascript:per1Items().

    Hello

    Try

    onchange="sumItems();per1Items();"
    

    BR, Jari

Maybe you are looking for

  • STOPzilla refuses to uninstall.

    Cannot remove prog.when When you try to uninstall stopzilla to d/load latest version, System refuses, ending with this msg... Uninstall result of query location...c/prog files/stopzilla/szinit.exe,command:/uq w/Windows install version 2.0... at the m

  • "set as default printer" is not an option

    My default printer some how was chosen as OneNote 2007.  I tried to change my default printer to the one I want, but it won't allow me.  I clicked on the printer that I want to and it gives me an accurate list options but not "set as default printer"

  • Cannot find the network on HP Pavilion

    HelloI don't find my network wireless on my HP Pavilion. It lists a whole bunch of other networks except me. Ive tried unsuccessfully to troubleshooting.It was fine this morning and I have wireless on my phone, so it's the computer. My product number

  • Contact-Download - Eloqua vs Salesforce?

    I've heard we have to upload their contacts in Eloqua rather than Salesforce.  As you can imagine, or even experienced, it was difficult to sell to my sales department.  Thoughts (or ammunition) about why it is preferable to Eloqua to CRM?

  • Any way to record Audio narration first and then video then?

    I think it's a better workflow (and ends up being faster than both both audio and recording after). We found another program that will allow us to do (but that has fewer features than Captivate).Our work will not spring for the two so we're throwing