Using s:Range to create a life bar

Hi, im attempting to use a Range control to make a life bar, Binding the maximun and value properites to an integer. No matter what I am going it seems the Maximun properties will only go to 100.
This shows up on the screen but the bar is 1/2 full, I would expect it to be 1/4 full. Am I missing how this control works or am I using it wrong? Any insight would be greate apprieciated.
Thanks!

but for some reason I can't stop imovie, panning in and out on individual photo's/clips of my film, so whereas when i flick through the photo's on my camera, it creates a pretty good stop motion film, but on movie it looks as though I've held everything by hand not using a tripod, making it jaunty and not playing well.
iMovie '08 installs with the Ken Burns Effects preference selected. When you add a photo, it is automatically added by turning it into a "still frame" sequence of frames at the default length with the KBE applied. To get rid of it make sure your "Project" aspect ratio matches the aspect of your photos. Then select the photo sequence in the "Project" window, select the "Crop" tool, and choose the "Fit" option in the preview window. This will get rid of the KBE. Now all you have to do is select any single frame in your "Project" sequence (or multiple frames if you want to "slow" down the final motion sequence in your project), split the sequence, and then discard the unwanted frames. (You could also use Command-C to temporally "store" your selected frame(s) to memory, discard the entire sequence and then use Command-V to paste the frame(s) in memory back into the project window at the proper location in your "timeline.")

