Select box problem (option selected)

I have the following code:
<td><p>Topic:</p>
<%
try
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
String sourceURL = "jdbc:odbc:my_Library";
Connection databaseConnection = DriverManager.getConnection(sourceURL);
Statement statement = databaseConnection.createStatement();
     String Topic;
     ResultSet bookDetails = statement.executeQuery("SELECT distinct Topic FROM tblAvailable_Items order by Topic");
     out.println("<select name = \"Topic" + "\">");
     out.println("<option value = \"" + "\"></option>");
               while(bookDetails.next())
                    Topic = bookDetails.getString("Topic");
                    if(request.getParameter("Topic") == Topic)
                         out.println("<option selected value="+Topic+">"+Topic);
                    else
                         out.println("<option value="+Topic+">"+Topic);
     out.println("</select>");
     bookDetails.close();
     databaseConnection.close();     
catch(ClassNotFoundException cnfe)
out.println(cnfe);
catch(SQLException sqle)
out.println(sqle);
%>
</td>
For some reason, the option selected version is never ativated, despite if(request.getParameter("Topic") == Topic) being true.
Any ideas how to fix this problem?

Try this code,
<td><p>Topic:</p>
<%
try
     Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
     String sourceURL = "jdbc:odbc:my_Library";
     Connection databaseConnection = DriverManager.getConnection(sourceURL);
     Statement statement = databaseConnection.createStatement();
     String Topic="";
     ResultSet bookDetails = statement.executeQuery("SELECT distinct Topic FROM tblAvailable_Items order by Topic");
     String reqTopic=request.getParameter("Topic");
     out.print("<select name = 'Topic'>");
     out.print("<option value = ''></option>");
     while(bookDetails.next())
          Topic = bookDetails.getString("Topic");
          if(reqTopic.equals(Topic))
               out.print("<option selected value='"+Topic+"'>"+Topic+"</option>");
          else
               out.print("<option value='"+Topic+"'>"+Topic+"</option>");
     out.print("</select>");
     bookDetails.close();
     databaseConnection.close();
catch(ClassNotFoundException cnfe)
     out.print(cnfe);
catch(SQLException sqle)
     out.print(sqle);
catch(Exception e)
     out.print(e);
%>
</td>
Sudha

