Question about making buttons

I've been struggling with formatting my website (http://www.lesill.com). I have posted pictures fine, but these are photos offered for sale and I can add paypal carts and add to cart buttons fine. The problem is that the Add to cart buttons, even the smallest are too big and each photo can be ordered in different sizes. I recently visited a site that has a perfect setup, but I can't figure out how to do this. The side was www.heartdogstudios.com . I have written the author asking how it was accomplished so I am hoping to hear back from him/her. If anyone here can help it would be appreciated.
Also, are there free shipping calculators that can be added?
Thanks Lee

Thanks for your help anyway Brad. At least we troubleshooted
as much as we could with it.
I'll see if I can contact RJ through his blog since he's the
evangalist on Captivate over at Adobe. Maybe he might know or at
least can tell me if it's different in Captivate 4. There are so
many new things that it's possible they are allowing quiz templates
and more freedom with the design.
Mine is on order as well. I can't wait!
Thanks again,
Kristen

Similar Messages

  • Quick question about making system calls

    hello all
    i have a simple quick question regarding making system calls. Basically I want to mimic the command "system" for perl. I am not quite sure how to do this for java.
    any feedback would be appreciated.

    look at:
    java.lang.RunTime

  • Qosmio X300-14F - Question about illumination buttons and XP downgrade

    Hello,
    I've got 2 questions concerning the laptop I bought 3 weeks ago.
    _*Question1*_
    There are 9 buttons above the F-keys. They're being lit. In the beginning they all worked fine, but recently I've found that only the buttons designed to work in a mediaplayer work (meaning: pause/play, stop, previous, next). The other buttons (mediacenter, (un)mute, illumination on/off, webcam, DOLBY) refuse to do anything except for making beeping noises.
    I'd like to be able to decide when to turn the illumination off/on without dragging the wireless flashcardsized-controller with me everywhere I go.
    Any leads on how to solve this are welcome!
    I tried this already:
    Start > all programs > TOSHIBA > utilities > Toshiba Assist > optimize > Toshiba Button Support
    But there's 2 problems with that. First of all I don't know where the executable is that dims/turns on the lighting. Second of all it still doesn't work for e.g. the dolby button. All it does is beep - loud.
    _*Question2*_
    I've been thinking about 'downgrading' from Windows Vista Home Premium to Windows XP since I'm tired of getting weekly BSODs and *daily* displaydriverfailures. I was concerned about not being able to find the drivers once I got XP on this laptop. I've looked on the official Toshiba website (this one :P), but there's only Windows Vista drivers?
    Thanks in advance!

    Hi
    1) The program that turns on and off the illumination is called dimmer.exe. That you should find in the Toshiba folder (C:\program files\Toshiba).
    If you assign this exe file with the button it should work again. If not, try to reinstall the Toshiba Value Added Package.
    On the Dolby button its the same, you must assign the right .exe file with the key.
    2) The point is that only Windows Vista is supported on this notebook and there are no XP drivers available. You can collect the drivers on external website but if you have problems with XP you should downgrade to Vista. The notebook is really fast enough for Vista. ;)

  • Question about print button

    Good morning everyone,
    Quick question for you this morning, im playing around with the print button and so far i get it to do what i want. Which is basically print in "FIT" mode like this:
    xfa.host.print(1, "0", (xfa.host.numPages -1).toString(), 0, 1, 0, 0, 0);
    now this takes care of people who press my custom print button, but i dont have control over the folks that might activate that from the print icon or from the print menu options.
    Now for this i know that using PRE:PRINT would solve it for sure, but i dont know how to write the code in there so it works.
    What i did at first is copy the print code above in that section, but if i press my Print button where the same code is, i create a endless loop.
    Im just trying to cover my self and make sure that what ever one of the 3 print choices they choose, i will be able to execute the code above and without any infinite loops
    Any ideas how i could set this up?
    Thank you very much again!!!

    Hi,
    you can disallow printing form the menu items or key combination with a bit of scripting.
    But first you need a variable you add under the form properties with a default value like 0.
    Lets name it "usedPrintButton".
    Ok, now the scripting part.
    There are 3 scripts in 3 different events neccassary. You can use all those events of your print button.
    1. click event
    // Modify the variable to imply user has started printing from this button
    usedPrintButton.value = "1";
    xfa.host.print(1, "0", (xfa.host.numPages -1).toString(), 0, 1, 0, 0, 0);
    2. prePrint event
    // Check the variable and cancel printing when it's 0
    if (usedPrintButton.value == "0") {
              xfa.event.cancelAction = true;
    3. postPrint event
    // Set the variable back to 0
    usedPrintButton.value = "0";
    Hope this helps.

  • Question about making an image as a background

    I am trying to make an image(picture) as the background of my application. I got a code from this forum. This code was written by paternostro, which is in reply to: Images as a background Oct 26, 2000 1:08 PM
    import java.awt.*;
    import java.awt.event.*;
    import com.sun.java.swing.*;
    public class Background {
    public static void main(String args[]) {
    new BackgroundFrame();
    class BackgroundFrame extends JFrame {
    Image im;
    JButton ok = new JButton("OK");
    JBackgroundPanel jbp;
    BackgroundFrame() {
    super();
    /* Get image */
    im = Toolkit.getDefaultToolkit().getImage("test.gif");
    /* Components should be added to the container's content pane
    Container cp = getContentPane();
    /* Add the window listener */
    addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent evt) {
    dispose(); System.exit(0);}});
    jbp = new JBackgroundPanel(im);
    jbp.add(ok);
    cp.add(jbp);
    /* Size the frame */
    setSize(200,200);
    /* Center the frame */
    Dimension screenDim =
    Toolkit.getDefaultToolkit().getScreenSize();
    Rectangle frameDim = getBounds();
    setLocation((screenDim.width - frameDim.width) /
    2,(screenDim.height - frameDim.height) / 2);
    /* Show the frame */
    setVisible(true);
    class JBackgroundPanel extends JPanel
    Image im;
    JBackgroundPanel(Image im)
    super();
    this.im = im;
    public void paintComponent(Graphics g)
    g.drawImage(im,0,0,this);
    Then I have a question. I was trying to make a layout manager (new GridLayout(3,0)) on jbp, then add some buttons up. But it make the program never show the background(picture) again. What should I do such that I can make the components on the frame ordered and also can see the background? Please help me, thank you very much!

    Woops! So jbp is the background Panel. Create a new
    panel, set the desired layout and add the required
    components to this. Set this panel to opaque(false),
    add it to jbp and add jbp to cp.
    Haven't tried it but it sounds like it would work.
    Thanks for helping, but I don't think it really works. Here is the code after adding jbp.opague(false)
    ======================================================
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Background {
    public static void main(String args[]) {
    new BackgroundFrame();
    class BackgroundFrame extends JFrame {
    Image im;
    JButton ok = new JButton("OK");
    JPanel jp = new JPanel();
    JBackgroundPanel jbp;
    BackgroundFrame() {
    super();
    /* Get image */
    im = Toolkit.getDefaultToolkit().getImage("test.gif");
    /* Components should be added to the container's content pane
    Container cp = getContentPane();
    /* Add the window listener */
    addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent evt) {
    dispose(); System.exit(0);}});
    jbp = new JBackgroundPanel(im);
    jbp.setLayout(new GridLayout(3,0));
    jp.add(ok);
    jbp.setOpaque(false);
    jbp.add(jp);
    cp.add(jbp);
    /* Size the frame */
    setSize(200,200);
    /* Center the frame */
    Dimension screenDim =
    Toolkit.getDefaultToolkit().getScreenSize();
    Rectangle frameDim = getBounds();
    setLocation((screenDim.width - frameDim.width) /
    2,(screenDim.height - frameDim.height) / 2);
    /* Show the frame */
    setVisible(true);
    class JBackgroundPanel extends JPanel
    Image im;
    JBackgroundPanel(Image im)
    super();
    this.im = im;
    public void paintComponent(Graphics g)
    g.drawImage(im,0,0,this);

  • Question about making tables in Pages :-)

    Hello! I can't resize tables in Pages. I can drag them downwards but not horizontally! Anyone know why or what I can do about it? Thanks!

    HI promises,
    Do you men you can increase the size of a table vertically, but not horizontally?
    Tables are inserted as inline objects. Inline objects are treated like text, and are bound by the text margins set for the document (or for a layout within the document). When inserted, their width defaults to the maximum allowed.
    In the image, you can see the margin stops at 1 and 7.5 inches (indicated by blue arrows). You can't make the inline table any wider, but you can make it narrower.
    Click away from the table to deselect any cells that may be selected, then click once on the table to select the whole table. Use the mouse to grab the handle at the center of the right edge of the selected table, and drag left to decrease the width of the table. All columns will narrow proportionally:
    Move the smaller table left or right using the Text formatting tools avilable—the alignment buttons or a tab character and a tab stop.
    Regards,
    Barry

  • Question about making printible reports by reading data from database

    We have a pressure test system which we want analyze and plot the instant pressure values in a pre-defined time interval. After each test we want the record the test results along with the other information(date, time, operator name, test no, product type, product number, etc.) added by the system operator. The data will be recorded to an access data base. Doing that, we want to make test results archive which we can make search within, to list the past test results, searching by date, seraching by product number, or searching by any other information in the database. Plus, in the future, we want to be able to take reports of these past test results, including the pressure/time graph and other information added by the system operator. Also we want to set the report format.
    My question is, is it possible to do this with LABVIEW 8.2? Do we need any toolkits or add-ons?
    Regards

    Hi, Hasan.
    That would be an excellent use of LabVIEW. At the very least, you'll probably want to get the Database Connectivity Toolkit, and depending on your needs you may also want the Report Generation Toolkit. There are a lot of tools in the LabVIEW Development Environment for generating reports dynamically, but the Report Generation Toolkit includes a lot of advanced functionality not included in regular LabVIEW installations.
    That said, however, I really recommend you speak with one of our sales representatives to make sure you have everything you need. Since I know so little about how you'd be implementing each step of that process, I'm reluctant to guarantee it, and one of our representatives can tell you with much more certainty. You can get in touch with one from ni.com/contact.
    Good luck! Have a nice evening.
    Sarah K.
    Search PME
    National Instruments

  • Questions about making playlists

    I have 2000 songs in my library. some are christmas, some are show tunes, some are classical and most are pop/rock/etc.
    about 1500 are in this last catagory and i want to make a play list w/them on it--because i do not want my random play to hit upon a 14 minute classical piece or a christmas tune when i am mellowing in pop etc.
    many came from napster so are not attached to albums etc.
    my question is--is the only way i can create the list for these 1500 songs by literally clicking on each on and either dragging them into a playlist, or by highlighting them individually and then doing the create playlist function.
    since i want to create separate playlists for the holiday and classical anyway, is there some way to make those playlists and put them in a separate LIBRARY as well--in other words remove them from the current library and then automatically make a play list w/the remaining songs w/o having to highlight individual songs.
    does this make any sense.

    thanks. sounds like click and drag or highlight and do a new playlist are my only options for this volume of songs but that is fine.
    also thanks for the answer to the library question. when I thought about it, decided that was too much work--probably just need to resolve to work thru the 2000 songs to organize, theen all will be right w/my (iPod) world.
    thanks again

  • Question about Middle button on 'Nokia Stereo Head...

    Hi all,
    anyone knows whats the function of the middle button between the volume control buttons on the side of the earpiece?
    i tried clicking on it in various modes but nothing happened. couldn't find any documentation on the headset as well.. anyoen has any reference documentation or link on that button?

    I phoned Nokia care about this headset a few months ago and I was told that it only Has ONE button besides the volume keys, which is the button we use for voice commands, answering and so on(everything else is just there for us to fiddle??). On the N82 for some reason we can't skip tracks using this button which I think was CARELESS on Nokia's part. A headset should allow this at least.
    Show your appreciation. Hit that kudos button real hard

  • Question about Creating Buttons in InDesign CS5

    Now that InDesign CS5 has what I hope to find is a fairly robust interactive workspace, I've begun building a portfolio web site using the program.
    But I'm having trouble understanding how to create a text "next" button that has
    1.) a rollover state where "next" becomes bold and black
    2.) has an action associated with it that takes the viewer to the next state.
    In other words, once clicked, the "next" button should take the viewer from seeing the image of a brochure cover to an image of an inside spread.
    Any tips on how the Appearance section works in the Button palette, or where to go to find out?
    Should I be creating separate text "next" buttons for the Normal, Rollover and On Click states? And should these be sitting on different Layers?
    Maybe it's a combination of working with Animation, Buttons and Object States?
    It's sort of complex...
    I reviewed the "InDesign CS5 New Features" tutorial on lynda.com, which was great and gives some examples, but doesn't address my exact problem.
    Anyone working with this kind of scenario?
    Thanks, Steve

    Never mind. I figured it out. I can't believe how poorly designed this entire Adobe site function.
    Amazing...the screen says "Welcome sssttteeevvveee" in the top left corner, which, of course makes you think you're logged in, right?
    But no. You need to click on the login/register link under the black Forums box...like, why?
    Note to Adobe. TIme for a little rethink here.
    S.

  • Question about Menu buttons

    Hello all,
    I am in the middle of a project that has 3 menus 2 of wich have 10+ buttons.
    My problem is that 2 of the menus it is trickey to get the DVD player to select certain buttons.
    For some reason the selection jumps around in unecpected ways.
    The buttons are numbered properly but it makes no differance.
    Any ideas?

    At the bottom of the menu window there is a button that shows the button routing.  You can change to manual routing and adjust as needed.
    The actual number of the buttons doesn't matter.  (Button 1 can go "right" to button 5, etc.)

  • Help with a question about making/running .jar files.

    First i have a question, can i make a .jar file that can run on a computer without JRE installed. And if i can, how do i make it. I have tried to make it on my computer, that has JRE but i keep getting the error when i run it: Exception in thread "main" java.lang.NoClassDefFoundError: Sample\FileSearchAnd im using the command:
    jar cvfm jarname.jar directory\manifest.txt directory\FileSearch.class directory\FileNode.classIt says it creates the .jar but is unable to run it.

    dford425 wrote:
    First i have a question, can i make a .jar file that can run on a computer without JRE installed. No, not unless you package the JRE with your dist. Hence the name JRE (Java Runtime Environment).
    And if i can, how do i make it. I have tried to make it on my computer, that has JRE but i keep getting the error when i run it: Exception in thread "main" java.lang.NoClassDefFoundError: Sample\FileSearch
    That simply means your not pointing the runtime to the classes. Set your CLASSPATH environment variable correctly and it will run (given you have a JRE which it appears you do).
    And im using the command:
    jar cvfm jarname.jar directory\manifest.txt directory\FileSearch.class directory\FileNode.classIt says it creates the .jar but is unable to run it.

  • Question about making PDF files expirable using contnet manager

    Hello
    I would like to know if I enable users of my website to view PDF files online  can I make the PDF files using Content Server to expire once the user logs off from my website and his session end?
    Thanks
    Yoav

    That's a fairly general question.  Have you read the basic white paper on the product site: http://www.adobe.com/products/contentserver/ ?

  • Question about back button and Onload function in a jsp

    Hi All,
    I am having two jsp pages, say a.jsp and b.jsp. I had a javascript onload function which refreshes all the fields in a.jsp. When i enter some values in a.jsp, based on those values i will be getting the results in b.jsp. Now when i click the back button in b.jsp, it will go to a.jsp again. The problem i am facing is when i click this back button, because of the onload function in a.jsp all the fields in a.jsp are getting refreshed but i want the values which i entered previously in that page. Is there a way that i can do this such that the onload function will not run when i come to that jsp by clicking the back button.
    Also i would like to know why a.jsp is reloading when we click the back button in b.jsp and coming to a.jsp. Is this way how back button will function. I am not sure of it. Plz clarify my doubts..
    Thx.....

    Normally it is not advisable to use the browser back button rather if there is a need we should
    implement the back button functionality.
    For e.g
    In b.jsp
    <head>
    </head>
    <script language="Javascript">
    function fnBack()
      document.frmHeader.action = "a.jsp";
      document.frmHeader.submit();
    </script>
    <form name="frmHeader" method= "post">
    <input type="hidden" name="hdCheckFromB" value="Y">
    <p>
    <input type="button" name="btnBack" value="Back" onClick="javascript:fnBack();">
    </p>
    </form>
    </body>---------------------------------------
    Now , in a.jsp
    <%
    String strBackParameter = requst.getParameter("hdCheckFromB");
    %>
    // Now if strBackParameter is carrying a value "Y" , then we know its from B else body onLoad refresh-------------------------------------
    Hope this helps.
    Thanks

  • Question about "operations" button

    Hello all,
    Before my main menu is displayed in the Flow chart I want an 8 second clip to be the first thing that plays and for the viewers not to be able to skip it. So from my blue disc in the flow panel I link to this clip in my timeline. When I select "none' for operations it still allows me to use the "next" button to get to the main menu and skip my 8 second clip.
    What am I doing wrong?
    Thanks,

    Thanks again for your help
    I do have DVD RW's so I will be putting them to good use.
    I just burned my project and everything went well except.....
    All my chapter links play fine but I don't have any control options, i.e. fast forward, back to the main menu etc. When I went back to the project I did see that the "user operations" was set to none for all my links to the various chapters in my timeline. When I tried to open up the dialog box where I could change it to "all" it simply would just not open, no error message as well.
    What am I doing wrong?
    Thanks

Maybe you are looking for