Similar Messages

  • Which BW variable is used for date(range) when creating a portal service

    Hi,
    Can any one please let me know which BW variable is to be used for date(range) when creating a portal service for searching based on dates.
    Thanks
    Abhai

    Hi Arun,
    its just a portal service which would be called when  searching a document created on a particular date or betwwen a range of date.so what i require is which BW variable to be used when handling range.As for variable technical name we use VAR_NAME_I  and for single value variable we VAR_VALUE_EXT_I
    in the similar manner i want BW variable to be used for range of values.
    Thanks
    Abhai

  • How to use CSS to create horizontal nav bar in Dreamweaver CS6

    How to use CSS to create horizontal nav bar in Dreamweaver CS6

    One of the ways to do it is this: Tryit Editor v1.9
    You can also use floats to get something to the same effect.

  • How can I create a status bar at the bottom of a window ?

    I would like to create a status bar at the bottom of my main window similiar to "Internet explorer" has. I thought of using a tool bar but I can't see how to keep it positioned at the bottom of the window when the window is resizable. Any other ideas on how to do this the bar only needs to contain a small amout of text and maybe an icon or two.

    CVI doesn't have a status bar control on UI element like the one available in Visual Studio++. The best way to replicate this is most like through a string control that is resized and positioned to remain at the bottom of the window and colored to look appropriately. I have also seen the combination of a decoration and a text message used.
    Best Regards,
    Chris Matthews
    Measurement Studio Support Manager

  • Set Maximum size for a subpanel created with splitter bars in LV8

    Does anyone know how to set the Maximum size for a subpanel created with asplitter bar? If I show one cluster in the subpanel and use the scroll bar to scroll, I can see more (blank) area than I want. I just want the user to be able to scroll a cluster within a subpanel while the cluster is larger than the view area of the subpanel. I don't want to let the user scroll outside the cluster.
    Ravi Beniwal

    I apologize for the mixup in terminology. Please read Pane wherever the word Subpanel was used.
    Please see the attached VI for a description of my problem.
    I would really appreciate any help with this.
    Ravi Beniwal
    Attachments:
    Pane Scrolling Problem.vi ‏10 KB

  • Website help: Creating a side bar then the main part of the webpage??

    Hi guys, im currently making a website in dreamweaver but ive coe into some problems and theyve got me stumped...
    basically, i have been using dreamweaver and ive managed to create a side bar for my website with separate div tages etc and now i want to create the main body of the page, eg the menu and the images but i cant get it do do what i want it to do...
    when i insert the div tag for the main body part of my page it is placed above the side bar when i want it to the side of it, inline with it.... /: its fustrting cust ive been able to style all of the side bar and ive wanted to complete the rest of the site but currently im unable to...

    OK, here is how you need to look at your page:
    The outermost defined area is the body. Generally, to set up a website, you create basic "applies to all" stuff in the body definitions in your style sheet:
    For example:
    body {
              font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
              color: #000;
              background-color: #FFFFFF;
              margin: 20px 0;
              padding: 0px;
    That's going to create normal paragraph text in the website as Lucidia Sans (or Lucidia Grande if the client doesn't have that defaulting to sans-serif if that is not available), text color is black, background is white, top margin is 20 pixels, clear left and right margins and clear all padding.
    Now, you need to enclose the "website" into something that encases everything and I usually call that an outer wrapper.
    .outer-Wrapper {
              width: 80%;
              max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
              min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
              background: #FFF;
              margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
    Explanations in comments.
    Now, you set up the rest of your page:
    .header {
    #nav {
              margin-left: 20%;
    /* ~~ These are the columns for the layout. ~~
    1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
    2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.
    3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
    4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.
    .sidebar {
              float: left;
              width: 20%;
              background-color: #cccccc;
              padding-bottom: 10px;
              color: #FFF;
    .content {
              padding: 10px 0;
              width: 80%;
              float: left;
              color: #000;
    Lastly, you want your footer to be below both columns, so you define that:
    .footer {
              padding: 10px 0;
              position: relative;/* this gives IE6 hasLayout to properly clear */
              clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
              background-color: #eeeeee; /*This makes it gray so that it is separated from the rest of the page, but isn't too dark for black text */
    Now, let's go to the html:
    Define your page. Dreamweaver will allow you to define a page as XHTML 1.0 transitional or strict or XHTML 1.1, HTML 4.01 transitional or strict or HTML5. Older versions of Dreamweaver have no HTML5 and may have older versons of HTML, but I either use XHTML 1.0 transitional or HTML5. There are good reasons for this.
    Dreamweaver will set up the site definitions depending on what you choose above the <head> area.
    Within the <head> area, you define the character set, give a title (make it unique for each page in your website) and point to your style sheet. You can use Dreamweaver's "Attach stylesheet." Any calls to JavaScript go here as well. If you have a separate style sheet for a drop-down menu structure or any other navigation, it will go there as well. Remember to close the <head> tag.
    Now, we define the body and go into the page:
    <body>
    <div class="outer-Wrapper">
    <div  ="header"> Header Goes Here</div>
    <div id="nav">Navigation placed here</div>
    <div class="sidebar">Your sidebar will go here</div>
    <div class="content">Your main content goes here and it will live to the right of your sidebar on the left</div>
    <div class="footer">I generally put the copyright information here and sometimes additional navigation in the footer</div>
    <div> <!-- Ends the outer-Wrapper -->
    </body>
    </html>
    This will absolutely work.

  • How to create a vertical bar chart from a table? (PHP, HTML and CSS)

    Hi everyone,
    I have created a table and wish to proceed to do it even better in terms of analysis pattern. I want
    to create a vertical bar chart from the created table but I dunno how to start it.
    Here is the code for the table:
    <?php
    $gpa11=$_REQUEST['gpa11'];
    $gpa12=$_REQUEST['gpa12'];
    $gpa21=$_REQUEST['gpa21'];
    $gpa22=$_REQUEST['gpa22'];
    $gpa31=$_REQUEST['gpa31'];
    $gpa32=$_REQUEST['gpa32'];
    $gpa41=$_REQUEST['gpa41'];
    $gpa42=$_REQUEST['gpa42'];
    $gpa51=$_REQUEST['gpa51'];
    $gpa52=$_REQUEST['gpa52'];
    ?>
    <!doctype html>
    <html lang="en">
       <head>
          <meta charset="utf-8">
          <meta name="viewport" content="width=1024">
          <title>Feng Mentor Mentee</title>
       </head>
       <body>
          <div id="wrapper">
             <div class="chart">
                <h3>GPA Performance Graph</h3>
                <table id="data-table" border="1" cellpadding="10" cellspacing="0"
                summary="The performance of students throughout the years in university">
                   <thead>
                      <tr>
                         <td> </td>
                         <th scope="col">Year 1</th>
                         <th scope="col">Year 2</th>
                         <th scope="col">Year 3</th>
                         <th scope="col">Year 4</th>
                         <th scope="col">Year 5</th>
                      </tr>
                   </thead>
                   <tbody>
                      <tr>
                         <th scope="row">Sem 1</th>
                         <td><?php echo $gpa11;?></td>
                         <td><?php echo $gpa21;?></td>
                         <td><?php echo $gpa31;?></td>
                         <td><?php echo $gpa41;?></td>
                         <td><?php echo $gpa51;?></td>
                      </tr>
                      <tr>
                         <th scope="row">Sem 2</th>
                         <td><?php echo $gpa12;?></td>
                         <td><?php echo $gpa22;?></td>
                         <td><?php echo $gpa32;?></td>
                         <td><?php echo $gpa42;?></td>
                         <td><?php echo $gpa52;?></td>
                      </tr>
                   </tbody>
                </table>
             </div>
          </div>
       </body>
    </html>
    Here's the look:
                                                              GPA Performance Graph                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
    Year 1
    Year 2
    Year 3
    Year 4
    Year 5
    Sem 1
    Sem 2
    Please help me on this because this is my 1st project on php.

    Hi
    Are you using BI query? If yes then follow the steps -
    1. Take Sales org in rows of BI query. & take invoice type & Key figure in Columns.
    2. In VC use this query & drag chart from the output of this query.
    3. Right click on chart & go to 'Configure Element'. There select Chart Type as 'Bar chart'
    4. Below that you will get default option as clustered, there you select 'Stacked'
    5. Create Data series as per your requirement.
    6. Arrange proper layout of the model & then deploy.
    You will get required output in stacked format.
    Regards
    Sandeep

  • Creating a status bar?

    How could I create a status bar that looks like the one of Internet Explorer?
    I thought about deactivated JToggleButton with pressed state, but the shadow of it is too strong.
    Somehow I need to have the separators in the status bar to look like in Windows applications, for instance like used in Internet Explorer.

    It is not an exact match.
    The separators look slightly thicker and the shadows are softer in IE.
    However this should help.
            JPanel statusbar = new JPanel();
            statusbar.setLayout(new BoxLayout(statusbar,BoxLayout.X_AXIS));
            statusbar.setPreferredSize(new Dimension(100,30));
            JPanel pan1 = new JPanel();
            pan1.setBorder(BorderFactory.createBevelBorder(1));       
            pan1.setPreferredSize(new Dimension(100,30));
            statusbar.add(pan1);
            JPanel pan2 = new JPanel();
            pan2.setBorder(BorderFactory.createBevelBorder(1));       
            pan2.setPreferredSize(new Dimension(30,30));
            statusbar.add(pan2);
            JPanel pan3 = new JPanel();
            pan3.setBorder(BorderFactory.createBevelBorder(1));       
            pan3.setPreferredSize(new Dimension(30,30));
            statusbar.add(pan3);
            JPanel pan4 = new JPanel();
            pan4.setBorder(BorderFactory.createBevelBorder(1));           
            statusbar.add(pan4);
            getContentPane().add(statusbar, BorderLayout.SOUTH);There is another BorderFactory.createBevelBorder( ... ) method that will allow you to change the color of the shadows.
    If you want them thicker you'll probably have to use a custom border.
    Derek

  • How to create a progress bar showing status on timeout of TCP Read function

    Is there any way of creating a progress bar showing the status of a 'TCP Read timeout' time ... ?
    I'm sending a data request to an intranet server via TCP Write, and then using TCP Read with a 2 min. timeout to receive the requested data. During this time i want to show the actual progress of the timeout in a progress bar.
    Can this be done?
    And do i have to implement some kind of multitasking to make it happen?
    TIA

    Soulstorm wrote:
    > Is there any way of creating a progress bar showing the status of a
    > 'TCP Read timeout' time ... ?
    >
    > I'm sending a data request to an intranet server via TCP Write, and
    > then using TCP Read with a 2 min. timeout to receive the requested
    > data. During this time i want to show the actual progress of the
    > timeout in a progress bar.
    > Can this be done?
    > And do i have to implement some kind of multitasking to make it
    > happen?
    It can be done and you need to do some multitasking yes, but that is
    quite easy in LabVIEW. A separate loop or subVI with loop will be
    responsible for the progress bar. Set its scale to 0 and the number of
    seconds of your timeout. In parallel to the TCP Read let this loop or VI
    execute reading the time every few
    seconds and calculating the
    difference to its start time, passing this value to the progress bar
    slider. Have an extra boolean global which aborts the loop and set this
    boolean to FALSE before starting the loop/VI and TCP Read and setting it
    to TRUE on return of the TCP Read.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • How to create 2 scroll bar in 2 canvas

    Hello All,
    I will appreciate if somebody knows how to create 2 scroll bars in 2 Content canvases and all items text item belongs to one data block.
    In data block property it shows only one scroll bar. Their is no property of scroll bar in canvas.
    Regards,
    Atif

    Go to the layout editor.
    Take the Stacked canvas tool in the toolbox
    draw a stacked canvas on the content canvas (the stacked can could be larger than the content one)
    edit you item properties to display on the content canvas
    adjust the window to the same width and weight properties than the content canvas.
    The simplest way it to use the datablock wizard to create the data block, then indicate to show items not on the content canvas but the stacked canvas.
    Francois

  • Rtp from Business rule to be passed as template parameter using Member Range DTP type

    This is what I am trying to do. Use a template to define a part of the code and restrict the code from running for a particular Month. I have created a member range DTP and defined default values in it to exclude the one month I do not want.
    I have set up the template in my rule as given below and basically the parameter that is to be passed is a runtime prompt (rtp_Month), which I have selected.
    %Template(name:="Test",application:="XXXX",plantype:="Plan1",dtps:=("StartMonth":=([[Period.{rtp_Month}]])))
    Now when i run this, what will happen? Will the rule just skip the template part when rtp_month is the one i have excluded in the member range?
    OR, is this not the way to do what i am intending. I see a 'restricted value' type, but not sure how to get it to work.
    Thanks in advance.

    Thanks for the reply Sree.
    This is what I am trying to do.
    FIX ({rtp_StartMonth}:Aug)
        Calculations
      ENDFIX
    FIX(Sep)
    Calculations
    ENDFIX
    Now, when rtp_Month is selected as Sep, the first block of code should not run. So the template I created has the first fix block like,
    FIX ([Startmonth]:Aug)
        Calculations
      ENDFIX
    So, final BR code:
    %Template(name:="Test",application:="XXXX",plantype:="Plan1",dtps:=("StartMonth":=([[Period.{rtp_Month}]])))
    FIX(Sep)
    Calculations
    ENDFIX
    I am assuming: if i use the range DTP type and exclude 'sep' while defining the default values, the rule would bypass the template and run my second block of code.
    Is this assumption wrong?

  • Number range not created in SNRO for new created Z-Infoobject

    hello all,
    I created a Z Infoobject of a SAP delivered infoobject, basically I went to RSD1 used template 0COSTCENTER and creater a Z object of same to add few more objects as attr and test something.
    Now I am trying to run the FM "RSD_IOBJ_GET" to get the number range, which I am able to do succesfully by using the ZINFOOBJECt name and object version "A" and I_BYPASs_BUFFER = "X". i get the number range, go to tcode SNRO and input BIM and the number range i got from previous FM but it says the number range does not exist?
    My question is when is the number range created? I am trying to improve load time by doing the number range buffering.
    Please let me know, thanks in advance for replies.
    Thanks

    Hi ,
    When you use this FM "RSD_IOBJ_GET" , the number range object will be in table "E_S_VIOBJ". Double click on this and look at the number in column "NUMBRANR". Add the "BIM" in front of that number to get the required number range. Then go to tcode SNRO. In the field -"OBJECT", provide this number range object (for eg . BIM0076070). Then click on display or maintain. This will give you the Number range object for the master data infoobject and also the details if it is bufferred or not. You can follow up accordingly then.
    Hope you followed the same process to get the number range object.
    Also, have a look on the below link to get details :
    "http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0a6e3ff-f000-2d10-b59d-8ef35e248f83?quicklink=index&overridelayout=true"
    Regards,
    Sarika

  • Using 5.0 on XP. Location bar is blank most of the time. I used to be able to copy location to paste link into other documents - no more. Where'd the info go?

    I'm using 5.0 on XP. Location bar is blank most of the time. I used to be able to copy location to paste as link into other documents - no more. Where'd the info go? Example: My home page is "Google.com." "http://www.google.com/webhp?sourceid=navclient-ff" used to display in the location bar if I clicked on the "home" icon. Now it goes to the page ok, but a faint prompr "Go to a Webpage" appears where the URL used to be. Now if I want to copy/ paste the link I have to find the page on Google Chrome and do it from there which requires extra steps. Did I inadvertently change an "option setting" or do something else to cause this?

    -> go to View Menu -> Toolbars -> select "Navigation Toolbar"
    -> go to View Menu -> Zoom -> click "Reset"
    -> go to View Menu -> Page Style -> select "Basic Page Style"
    -> go Tools Menu -> Clear Recent History -> Time range to clear: select EVERYTHING -> click Details (small arrow) button -> place Checkmarks on ALL Options -> click "Clear Now"
    -> go to Help Menu -> select "Restart with Add-ons Disabled"
    Firefox will close then it will open up with just basic Firefox. Now
    -> go to Tools Menu -> Add-ons -> Extensions section -> REMOVE any Unwanted/Suspicious Extension (add-ons) -> Restart Firefox
    You can enable the Trustworthy Add-ons later. Check and tell if its working.

  • To create a status bar

    hai friends,
    how can we create a status bar in a window/frame/textbox.

    I got this answer. Any one have other choices..
    class MenuHelpTextAdapter implements ChangeListener
       private JMenuItem menuItem;
       private String helpText;
       private JLabel statusBar;
       public MenuHelpTextAdapter(JMenuItem menuItem, String helpText, JLabel statusBar)
          this.menuItem = menuItem;
          this.helpText = helpText;
          this.statusBar = statusBar;
          menuItem.addChangeListener(this);
       public void stateChanged(ChangeEvent evt)
          if (menuItem.isArmed())
             statusBar.setText(helpText);
          else
             statusBar.setText(" ");
    }The code that creates the adapters for the menu items is quite simple:
    new MenuHelpTextAdapter(item1, "Help text for item 1", statusBar);
       new MenuHelpTextAdapter(item2, "Item 2 info", statusBar);Using this adapter -- as an inner class in this case -- we can create a complete sample program:
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class StatusBarTest
       JLabel statusBar;
       JMenuItem item1;
       JMenuItem item2;
       private void init()
          JFrame frame = new JFrame("Status Bar Test");
          JMenuBar menuBar = new JMenuBar();
          frame.setJMenuBar(menuBar);
          JMenu fileMenu = new JMenu("File");
          menuBar.add(fileMenu);
          item1 = new JMenuItem("Item 1");
          item2 = new JMenuItem("Item 2");
          fileMenu.add(item1);
          fileMenu.add(item2);
          Container contentPane = frame.getContentPane();
          contentPane.setLayout(new BorderLayout());
          contentPane.add("Center", new JButton("Main application area"));
          statusBar = new JLabel(" ");
          contentPane.add("South", statusBar);
          new MenuHelpTextAdapter(item1, "Help text for item 1", statusBar);
          new MenuHelpTextAdapter(item2, "Item 2 info", statusBar);
          frame.setSize(400,400);
          frame.setVisible(true);
       public static void main(String[] args)
          StatusBarTest t = new StatusBarTest();
          t.init();
       class MenuHelpTextAdapter implements ChangeListener
          private JMenuItem menuItem;
          private String helpText;
          private JLabel statusBar;
           public MenuHelpTextAdapter(JMenuItem menuItem, String helpText,
           JLabel statusBar)
             this.menuItem = menuItem;
             this.helpText = helpText;
             this.statusBar = statusBar;
             menuItem.addChangeListener(this);
          public void stateChanged(ChangeEvent evt)
             if (menuItem.isArmed())
                statusBar.setText(helpText);
             else
                statusBar.setText(" ");
    }

  • Create a scale bar? Thoughts?

    Hi
    I was wondering if anyone has thought about the best way to create a scale bar for a photo, that is automatically the right size.
    My photos have an exif field "Subject Distance" which, along with the sensor size and the lens length, could be used to create a scale bar that can be put into a photo.
    I am uncertain whether it would be better to try to do this in Photoshop, or to build a frame in In Design. It would be really wonderful if I could figure out how to add the scale bar after I crop the image (since I have a lot of images already cropped), but that might be asking too much?
    Any thoughts before I explore all the blind alleys?
    FWIW, I am quite comfortable scripting in AppleScript, but have never tried the JavaScript abilities for Photoshop (a big learning curve, I would guess).
    Thanks
    Alan

    I researched this for a client. The good news is if you have Photoshop Extended it is easy for a script to set the scale and create a scale bar.
    The bad news is that although the idea that you can determine the subjects scale from the exif data may work in theory I could not use that info to determine the scale with any accuracy. If you are just working with one camera you may be able to come up with something using emprical data but I just don't think it is possible to create a general method that works for any camera.
    Another issue I found is some camera makers don't give accurate info on sensor size. Or that the full sensor is not used to create the image. Also in my test with a limited number of cameras most did not record the same subject distance I expected from where I had the lens focused.
    To me a scale bar implies accuracy so I dropped the project.

Maybe you are looking for