Similar Messages

  • Multiple Selection not working on List Box Properties/Option Screen

    When I select multiple selection on the List Box Properties/Options tab, I get no difference from the single selection default. It still highlights only the last of the multiple entries (like a single selection) and displays only the last entry. Is there something else I need to do?
    Thanks for your help.

    To select multiple items, you need to hold down the Ctrl key when clicking additional items.

  • My firefox page is not connecting to network and also its not displaying the troubleshoot problems option?

    my firefox page is not connecting to network and also its not displaying the troubleshoot problem option?

    At the very least, I recommend you restart your router, (your internet box).
    More detail on your problem is needed - are you in a submarine? On the moon? On a tropical island?
    You can help yourself by providing as much info as you can about your present situation - what kind of router do you have? Have you moved it? DId you update it?  Did you do anything to change your setup, and if you did, what?

  • "Dialog box "PROBLEM WITH SHORTCUT"

    When my T40 p starts up I keep getting the following message, over and over again until I close the system tray IBM Connect bar. 
    "Dialog box “PROBLEM WITH SHORTCUT”
    The drive or network connection that the shortcut IBM Access Support.lnk refers to is unavailable.  Make sure that the disc is properly inserted to the network resource is available, and then try again. "
    Help!

    You'll need to find your iTunes folder. It's usually located on your main hard disk under My Documents/My Music/iTunes. Copy this whole folder to another hard drive (if possible) or burn it on a CD (probably will take more than one--depending upon how large your library is) or DVD. Once you have a good backup of your library, try downloading and reinstalling iTunes.

  • Activity Box problem

    I am working on an Activity Box problem. I got some errors, Please Help and Thanks in advance!!!
    My program likes:
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    /*ActivityBox Applet */
        public class ActivityBox extends Applet {
    //Declarations
        String panelString = new String("News from the field.");
        String southString = new String("South Button");
        String infoString = new String("Type here.");
        String kbString = new String("East ");
        MousePanel cp = new MousePanel(100,100,panelString);
        MousePanel ep = new MousePanel(100,100, kbString);
        MousePanel np = new MousePanel(50,50);
        MousePanel sp = new MousePanel(100,100);
        MousePanel wp = new MousePanel(100,100,"West - Type here");
        TextField myText = new TextField(infoString);
        Button southButton = new colorChanger(southString);
        colorChanger Blues = new colorChanger(Color.blue);
        buttonListener Zap = new buttonListener(cp, myText, ep);
        kbListener Tap = new kbListener(ep, kbString);
    //init
        public void init() {
         setLayout(new BorderLayout(5,5));
             np.addMouseListener(Blues);
         add("North",np);
             np.add(myText);
         np.setBackground(Color.Cyan);
             sp.addMouseListener(Blues);
             southButton.addActionListener(Zap);
         sp.add(southButton);
         add("South", sp);
         sp.setBackground(Color.Cyan);
             ep.addMouseListener(Blues);
         add("East",ep);
         ep.setBackground(Color.Cyan);
             wp.addMouseListener(Blues);
             wp.addKeyListener(Tap);
            add("West",wp);
         wp.setBackground(Color.Cyan);
             cp.addMouseListener(Blues);
         add("Center",cp);
         cp.setBackground(Color.Cyan);
    /* MousePanel */
    class MousePanel extends Panel {
        public String nameTag = "";
        Dimension myDimension = new Dimension(15,15);
    //Constructor 1 - no name tag
        MousePanel(int h, int w) {
         myDimension.height = h;
         myDimension.width = w;
    //Constructor2 - with name tag
        MousePanel(int h, int w, String nt) {
         myDimension.height = h;
         myDimension.width = w;
         nameTag = nt;
    //paint
        public void paint(Graphics g) {
         g.drawString(nameTag,5,10);
    //change text
        public void changeText(String s){
         nameTag = s;
         repaint();
        public Dimension getPreferredSize(){
         retrun myDimension;
    //getMinimumSize
        public Dimension getMinimumSize(){
         return myDimension;
    class colorChanger implements MouseListener {
        private Color oldColor = new Color(0,0,0);
        private Color changeColor = new Color(0,0,0);
        //constructor
        colorChanger(Color it){
         changeColor = it;
        //Methods required to implement MouseListener interface
        public void mouseEntered(MouseEvent e) {
         oldColor = e.getComponent().getBackground();
         e.getComponent().requestFocus();
        public void mouseExited(MouseEvent e) {
         e.getComponent().setBackground(oldColor);
         e.getComponent().transferFocus();
        public void mousePressed(MouseEvent e) {
        public void mouseReleased(MouseEvent e) {
        public void mouseClicked(MouseEvent e) {
    class buttonListener implements ActionListener {
        private MousePanel it1 = new MousePanel(0,0,"");
        private MousePanel it2 = new MousePanel(0,0,"");
        private TextField from = new TextField("");
        private String words = new String("");
        //constructor
        buttonListener(MousePanel target1, TextField source, MousePanel target2){
         it1 = target1;
         from = source;
         it2 = target2;
        //Methods required to implement ActionLIstener interface
        public void actionPerformed(ActionEvent e) {
         words = from.getText();
         it1.changeText(words);
         from.setText("");
         it2.changeText("");
    }//end buttonListener
    class kbListener implements KeyListener {
        private MousePanel it = new MousePanel(0,0,"");
        private String putString = new String("");
        //constructor
        kbListener(MousePanel target, String display){
            it = target;
         putString = display;
        //Methods required to implement KeyListener interface
        public void keyPressed(KeyEvent e) {
        public void keyReleased(KeyEvent e){
        public void keyTyped(KeyEvent e){
         putString = putString + e.getKeyChar();
         it.changeText(putString);
    }When I compiled it, I got:
    ActivityBox.java:18: cannot resolve symbol
    symbol  : constructor colorChanger (java.lang.String)
    location: class colorChanger
        Button southButton = new colorChanger(southString);
                             ^
    ActivityBox.java:24: cannot resolve symbol
    symbol  : constructor BorderLayout (int,int)
    location: class BorderLayout
            setLayout(new BorderLayout(5,5));
                      ^
    ActivityBox.java:28: cannot resolve symbol
    symbol  : variable Cyan
    location: class java.awt.Color
            np.setBackground(Color.Cyan);
                                  ^
    ActivityBox.java:33: cannot resolve symbol
    symbol  : variable Cyan
    location: class java.awt.Color
            sp.setBackground(Color.Cyan);
                                  ^
    ActivityBox.java:36: cannot resolve symbol
    symbol  : variable Cyan
    location: class java.awt.Color
            ep.setBackground(Color.Cyan);
                                  ^
    ActivityBox.java:40: cannot resolve symbol
    symbol  : variable Cyan
    location: class java.awt.Color
            wp.setBackground(Color.Cyan);
                                  ^
    ActivityBox.java:43: cannot resolve symbol
    symbol  : variable Cyan
    location: class java.awt.Color
            cp.setBackground(Color.Cyan);
                                  ^
    ActivityBox.java:72: cannot resolve symbol
    symbol  : class retrun
    location: class MousePanel
            retrun myDimension;
            ^
    .\BorderLayout.java:8: setLayout(java.awt.LayoutManager) in java.awt.Container c
    annot be applied to (BorderLayout)
            p.setLayout(new BorderLayout ());
             ^
    .\BorderLayout.java:9: cannot resolve symbol
    symbol  : variable NORTH
    location: class BorderLayout
            p.add("North", BorderLayout.NORTH);
                                       ^
    .\BorderLayout.java:10: cannot resolve symbol
    symbol  : variable SOUTH
    location: class BorderLayout
            p.add("SOUTH", BorderLayout.SOUTH);
                                       ^
    .\BorderLayout.java:11: cannot resolve symbol
    symbol  : variable EAST
    location: class BorderLayout
            p.add("EAST", BorderLayout.EAST);
                                      ^
    .\BorderLayout.java:12: cannot resolve symbol
    symbol  : variable WEST
    location: class BorderLayout
            p.add("WEST", BorderLayout.WEST);
                                      ^
    .\BorderLayout.java:13: cannot resolve symbol
    symbol  : variable CENTER
    location: class BorderLayout
            p.add("CENTER", BorderLayout.CENTER);
                                        ^
    14 errors

    Again compile ur code .... I don't seem to get all those errors

  • Fail-box problem

    Hi!
    I have some problem and I need help..
    fail-box problem with lokal and network system.
    I dont know how to solve it'
    Thank you...

    Are you still facing the same issue ? if yes then please post the screenshot of exact error and few details such as if you are getting this error while opening a specific file or on double click on Muse itself ?
    Thanks,
    Sanjit

  • Expanding Box Problem

    I have been working all morning to add a horizontal spry menu
    bar to the menu_bar section of the Mother Earth Template (
    http://www.webshapes.org/template/details/id/200702247034127204)
    from Webshapes (
    http://www.webshapes.org/)
    Anyway, I had to do some crazy positioning to get the
    submenus to lign up with the menus and now the submenus will not
    display in IE because of an 'expanding box problem' All of the
    problems are associated with either my "ul.MenuBarHorizontal ul" or
    my "ul.MenuBarHorizontal ul ul"
    Can anyone help me with this? I am a beginner with
    Dreamweaver and have been having a lot of troubles with it.
    Thanks.

    Hello Tom, Is it a template related error message?
    I would suggest you to use percentages when setting the width
    and height values.

  • Spry Vertical Submenu - Expanding Box Problem, white background

    Hello everyone. I've recently incorporated a Spry Vertical Menu on my site for the first  time and I'm experiencing problems with the submenu in IE7. (Things look  fine in FF, Safari, and Opera.) A white box appears behind the text area  (the "bios" and "contact us" links).  And....In IE6 the entire menu bar becomes a horizontal mess.
    I've come to learn that this is called an Expanding Box Problem but I  don't know how to fix it. Perhaps this is seperate issue from the white panel issue altogether. I dunno. Can anyone be of assistance? I've been trying  to solve this problem for days.
    http://www.exposedproductionsnyc.com
    Below is the CSS:
    /* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
    ul.MenuBarVertical
        list-style-type: none;
        font-size: 100%;
        cursor: default;
        width: 8em;
        padding-top: 0px;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 31.5px;
        background-color: #000;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 0;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* Menu item containers, position children relative to this container and are same fixed width as parent */
    ul.MenuBarVertical li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: 160px;
        background-color: #000;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarVertical ul
        margin: -5% 0 0 95%;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: absolute;
        z-index: 1020;
        cursor: default;
        width: 8.2em;
        left: -1000em;
        top: 0;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarVertical ul.MenuBarSubmenuVisible
        left: 0;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarVertical ul li
        width: 100px;
        padding-left: 29px;
        padding-top: 3px;
        margin-top: 1px;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Outermost menu container has borders on all sides */
    ul.MenuBarVertical
    /* Submenu containers have borders on all sides */
    /*ul.MenuBarVertical ul
        border: 1px none #CCC;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarVertical a
        display: block;
        cursor: pointer;
        background-color: #000;
        padding: 0.5em 0em;
        color: #FFF;
        text-decoration: none;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
        background-color: #000;
        color: #6CC3D7;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
        background-color: #000;
        color: #6CC3D7;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarVertical a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarRight.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
        background-color: transparent;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarVertical a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarRightHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
        background-color: transparent;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarVertical iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarVertical li.MenuBarItemIE
        display: inline;
        f\loat: left;

    Long answer =  z-index
    http://www.smashingmagazine.com/2009/09/15/the-z-index-css-property-a-comprehensive-look/
    Nancy O.

  • Expanding box problem in some browsers

    My bottom three dividers are having an expanding box problem in some browers. Any idea how to fix? This is my first website and I am clueless.....
    www.privateinsurancebrokers.com
    Source Code:
    V <div id="container">
        <div id="main_image"><img src="Images/ThreeArch.jpg" width="960" height="400" alt="Kenneth G. Harris Insurance Agency" /></div>
        <div id="left_colum">
            <strong><a href="employeebenefits.html"><img src="Images/Website_EmployeeBenefits.jpg" width="310" height="127" alt="Employee Benefits Orange County" /></a>Employee Benefits
          </strong><br />
          Since 1972, Kenneth G. Harris Insurance Agency has advocated for our clients in the process of securing the highest value employee benefit program. <a href="employeebenefits.html" target="_new">Learn More»</a> </div>
        <div id="center_column"><strong><a href="HealthInsurance.html"><img src="Images/Family and Individual Insurance.jpg" alt="Family and Individual Insurance Services" width="310" height="127" align="top" /></a>Individual & Family Insurance Services
        </strong>Kenneth G. Harris Insurance Agency will work with our insurance and financial partners to assist you with all aspects of your personal insurance needs. <a href="individualinsurance.html" target="_new">Learn More»</a></div>
        <div id="right_column"><a href="news.html"><img src="Images/blog.jpg" width="310" height="127" alt="Health and Life Insurance News Orange County" /></a>
          <strong>Information</strong> <br />
    Keep up-to-date with the latest employee benefits and private insurance news. Let us serve as your resource for health care  reform news and<a href="article2.html" title="Kenneth G. Harris Insurance Agency Group Health and Individual Insurance" target="_new"> more»</a></div>
    </div>

    Your CSS Layout has a provision for clearing floats but I don't see it in your HTML markup.
    Insert a float clearing <br> <p> or <hr> right above your footer division like so:
    <hr class="clearfloat" />
      <div class="footer">
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • 10.4.7 MLTE black box problem

    Hi all
    Anyone get a black MLTE box problem after the 10.4.7 upgrade?
    The multilingual text engine in the open source game Aleph One after the upgrade to 10.4.7 - shows a black box in the chat area. It is not always a problem - about 30% of the games I start seem to have it.
    Thanks

    I just recieved an email from F-Secure, after I told them, that no attachments sent from Mail (after 10.4.7) go through to F-Secure / Windows users.
    They have investigated the problem and reported this:
    The attachments MIME header has the following fields: name and filename.
    For some reason Mail removes the blank spaces from the name field but leaves the filename field untouched. These differences in the fields make F-Secure remove the attachment (alarm).
    One "fix" is removing the blank spaces from the filename, for example File 1.pdf >> File1.pdf. But this in not easy computing. Everything works just fine with 10.4.6 and before, but 10.4.7 >> is causing the problems.
    PowerMac Dual Core G5/2,3GHz | 250Gb | SD | 23 Cinema • PB G4/1,67GHz | 15,2 | 8   Mac OS X (10.4.7)   AppleFarmer

  • Hi, im using ff 8.1, and when i use drop down boxes the options show but it doesnt change when i select an option.

    So im using this website, and im not sure if this problem occurs with other website because i havent come across any, but i select the drop down box menu, the options appear, i select an option, but it doesnt actually use my option it just goes back to default. This website is like a form filling interface so i need to save it at the end, but firefox doesnt allow me to do that either.
    It works on google chrome fine so i doubt its a problem with the website. I have only just installed firefox 8.1 and havent changed any settings or applied any addons.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    In Firefox 4 and later Safe mode disables extensions and disables hardware acceleration.
    *http://kb.mozillazine.org/Safe_mode
    Try to disable hardware acceleration.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    If disabling hardware acceleration works then check if there is an update available for your graphics display driver.

  • Select box problem

    I have a simple drop down box with the select item out of db
    like if the value in my db is i then the user will see two line of <option value="1">1</option>,
    is that a simple way to handle this problem?
    <select name="year">
                                            <option selected value="${found.year}"> <c:out value="${found.year}"/></option>
                                            <option  value="1">1</option>
                                            <option value="2">2</option>
                                            <option value="3">3</option>
                                            <option value="4">4</option>
                                            <option value="5">5</option>
                                            <option value="6">6</option>
                                        </select>I don't want to use the method
    <c:if test="${found.year=='1'}">
    <option value="1" selected>1</option>
    <c:if test="${found.year!='1'}">
    <option value="1" >1</option>
    since if the select list is long , like to 100 then the code will turn to every long , should be have a better way , is that right??

    I try the follow, but the value out of my db never get select , what is wrong in the if condition??
    <%ArrayList<Integer> tyear = new ArrayList<Integer>();
                        for (int i = 1; i <= 10; i++) {
                            tyear.add(i);
    <select name="year">
                                            <% for (Integer num : tyear) {
                                                            String aY = Integer.toString(num);%>
                                            <c:if test="${found.year==aY}">
                                                <option selected value="${found.year}"> <c:out value="${found.year}"/></option>
                                            </c:if>
                                            <c:if test="${found.year!=aY}">
                                                <option value="<%= aY%>"><% out.println(aY);%></option>
                                            </c:if>
                                            <%}%>
                                        </select>Edited by: Hjava on Oct 26, 2011 11:27 PM
    The problem on this line , I don't get why is wrong!
    <c:if test="${found.year==aY}">

  • Select many check box problem

    I'm having a lot of trouble with a selectManyCheckBox. I've got a faces panelTabbedPane - and one of the tabs contains a selectManyCheckbox. All the data in the tabs applies to the same bean so I want to apply all the changes or none of them.
    If I don't have the h:form around the tab then the check boxes aren't initialised. However with the h:form when I try and submit the form the checkbox values don't get set on my bean.
    What am I doing wrong and how do I fix it? Any help would be appreciated.
    JSP containing the panel tabbed pane
        <h:form id="edit.form">
            <x:messages id="messageList" showSummary="true" showDetail="true" summaryFormat="{0}:" styleClass="error" />
            <x:panelTabbedPane title="#{msg['account.edit.tabs.title']}" >
                <f:subview id="tab1" >
                    <jsp:include page="editGeneral.jsp"/>
                </f:subview>
                    <h:form id="roles.form">
                <f:subview id="tab2" >
                            <jsp:include page="editRoles.jsp"/>
                </f:subview>
                    </h:form>
                <f:subview id="tab3" >
                    <jsp:include page="editPreferences.jsp"/>
                </f:subview>
                <f:subview id="tab4" >
                    <jsp:include page="editCustomers.jsp"/>
                </f:subview>
                <f:verbatim><br /></f:verbatim>
                <x:commandButton id="editButton" value="#{msg['account.update']}" action="#{selectedAccount.update}" title="#{msg['account.update.alt']}" />
                <x:commandButton id="cancel" immediate="true" value="#{msg['enable.cancel']}" action="cancel" title="#{msg['enable.cancel.alt']}" />
            </x:panelTabbedPane>
        </h:form>And the included JSP
    <x:panelTab label="#{msg['account.edit.tab.roles']}" title="#{msg['account.edit.tab.roles.title']}" >
        <h:panelGrid columns="2" >
            <h:outputLabel for="roles" value="#{msg['account.edit.role']}" />
            <h:selectManyCheckbox id="roles" value="#{selectedAccount.roles}" layout="pageDirection" styleClass="menuSelectMany" >
                <f:selectItems value="#{userPreferences.roles}" />
            </h:selectManyCheckbox>
        </h:panelGrid>
    </x:panelTab>Thanks

    What type does 'userPreferences.roles' represent in your included jsp?
    Is it a collection of Role classes returned as a SelectItem array?

  • "JPEG Options" Box Problem--Help!

    I am new to Lightroom and having a problem using the "Export Actions" function.  I am a wedding editor and I send thousands of files through the Bridge Photoshop>Image Processor every week.  Well now that I switched over to Lr, I am using the Export Actions function during exporting in order to run my Photoshop actions on the files.
    Here's what I do: I export Tiff files and save them as a Jpeg, while also running an Export Action.  As a Bridge image processor action, this worked perfectly fine (ie Photoshop opened the files, ran the action, saved, and closed).  Now that I am running the action through Lr as an Export Action, Photoshop displays a "JPEG Options" save box for EACH file that you must click "OK" in order to go on to the next file.  Again, I run thousands of files and I cannot click "OK" on each one.
    Why is this "JPEG Options" box suddenly appearing when it never used to?  How can I get Lr/Photoshop to run this action like normal (save and close without being prompted by me)?
    Additional Infor: I have Lightroom 2 and Photoshop CS3.
    When I create the droplets in Photoshop, I have "Override Action Open Commands" unchecked.
    [See "Problem with a Scott Kelby Action" post below for someone who had the same exact problem]

    Another thing you could do (although I'm sure you won't want to do it) is export TIFF images from Lightroom so that they include all of the Lightroom changes.  Then exit Lightroom and load those exported images into Bridge and run your action.
    I like Lightroom, and I use it every day.  But occasionally I find that it's easier to just forget about it and do all of the work in Photoshop.  This is probably because I haven't taken the time to really become proficient with Lightroom, especially integrating it with Photoshop.  So I just take the easy way out when I'm forced to do so.

  • Create Multi-Camera Source Sequence Options Box Problem in CS6

    Hello there; it seems in my CS6 i dont the complete box as the below:-
    i only have in points, Out points and Time codes ( I dont have the Audio and the remain box) as the above.
    Is anyone able to en-light me? as i have to do Multicam project as as possible
    Regards & Thanks

    that seems to be exclusive to the CC version. so you would either have to upgrade or find a work around.  you can manually sync the footage using markers or in points, or if doing this alot and you dont want to upgrade might look at pluraleyes.
    manual by in points: Setting up multi-camera Sequences in Premiere Pro CS6 | lynda.com - YouTube
    by marker:  Adobe Premiere Pro CC Tutorial | Performing Multi-Camera Editing - YouTube
    pluraleyes: Multicam edits in Premiere Pro CS5 using PluralEyes - YouTube

Maybe you are looking for