Aligning of UI Controls

Hi,
I'm developing an occasionally connected application for handheld devices using NetWeaver Mobile 7.1.
Suggest me how to align a transparent container control (which inturn has other controls say 3 Action buttons) exactly to the bottom or top of the screen.
I need position the controls absolutely on the screen by assigning top and left values but I could not find such properties for the controls during dosing time. How it can be achieved.
Thanks in advance.
Regards,
DVR.

Hi Vinodh,
               In Netweaver Mobile 7.1, absolute positioning of controls is not supported. The UI layouts specify the layouting of the controls on the screen.
The UI layouts namely grid & flow can be set for the transparent container also and then controls can be put according to the layout.
Regards,
Nipun

Similar Messages

  • Aligning Rectangles with Controls on the screen

    Happy New Year. Hope everyone enjoyed the holidays !
    I installed an application I developed in Visual Studio C# on some new laptops with wider higher resolution screens and sent them into the field. Everything works fine with the following exception. A key component to this application is the entry of time
    spent on customer sites. It is entered in 15 minute increments.  To aid the employee in entering the time I use radio controls and display the implied time in a graphic bar below the controls.
    When the same data is entered on one of the new laptops the rectangles no longer align with the correct radio controls. For example:
    The time is split into 24 hours in 15 minute increments. So the following loop works. The color of the rectangle is controlled by an entry in an array  initialized earlier in the code.  The Radio controls are located 20 units apart according the
    x,y coordinates in the radio control location property. So I make the width of the rectangle = 5 (20/4 fifteen minute segments) and calculate the left position. 
    So the question is: Why does this work on the old laptops, works on my development PC regardless of what resolution I set the screen, but does NOT align properly on the new laptops?
    Rectangle r = new Rectangle(2, 2, 20, 10); //left,top,width,heigth
    int width = 5;
    int top = 2;
    int height = 10;
    Bitmap bmp = new Bitmap(hourlyPictureBox.Width, hourlyPictureBox.Height);
    Graphics g = Graphics.FromImage(bmp);
    g.PageUnit = GraphicsUnit.Pixel;
    for (i = 0; i <= 100; i++)
        r = new Rectangle(4 + (i * width), top, width, height); //left,top,width,heigth
       if (slot[i] == 0)
              g.FillRectangle(Brushes.White, r);
       if (slot[i] == 1)
              g.FillRectangle(Brushes.red, r);
          ........so on and so forth for all the colors
    hourlyPictureBox.Image = bmp;
    Hopefully a simple question for someone who knows what they are doing. :=)
    Thank you in advance for your help in this matter.
    Rob

    Well.....after a couple of hours of frustration I found out that using floating # does not help. Everything had to work out to an integer so things would line up on each 15 minute increment.
    I also never figured out how to loop thru and reference the radio buttons, so a bunch of hard coded crap fixed my problem.  Code is ugly, but works.
    Thank you for heading me in the right direction to know what to look at. Devil is in the details.
    if ((radioButton54.Left) - (radioButton30.Left) > 600)
                    width = 7;
                    offset = 12;
                    radioButton2.Left = radioButton1.Left + (width * 4);
                    radioButton3.Left = radioButton2.Left + (width * 4);
                    radioButton4.Left = radioButton3.Left + (width * 4);
                    radioButton5.Left = radioButton4.Left + (width * 4);
                    radioButton6.Left = radioButton5.Left + (width * 4);
                    radioButton7.Left = radioButton6.Left + (width * 4);
                    radioButton8.Left = radioButton7.Left + (width * 4);
                    radioButton9.Left = radioButton8.Left + (width * 4);
                    radioButton10.Left = radioButton9.Left + (width * 4);
                    radioButton11.Left = radioButton10.Left + (width * 4);
                    radioButton12.Left = radioButton11.Left + (width * 4);
                    radioButton13.Left = radioButton12.Left + (width * 4);
                    radioButton14.Left = radioButton13.Left + (width * 4);
                    radioButton15.Left = radioButton14.Left + (width * 4);
                    radioButton16.Left = radioButton15.Left + (width * 4);
                    radioButton17.Left = radioButton16.Left + (width * 4);
                    radioButton18.Left = radioButton17.Left + (width * 4);
                    radioButton19.Left = radioButton18.Left + (width * 4);
                    radioButton20.Left = radioButton19.Left + (width * 4);
                    radioButton21.Left = radioButton20.Left + (width * 4);
                    radioButton22.Left = radioButton21.Left + (width * 4);
                    radioButton23.Left = radioButton22.Left + (width * 4);
                    radioButton24.Left = radioButton23.Left + (width * 4);
                    radioButton25.Left = radioButton24.Left + (width * 4);
                    st1.Left = radioButton1.Left - 4;
                    st2.Left = radioButton2.Left - 4;
                    st3.Left = radioButton3.Left - 4;
                    st4.Left = radioButton4.Left - 4;
                    st5.Left = radioButton5.Left - 4;
                    st6.Left = radioButton6.Left - 4;
                    st7.Left = radioButton7.Left - 4;
                    st8.Left = radioButton8.Left - 4;
                    st9.Left = radioButton9.Left - 4;
                    st10.Left = radioButton10.Left - 4;
                    st11.Left = radioButton11.Left - 4;
                    st12.Left = radioButton12.Left - 4;
                    st13.Left = radioButton13.Left - 4;
                    st14.Left = radioButton14.Left - 4;
                    st15.Left = radioButton15.Left - 4;
                    st16.Left = radioButton16.Left - 4;
                    st17.Left = radioButton17.Left - 4;
                    st18.Left = radioButton18.Left - 4;
                    st19.Left = radioButton19.Left - 4;
                    st20.Left = radioButton20.Left - 4;
                    st21.Left = radioButton21.Left - 4;
                    st22.Left = radioButton22.Left - 4;
                    st23.Left = radioButton23.Left - 4;
                    st24.Left = radioButton24.Left - 4;
                    pm13.Left = radioButton13.Left - 4;
                    pm14.Left = radioButton14.Left - 4;
                    pm15.Left = radioButton15.Left - 4;
                    pm16.Left = radioButton16.Left - 4;
                    pm17.Left = radioButton17.Left - 4;
                    pm18.Left = radioButton18.Left - 4;
                    pm19.Left = radioButton19.Left - 4;
                    pm20.Left = radioButton20.Left - 4;
                    pm21.Left = radioButton21.Left - 4;
                    pm22.Left = radioButton22.Left - 4;
                    pm23.Left = radioButton23.Left - 4;
                    pm24.Left = radioButton24.Left - 4;
                    radioButton31.Left = radioButton30.Left + (width * 4);
                    radioButton32.Left = radioButton31.Left + (width * 4);
                    radioButton33.Left = radioButton32.Left + (width * 4);
                    radioButton34.Left = radioButton33.Left + (width * 4);
                    radioButton35.Left = radioButton34.Left + (width * 4);
                    radioButton36.Left = radioButton35.Left + (width * 4);
                    radioButton37.Left = radioButton36.Left + (width * 4);
                    radioButton38.Left = radioButton37.Left + (width * 4);
                    radioButton39.Left = radioButton38.Left + (width * 4);
                    radioButton40.Left = radioButton39.Left + (width * 4);
                    radioButton41.Left = radioButton40.Left + (width * 4);
                    radioButton42.Left = radioButton41.Left + (width * 4);
                    radioButton43.Left = radioButton42.Left + (width * 4);
                    radioButton44.Left = radioButton43.Left + (width * 4);
                    radioButton45.Left = radioButton44.Left + (width * 4);
                    radioButton46.Left = radioButton45.Left + (width * 4);
                    radioButton47.Left = radioButton46.Left + (width * 4);
                    radioButton48.Left = radioButton47.Left + (width * 4);
                    radioButton49.Left = radioButton48.Left + (width * 4);
                    radioButton50.Left = radioButton49.Left + (width * 4);
                    radioButton51.Left = radioButton50.Left + (width * 4);
                    radioButton52.Left = radioButton51.Left + (width * 4);
                    radioButton53.Left = radioButton52.Left + (width * 4);
                    radioButton54.Left = radioButton53.Left + (width * 4);
                    et30.Left = radioButton30.Left-4;
                    et31.Left = radioButton31.Left - 4;
                    et32.Left = radioButton32.Left - 4;
                    et33.Left = radioButton33.Left - 4;
                    et34.Left = radioButton34.Left - 4;
                    et35.Left = radioButton35.Left - 4;
                    et36.Left = radioButton36.Left - 4;
                    et37.Left = radioButton37.Left - 4;
                    et38.Left = radioButton38.Left - 4;
                    et39.Left = radioButton39.Left - 4;
                    et40.Left = radioButton40.Left - 4;
                    et41.Left = radioButton41.Left - 4;
                    et42.Left = radioButton42.Left - 4;
                    et43.Left = radioButton43.Left - 4;
                    et44.Left = radioButton44.Left - 4;
                    et45.Left = radioButton45.Left - 4;
                    et46.Left = radioButton46.Left - 4;
                    et47.Left = radioButton47.Left - 4;
                    et48.Left = radioButton48.Left - 4;
                    et49.Left = radioButton49.Left - 4;
                    et50.Left = radioButton50.Left - 4;
                    et51.Left = radioButton51.Left - 4;
                    et52.Left = radioButton52.Left - 4;
                    et53.Left = radioButton53.Left - 4;
                    et54.Left = radioButton54.Left - 4;
                int top = 2;
                int height = 10;
                Bitmap bmp = new Bitmap(hourlyPictureBox.Width, hourlyPictureBox.Height);
                Graphics g = Graphics.FromImage(bmp);
                g.PageUnit = GraphicsUnit.Pixel;//??
                for (i = 0; i <= 100; i++)
                    int w = width;
                    int z = offset  + (i * width);
                    //r = new Rectangle(4 + (i * width)), top, width, height); //left,top,width,heigth
                    r = new Rectangle(z, top, w, height); //left,top,width,heigth
                    if (slot[i] == 0)
                        g.FillRectangle(Brushes.White, r);
      ......so on and so forth
                hourlyPictureBox.Image = bmp;
                g.Dispose();

  • Aligning cfformgroup (flash) controls

    I wish I could attach a .jpg to this post; it would clarify
    what I'm trying to say. Anyway, here's my problem. I'm creating a
    form with these basic elements:
    <cfform type="flash">
    <cfformgroup type="page">
    <cfformgroup type="horizontal"> [horizontal formgroup
    1]
    <cfselect> ... label="Variable Length Label A" ...
    </cfselect> [form control 1 in horizontal formgroup 1]
    <cfselect> ... label="Static Label 1" ...
    </cfselect> [form control 2 in horizontal formgroup 1]
    <cfselect> ... label="Static Label 2" ...
    </cfselect> [form control 3 in horizontal formgroup 1]
    </cfformgroup>
    <cfformgroup type="horizontal"> [horizontal formgroup
    2]
    <cfselect> ... label="Variable Length Label B" ...
    </cfselect> [form control 1 in horizontal formgroup 2]
    <cfselect> ... label="Static Label 1" ...
    </cfselect> [form control 2 in horizontal formgroup 2]
    <cfselect> ... label="Static Label 2" ...
    </cfselect> [form control 3 in horizontal formgroup 2]
    </cfformgroup>
    </cfformgroup>
    </cfform>
    I want the form controls in each of the horizontal formgroups
    to align with each other, but they don't align because of the
    Variable Length Label in each horizontal formgroup. I can send a
    snapshot to make this more clear to anyone who might be able to
    help. Code is attached.
    Thanks for any help you might be able to give.

    You just need to rethink the layout.
    Instead of
    <cfformgroup type="horizontal">
    </cfformgroup>
    <cfformgroup type="horizontal">
    </cfformgroup>
    Try
    <cfformgroup type="horizontal">
    <cffromgroup type="vbox">
    <cfselect> ... label="Variable Length Label A" ...
    </cfselect> [form control 1 in horizontal formgroup 1]
    <cfselect> ... label="Variable Length Label B" ...
    </cfselect> [form control 1 in horizontal formgroup 2]
    </cfformgroup>
    <cffromgroup type="vbox">
    <cfselect> ... label="Static Label 1" ...
    </cfselect> [form control 2 in horizontal formgroup 1]
    <cfselect> ... label="Static Label 1" ...
    </cfselect> [form control 2 in horizontal formgroup 2]
    </cfformgroup>
    <cffromgroup type="vbox">
    <cfselect> ... label="Static Label 2" ...
    </cfselect> [form control 3 in horizontal formgroup 1]
    <cfselect> ... label="Static Label 2" ...
    </cfselect> [form control 3 in horizontal formgroup 2]
    </cfformgroup>
    </cfformgroup>
    Ken

  • Aligning Boolean Control to Plot Legend

    Any ideas on how best to align an array of tick boxes against a plot legend?
    I have a 1D array of Boolean controls and I want to use them to enable/disable the plots on a XY graph but I'm having problems getting the controls to line up with the legend text.
    I've tried using element gaps in the array but there seems to be little control of the gap that is used. I've also tried creating a custom control and modifying the control height but I still can't get an exact alignment of the control to the legend text. I've also tried using different fonts for the legend text but it doesn't help.
    I don't really want to use individual controls and would prefer to continue using an array if possible but I can't help thinking I'm missing something obvious!?
    I've attached and example of the problem and would welcome any suggestions....

    Sorry, apparently the resize operation does not survive a save operation. Weird! It looks just fine until closed and reopened.
    Here's an approach that actually works: Just use a plain boolean button and import the appropriate checkbox graphics into the true and false cases, again using the control editor.
    See if this suits your needs!
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    LegendExampleMOD2.vi ‏29 KB

  • Control alignment on tab pages

    This is an appearance/aesthetic issue only. I am building a tab control with 8 pages. Each page has the same controls for different channels. How do I align/position a control on a page to be in exactly the same place as the same control on the page above/beneath it?
    PaulG.
    "I enjoy talking to you. Your mind appeals to me. It resembles my own mind except that you happen to be insane." -- George Orwell

    There is a way to allign the controls from diffrent tabs, it just takes two steps.
    Use a set of dummy reference controls. One for top, one for left that are positioned off the tab control.
    You allign the controls on one page to the dummy references, then repeat for the other tabs.
    If you group like Dennis suggested the work is done in no time.
    Trying to help,
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Control alignment

    I would like to figure out how to align to control properly. I have tried to experiment but I can't see any logic to this.
    When I select 2 controls how can I tell Labview which control is the one I want aligned to?
    I seem to always get the opposite of what I'm trying to do, one time it will be control #1 next time it is control #2.
    What am I doing wrong?
    Ron

    From my experience the controls will allign to the one that is in the Maximum position.  For example if you do an align top,  the controls will all align to the one that is the highest.  If you have three or more controls spread out at different heights I don't think there is a way to align to a middle control in one step.  You would have to align the higher ones first with align bottom and then the lower ones with allign top.

  • How can I remove or align play comand in the bottom of the movie?

    Hi guys,
    Does somebody knows how to remove or align the movie controls in the bottom of the movie?
    I insert an .aac file and added a pictures as the background of this sound.
    The problem is that the controls (play, pause, etc) are in in the middle, or better saying placed in front of the pictures and i would like to place it in the bottom or top position.
    Thanks in advance,

    Aha - I did it. Switch off Voice-over, then add a sorted playlist. Fingers crossed...

  • How to place search control on the menu?

    Hi,
    I would like to create search field on the right side of the standard menu bar, just like "Search Application" in Apex Builder
    I'm using Apex 402 for this.
    Thanks

    Thanks Rima,
    I'm able to place search text box with button on the menu now, my prob is
    - I cannot right align my search control on the MENU
    - How to redirect to my search page when search button (on page 0) pressed, since there's no dymamic action for button on page 0 or branch?
    Please give me advise.
    Regards

  • Alignment questions

    I want to align various layers to different parts of my document. I have noticed in the past that alignment options sometimes display at the top of the screen, though they are not doing it for me now and I can not find an alignment panel.
    1. How can I access the alignment options?
    2. From a graphic designer's perspective, should text cenetered on a document generally only be used for formal style invites?
    Thanks in advance.

    Move Tool and the various vector tools have alignment and distribution controls in the Options bar. There's also Smart Guides (magenta lines appear when layers are dragged into alignment) which can be enabled in the View menu.

  • New features in Adobe Muse 2.0

    The following is a list of features now available in Adobe Muse:
    Align Palette
    We've added a new Align Palette, available from the Window menu, or by clicking on the new 'Align' control in the control strip.
    You can use the new Align features to align or distribute selected objects relative to each other, or to the page content area (which is the area from the bottom of the header to the top of the footer).     
    Asset Upload
    You can now link to any external file (i.e. PDF, .zip file, .dmg or .exe) and add a hyperlink to it to enable users to download the file from your web site.
    All linked assets will be uploaded / exported along with the rest of the Adobe Muse site, in a new 'assets' folder.     
    Code Generation Improvements
    We've improved the HTML code generation for Adobe Muse 2.0 in several areas. Shadows, Glows, and Gradients now use CSS instead of generating additional images.
    We've eliminated many cases where we generated duplicated HTML nodes. We've also changed our JavaScript framework for our widgets from Spry to a smaller, faster framework called WebPro.
    These changes make the export process faster, and Adobe Muse now generates less images and smaller HTML files.
    Shadows and outer glows are represented using CSS box-shadows instead of rasterizing.
    Fixed the naming of images exported by Adobe Muse which have been either resampled or cropped before exporting.
    Background images that have been set to "Scale to Fit" or "Scale to Fill" are now exported with the 'contain' or 'cover' background-size CSS property, respectively.
    Browsers display a warning when you serve a page that mixes HTTP and HTTPS content, which can be triggered if loading content from a content delivery network (CDN) such as Amazon's CloudFront. To avoid these warnings, Adobe Muse uses some JavaScript to not use CDN URLs with HTTPS in favor of falling back to a local version of the content.     
    Forms
    We've added a new Form widget to the widget library.
    You can easily configure the form to send the form submissions to multiple email addresses, and optionally redirect users to another page after submitting the form.
    You can add and remove fields, and style the form as you would other Adobe Muse elements. You can independently style the various states of the form, and form fields to provide a compelling user experience, with visual cues for error states, empty states, and more.
    Because Form processing requires server-side support, Adobe Muse forms are configured to work when published to Adobe Business Catalyst. If you make changes to your form and publish again, Adobe Muse will make the appropriate changes to your Adobe Business Catalyst forms.
    Adobe Muse will safeguard data when redesigning your Adobe Business Catalyst forms                
    If a field with no data submitted is removed, it will be deleted from the database.
    If a field that has submitted data is removed, it will be preserved in the database, but can be deleted from the Adobe Business Catalyst admin console if desired.         
    Font Improvements 
    The font UI includes font previews in the form of sample text rendered in the corresponding font/weight/style.
    Submenus for the various font types (web, web-safe and system) have been eliminated in favor of a single sectioned list, with shortcuts to scroll to each section.
    Web fonts and system fonts are grouped by font family; individual weights and styles (e.g. Bold, Italic, Bold Italic etc.) of multi-face font families appear in sub-menus.
    The font UI displays an automatically generated list of recently used fonts. The number of recently used fonts to display can be configured and list can be cleared.
    The font list can be filtered by font family (e.g. “Myriad Pro”), weight or style (e.g. “Bold Italic”), a combination of these (e.g., “Myriad Pro Bold Italic”), including partial names in any order (e.g., “It Bold Myr Pro”).
    Adobe Muse now uses platform-independent references to fonts, so Adobe Muse documents can be exchanged between Mac and Windows without failure to resolve font references.
    Adobe Muse displays localized font names (if available) based on the application locale, rather than system locale. Adobe Muse documents can be exchanged between across application locales without failure to resolve font references.
    FTP Upload
    Adobe Muse now includes the ability to FTP to the host of your choice by selecting File > Upload to FTP Host in the Adobe Muse menu.
    Adobe Muse's FTP upload dialog allows you to specify the host, subdirectory, and login information.
    Adobe Edge Integration
    If you publish an .oam file from Adobe Edge, you can place it into Adobe Muse. All required images, CSS and JavaScript content will be uploaded at Publish or Export time.
    As with other placed content any changes made in the source Adobe Edge file and re-saved in .oam format will be detected within Adobe Muse, and you can use the Assets Palette to update the content in Adobe Muse.     
    Language Support
    Japanese and Italian localizations have been added.
    Specific Japanese features include the addition of Japanese web safe fonts on the font menu as well as support for Japanese IME, including text input and double-byte text.       
    Ruler Guides
    Adobe Muse now includes the ability to drag guides onto a page from the Horizontal or Vertical ruler.
    Page items snap to guides when moving, but guides are not exported.
    Adobe Muse supports selecting multiple guides on a page.       
    Sitemap.xml
    Adobe Muse now creates a sitemap.xml file for better search engine optimization when the site is hosted somewhere other than Adobe Business Catalyst. You can exclude a page from the sitemap.xml file (if you don't want search engines to find it) by setting an option in the Page Properties dialog.
    Browser Fill Improvements
    You can now set a gradient on the Browser Fill. (Note: Opacity, Focal point and Size are not available due to cross-browser compatibility and usability standards)
    In addition, you can now set your browser background image to fit or to fill.
    Control Strip Improvements
    The Adobe Muse control strip now has collapsible control sets (similar to Illustrator). As you expand the width of the Adobe Muse application window more controls appear.
    Additional controls have been added to the Control strip – States, Transform, and Align. Text controls are now available when text frames are selected, not just when you're using the text tool.
    Drag and drop styles/swatches/colors
    You can now drag and drop a Paragraph style or Character style onto a text frame to apply the style to the text.
    You can also drag a Graphic style into a page item, or the page to apply it.
    You can drag a Swatch onto a page item, page, or browser area of a page to apply background fill.
    You can drag a Color (via dragging the color preview area just above the RGB edit boxes) onto a page item, page, or browser area of a page to apply background fill. You can also drag a color to the Swatches palette to create a swatch of it.     
    Hyperlinks
    The Hyperlink control can now be resized so that users can see entire URL. We've changed the label of the hyperlink option “Title” to “Tooltip” to help clarify where user enters the hyperlink destination information.
    New Selection Visuals
    Hint labels now show when you hover over elements on the page. There is a new preference to turn this display off.
    Groups and widgets are now indicated with dotted line containment rectangles.
    When a page item cannot be resized in a specific direction we now show an “X” instead of a missing handle.
    Widget Improvements
    Slideshow and Composition widgets now include a numeric stepper for controlling the Auto Play speed in seconds rather than Off, Slow, Medium, Fast.
    We've added Shuffle as an option to the Slideshow and Composition widgets so the slideshow or composition contents play in random order.
    Changing a Menu widget from horizontal to vertical, or vice versa, now does a much better job of preserving size and spacing.
    Changing the state of one part of a widget at design time now changes appropriate sibling parts to the same state to more closely mimic browser behavior.
    Based upon customer feedback, we renamed the following:                
    "Fit Width" and "Fit Height" to "Uniform Spacing"
    "Uniform Width" and "Uniform Height" to "Uniform Size"
    Other assorted improvements
    Shift + Return/Enter will create a soft return instead of a carriage return.
    Control/Ctrl + Tab activates next tab.
    Control/Ctrl + Shift + Tab activates previous tab.
    Option/Alt + click a page tab will close all open page tabs.
    Option/Alt + click a site tab will close all open sites.
    Holding the Shift key down while resizing an image allows you to perform a non-proportional resize.
    The X, Y, W, H, and Angle edit boxes support duplicating and transforming the selection if you hold down the Option/Alt key when you hit Return/Enter or Tab.
    If you enter a value in an edit box you can do a Shift + Enter to apply the value AND keep focus in the edit box.
    Select Same feature added which selects other objects on the page that are the same type as the object currently selected and can be used through Alt Control Shift A and the Context and Edit menus.
    Added feedback to rotation tracker so you see the angle next to the cursor as you rotate.
    Changed rotation display values to be between -180 and 180 to match other Adobe apps. Previously it was 0 to 360.
    Publish dialog has a new FAQ link to help users understand the implications of publishing.
    Upload to FTP and Export to HTML workflows now have a ‘Domain Name’ input field. This is used for generation of Sitemap.xml and for enabling Typekit web fonts.
    The display of 100% width items on iOS devices is now enabled.
    Adobe Muse now produces functional submenus on iOS devices.

    Not all of the listed email recipients on my contact form are receiving the inquiries.    Muse allows me to add several email addresses separated by a semi-colon (see below from Corey Wrote) but only one of the three addresses are receiving the contact form inquiries.
    Corey@Adobe wrote:
    Forms
    We've added a new Form widget to the widget library.
    You can easily configure the form to send the form submissions to multiple email addresses, and optionally redirect users to another page after submitting the form.
    You can add and remove fields, and style the form as you would other Adobe Muse elements. You can independently style the various states of the form, and form fields to provide a compelling user experience, with visual cues for error states, empty states, and more.
    Because Form processing requires server-side support, Adobe Muse forms are configured to work when published to Adobe Business Catalyst. If you make changes to your form and publish again, Adobe Muse will make the appropriate changes to your Adobe Business Catalyst forms.
    Adobe Muse will safeguard data when redesigning your Adobe Business Catalyst forms                
    If a field with no data submitted is removed, it will be deleted from the database.
    If a field that has submitted data is removed, it will be preserved in the database, but can be deleted from the Adobe Business Catalyst admin console if desired.         

  • How do you select an image that is in a text box?

    Hi There, I am trying to select the image which is inside of the text box. Since I upgraded to Yosemite, I cannot figure out how to do this. If I click and drag the mouse over it, I can select both the text box and the image, but I only want to select the image. Thank you so much!

    Pages v5.2.2 on Mavericks, and v5.5.1 on Yosemite do not give you keyboard or pointer access to the image in a Text Box. There is no alignment or distribution control on the image either. No notion of background/foreground. The Text Box really just acts as a viewport for the image. If the image is in the correct aspect ratio, you can fill the Text Box with the image, otherwise it will clip the image.

  • How To Fit Films Exact To Screen S

    Hello, Guys
    I put films on my zen and they dont take up the full size of my zen screen. How can i do this. I use the Creative Software to convert (if needed) and to transfer.
    Can you give me a simple (step by step) guide.
    Thanks a lot for your help<!-- / message --><div align="right"><!-- controls -->[img"]http://www.anythingbutipod.com/forum/images/misc/progress.gif" alt="">

    Drag them to the Desktop; then open them in Preview, which will resize them and can zoom them as required.

  • How do I get a video to view in Internet Explorer?

    I cannot get Internet Explorer to display the video in the page below.
    The page works fine in Safari, Firefox, Opera, and Crome and even on my iPad2 (although the latter does freeze the vid).
    As you can see I have tried converting the clients original Mpeg-4 into different formats for the browsers but I seem to be
    batting my head against the wall with IE. Don't I just love Microsoft?
    Here is the URL: http://www.cityhealing.com/html-site/treatments/ac/acupVideo.html
    Any help will be appreciated
    Thank you, Tony D
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>City Healing Aucupuncture Video</title>
    <style type="text/css">
    body {
        background-color: #000;
    </style>
    </head>
    <body>
    <div align="center"><img src="../ailments/images/ailments_r1_c1.jpg" width="640" height="62" alt="chHeadGreen" /></div>
    <div align="center"><video controls preload="auto" width="640" height="480">
    <source src="images/acupunctureVideo.3gp" type="video/3gp"/>
    <source src="images/acupuncture.mpg" type="video/mpg" />
    <source src="images/acupunctureVideo.ogg" type="video/ogg"/>
    <source src="images/acupunctureVideo.mp4" type="video/mp4" />
    <source src="images/acupunctureVideo.mpg" type="video/mpg"/>
    <source src="images/acupunctureVideo(2).mpg" type="video/mpg" />
    <source src="images/acupunctureVideo.vob" type="video/vob"/>
    <source src="images/acupunctureVideo(1).avi" type="video/avi"/>
    <source src="images/acupunctureVideo.flv" type="video/flv" />
    </div>
    </body>
    </html>

    Hi Jon Fritz ii
    Thank you for your reply.
    Well, ie9beta is what it says on the tin - just came with Windows 7. As I never use ie for my browsing so I have never bothered with it, until now, when, like all Microsoft stuff it starts off pear shaped and just keeps getting worse ! ..  :-)
    The prime site I have designed in FlashMX is
    http://www.cityhealing.com.
    Under that is the html site:
    http://www.cityhealing.com/html-site/home/homePage.htm
    The link for the video clip pages are not live to the public but they are:
    http://www.cityhealing.com/html-site/treatments/ac/acupVideo2.htm
    and
    http://www.cityhealing.com/html-site/information/testimonials/testimonialVideo1.htm
    here is the code for the acup2.htm video: amened as per your suggestion.
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>City Healing Aucupuncture Video</title>
    <style type="text/css">
    body {
        background-color: #000;
    </style>
    <link href="../../cHealing.css" rel="stylesheet" type="text/css">
    </head>
    <body>
    <div align="center"><img src="../ailments/images/ailments_r1_c1.jpg" width="640" height="62" alt="chHeadGreen" /></div>
    <div align="center"><video controls preload="auto" width="640" height="480">
    <source src="images/acupunctures.webmsd.webm" type="video/webm" />
    <source src="images/acupunctureVideo.ogg" type="video/ogg" />
    <source src="images/acupunctureVideo.mp4" type="video/mp4" />
    <source src="images/acupuncture.webmhd.webm" type="video/webm" />
    </video></div>
    </body>
    </html>
    Oh, btw, the video frame appears for one second in IE then replaced by the little red cross!
    Thanks, Tony D

  • Labels not printing correctly

    I am printing with an HP OfficeJet 6500 on an iMac 27" Quad.
    These are product labels that will eventually get placed on glass jam jars.
    I purchased Labels # WRV5-3R_5923 from labelsbythesheet.com.
    They provided me with a Microsoft Word template.
    The actual printing is really beautiful. The labels respond with great clarity on my inkjet printer, and I am now testing them in the refrigerator. (I am making labels for jars of jam)
    The problem is getting things aligned. The bottom row boxes show up perfectly in the preview. But when I go to print, the last 1/4" of the bottom boxes are clipped off, so the bottom labels don't print correctly. 
    Then the labels seem to "move around" across the page. The first label is correct, but as one goes across the page, the border moves from left to right. The left border is about 1/4" past the label. The fifth cell on the right is  about 1/8" inch before the label.
    Also vertically, the top row prints 1/8" below the label. The bottom row prints 1/4" above the label. 
    On my printer, I have disabled all the "align and center" controls, the "fit to page" control, the "scaling" and "bounding box". So in the controls it appears the printer software is doing nothing to the original document. 

    Hi garrymtp,
    I would like to help you with printing labels. The issue you have described sounds like it a result of print margins.
    The document margins must match (or exceed) these margin settings in the portrait orientation.
    Media
    1. Left (LM)
    2. Right (RM)
    3. Top (TM)
    4. Bottom (BM)*
    U.S. Letter
    U.S. Legal
    A4 210 x 297 mm (8.3 x 11.7 inches)
    U.S. Statement
    210 x 297 mm (8.5 x 13.0 inches
    Customized media
    Photo media
    B5 (JIS): 182 x 257 mm (7.17 x 10.12 inches)
    A5: 148 x 210 mm; (5.8 x 8.3 inches)
    Cards
    3.0 mm (0.125 inch)
    3.0 mm (0.125 inch)
    3.0 mm (0.125 inch)
    3.0 mm (0.125 inch)
    279 x 356 mm (11 x 14 inches)
    310 x 310 mm (12 x 12 inches)
    B4 (JIS): 257 x 364 mm (10.2 x 14.3 inches)
    Super B: 330 x 483 mm (13.0 x 19.0 inches)
    A3: 297 x 420 mm (11.7 x 16.5 inches)
    A3+: 330 x 483 mm (13.0 x 19.0 inches)
    5.0 mm (0.197 inch)
    5.0 mm (0.197 inch)
    20.0 mm (0.788 inch)
    20.0 mm (0.788 inch)
    Envelopes
    3.0 mm (0.125 inch)
    3.0 mm (0.125 inch)
    3.0 mm (0.125 inch)
    14.3 mm (0.563 inch)
    Are you able to modify the margins?
    How to Change the Margins in a Microsoft Word Document for Mac
    Keep me posted
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • Removing Space Between Web Parts causes Horizontal Bar in Modals

    Hello all,
    I used the following to remove space between Web Parts, but am now getting a horizontal bar in my modals. Please assist:
    http://www.ashokraja.me/tips/How-To-Remove-Extra-Space-Around-the-Web-Part-In-SharePoint-2013
    Thanks!
    Kelly
    Personal Blog: http://thebitsthatbyte.com

    I removed it using the following CSS, which aligns our spacing:
    Control spacing between Web Parts*/
    .ms-webpart-cell-vertical
    margin-top:
    0px;
    margin-bottom:
    0px;
    Personal Blog: http://thebitsthatbyte.com

Maybe you are looking for