MenuBar Component - Aligning Menu Left

Hello all,
I have a quick question. Is it possible to set the menubar
component so that it's submenu is configured to display to the left
( if it was on the far left of the screen)?
Currently I have it placed on the left side of the screen,
with text aligned to right. The following problems occur :
The arrows that are displayed when a menu has children is on
the right, is it possible to align it left?
The 2nd/3d level submenus open on TOP of their parent menu,
instead of to the left, like I would like them to.
Is there a sort of static property or something that I'm not
finding that is made to align the entire menu to the right?
Screenshot
Here

Can you please explain why you have PHP code inside your CSS body selector?
PHP does not belong in your CSS code.
body{
<?php
// define variables and set to empty values
$nameErr = $emailErr = $genderErr = $websiteErr = "";
$name = $email = $gender = $comment = $website = "";
if ($_SERVER["REQUEST_METHOD"] == "POST") {
  if (empty($_POST["name"])) {
    $nameErr = "Name is required";
  } else {
    $name = test_input($_POST["name"]);
    // check if name only contains letters and whitespace
    if (!preg_match("/^[a-zA-Z ]*$/",$name)) {
      $nameErr = "Only letters and white space allowed";
  if (empty($_POST["email"])) {
    $emailErr = "Email is required";
  } else {
    $email = test_input($_POST["email"]);
    // check if e-mail address is well-formed
    if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
      $emailErr = "Invalid email format";
  if (empty($_POST["website"])) {
    $website = "";
  } else {
    $website = test_input($_POST["website"]);
    // check if URL address syntax is valid (this regular expression also allows dashes in the URL)
    if (!preg_match("/\b(?:(?:https?|ftp):\/\/|www\.)[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%= ~_|]/i",$website)) {
      $websiteErr = "Invalid URL";
  if (empty($_POST["comment"])) {
    $comment = "";
  } else {
    $comment = test_input($_POST["comment"]);
  if (empty($_POST["gender"])) {
    $genderErr = "Gender is required";
  } else {
    $gender = test_input($_POST["gender"]);
function test_input($data) {
  $data = trim($data);
  $data = stripslashes($data);
  $data = htmlspecialchars($data);
  return $data;
Nancy O.

Similar Messages

  • MenuBar Component: Listener for Click on Main Menu?

    When using the MenuBar component, is there a way to add an
    event that will tirgger when the user clicks an item in the MenuBar
    (as differentiated from when they click on a sub-menu item)?

    If you removed the stop() from scene 2 it will not stop there it will return to wherever "home" is.
    If you intend to have the timeline stop at some frame, then you need to place a stop() command in that frame, or use a gotoAndStop() command.
    If you are going to use scenes  be consistent with the way you write the goto commands. The use of is rarely recommended - instead, use different sections of the timeline of just one scene, or use movieclips and control their visibility, or a combination of both.
    If you continue to have issues, try simplifying first - build/add the navigation for one section at a time instead of trying to get it all in one shot.

  • Customising the "bar" of the MenuBar component

    Hi there, here is my situation...
    I'm trying to modify the style properties of a MenuBar
    component at runtime, in particular the colour of the bar.
    Reskinning is not really an option as the effect must happen
    at runtime.
    Using
    myMenuBar_mb.setStyle("themeColor", 0xFFAAAA);
    works to an extent (changing border & highlight colour)
    but does not change the silvery bar that the "root menu" labels sit
    upon.
    if I use setStyle("backgroundColor", 0x000000); the child
    Menu's are changed, but alas, not the bar itself.
    Any ideas?

    Well in the case of only searching a specific field all you need to do is delete the portions of your reports SQL statement that are refering to the other columns.
    find the regions area in your edit page
    select the first link in the line about your report (the name of your report as oppossed to the one next to it that says report)
    scroll down to the source area there should be a SQL statement that looks something like this:
    SELECT * FROM
    (SELECT NAME, ADDRESS, PHONE_NUMBER
    FROM TABLENAME)
    WHERE (
    instr(upper("NAME"),upper(nvl(:P3_REPORT_SEARCH,"NAME"))) > 0 or
    instr(upper("ADDRESS"),upper(nvl(:P3_REPORT_SEARCH,"ADDRESS"))) > 0 or
    instr(upper("PHONE_NUMBER"),upper(nvl(:P3_REPORT_SEARCH,"PHONE_NUMBER"))) > 0
    the instr statements return true if at least one instance of the search value is in in that column so in order to not include Address and Phone_number just get rid of those lines.
    SELECT * FROM
    (SELECT NAME, ADDRESS, PHONE_NUMBER
    FROM TABLENAME)
    WHERE (
    instr(upper("NAME"),upper(nvl(:P3_REPORT_SEARCH,"NAME"))) > 0
    Delete them and apply changes.
    The next thing is to get rid of the highlights (instances of the search string turn red in the report)
    Click on the second link (report) for your report region.
    click the edit icon next to address
    in Column Formatting delete the text in Highlight Words.
    apply and repeat for phone_number

  • Tabstrip's Push buttons are align by left in 1 place

    Hi experts
       I put a Tabstrip in my screen,but his Push buttons are align by left in 1 place,How can i do something to make the push buttons align 1 by 1.
    BR
    Chris huang

    Those MM Rollover Menus are awful.  I'm not surprised you're having trouble with them.
    The Sordid tale of MM Fireworks Menus
    http://losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
    The best advice I can offer is to scrap the MM Rollovers you have now and use a good CSS Menu system.
    DW Spry Menus
    http://layersmagazine.com/spry-navigation-dreamweaver.html
    CSS Express Drop-Down Menus  (tutorial)
    http://www.projectseven.com/tutorials/navigation/auto_hide/
    List-O-Rama  (Free DW Extension)
    http://www.dmxzone.com/go?5618
    Pop-Menu  Magic2 by PVII (paid DW extension)
    http://www.projectseven.com/products/menusystems/pmm2/index.htm
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Change state with MenuBar component

    It's pretty easy to change the state with a button. Example:
    click="currentState='AboutScreen'"
    But when I try to do this on the MenuBar component, I'm not
    having any luck. When I click on the item (let's say Help ->
    About), nothing happens. My code is:
    click="currentState='menu.student.create_profile'"
    I also tried,
    itemClick="currentState='menu.student.create_profile'"
    No luck.. anyone know how to change states based off items
    clicked from the MenuBar?

    This should get you started:
    http://www.playingwithfire.com/fun.html

  • Value in Query align by left

    Hi Experts,
    I have a problem in B1 query.
    For example my query is as follow
    Select  1.001
    B1 query will show
    1   : align by right
    The  problem is that the value is not 1.001
    If I change the query
    Select  '1.001'
    B1 query will show
    1.001   : align by left
    The value is ok, but the alignment is left. How to let the value align by right?
    Glen

    That is normal behavior of query result.  The first one is number so that will be aligned right.  The second one is text so that will be left.  Everything within ' ' would be a text no matter it is letter or number.
    Thanks,
    Gordon

  • Flash cs3: how to make moving/scrolling photo menu left and right?

    http://media.moma.org/subsites/2008/miro/flashsite/index.html
    - click continue, then relative size link
    How can I do this with lash cs3: how to make moving/scrolling
    photo menu left and right?
    When you move left and right and paintings move. and when you
    click on a painting, you see the the title and it links to another
    page on the site.

    scene_mc start at x = -550... x wide is 2164 px
    now I have this and its working...
    navL_mc.addEventListener(MouseEvent.MOUSE_OVER, navL_Over);
    navL_mc.addEventListener(MouseEvent.MOUSE_OUT, navL_Out);
    function navL_Over(e:MouseEvent){
              if(scena_mc.x == 0){
                                  scena_mc.x == 0;
              else if(scena_mc.x <= -10){
                                  scena_mc.x += 10;
                                  navL_mc.addEventListener(Event.ENTER_FRAME, runL);
    function runL(e:Event):void{
              if(scena_mc.x == 0){
                                  scena_mc.x == 0;
              else if(scena_mc.x <= -10){
                                  scena_mc.x += 10;
    function navL_Out(e:MouseEvent){
              navL_mc.removeEventListener(Event.ENTER_FRAME, runL);
    navR_mc.addEventListener(MouseEvent.MOUSE_OVER, navR_Over);
    navR_mc.addEventListener(MouseEvent.MOUSE_OUT, navR_Out);
    function navR_Over(e:MouseEvent){
              if(scena_mc.x == -1164){
                                  scena_mc.x == -1164;
              else if(scena_mc.x >= -1154){
                                  scena_mc.x -= 10;
                                  navR_mc.addEventListener(Event.ENTER_FRAME, runR);
    function runR(e:Event):void{
              if(scena_mc.x == -1164){
                                  scena_mc.x == -1164;
              else if(scena_mc.x >= -1154){
                                  scena_mc.x -= 10;
    function navR_Out(e:MouseEvent){
              navR_mc.removeEventListener(Event.ENTER_FRAME, runR);

  • Menubar component and xml issue

    Hi folks,
    I am using the menuBar component that ships with mx2004pro,
    to choose galleries in an xml gallery. The gallery selector code is
    this:
    It's the second to last line, bassmenu.childNodes.onRelease =
    function, that I am having trouble with. bassmenu is the instance
    name of the component. The menubar component is loading the xml
    just fine. If I change the above to "bassmenu.onRelease =
    function..." the top level buttons on the bar will change the
    gallery. I just can't figure out how to address the child nodes of
    the menubar.
    I have spent a ridiculous amount of time on this, bought and
    read a book, read every tutorial and help file out there, any help
    would be greatly appreciated. I would be happy to post the source
    and the xml if that helps.

    The documentation is wrong.  Your payload should include the commands you want to deploy.  So, use:
       cwcli config import -u admin -p [Base64PWD] -device [DisplayName]
       -f
      interface FastEthernet0/21
      switchport access vlan 2400
      switchport mode access
      no cdp enable
      spanning-tree portfast
      ip verify source
      shutdown
    end

  • Set MenuBar component margin sizes

    Hello everyone,
    I use mx:MenuBar component in my application. I'm gonna create an options window for my search button. I'll set options for search property.
    as you see in the image, I couldn't set the size near the arrow down character(v). Also could'n not set the blue color. I checked all properties and style options but not found any solution to set these.
    Please any idea about this issue or any other solution to mysettings window solution.

    For those that are interested, I was able to find a solution. I manually set my margins to 0.5" all around. Here is a snippet below:
    PrinterJob job = PrinterJob.getPrinterJob( );
    PageFormat format = job.defaultPage( );
    Paper paper = new Paper();
    double margin = 36; //72 is the default which equals to an inch
    paper.setImageableArea( margin, margin, paper.getWidth() - margin * 2, paper.getHeight() - margin * 2 );
    format.setPaper( paper );
    job.setPrintable( this, format );
    I hope that helps.

  • Font just does not align totally left

    Hi folks, I need to know, how i can align the text totally to the border of the text frame, as you can see in the picture it just does not align totally left.
    I´ve been searching the web for solutions but did not find anything. I tried "Textrahmenoptionen" - I guess in english it´s text frame options, but there everything seems so to be right, please help me. Thanks in advance

    Check this thread:
    Re: Text alignment to column (not baseline) guides

  • Safari 5.1.8 is broken in snow leopard. Application will show in menubar, but all menu choices are nonfunctional.

    Safari 5.1.8 is broken in Snow Leopard. Application will show in menubar, but all menu choices are nonfunctional.

    Run through this list of fixes
    ..Step by Step to fix your Mac
    It might have to do with the way Safari works on the Internet and the rash of attacks occuring
    http://www.guardian.co.uk/technology/2013/mar/27/cyber-attack-spamhaus-slows-dow n-internet
    I also booted up Safai today which I hardly use and it was incredibly slow as well.
    I don't know if it's Safari or me not using it for such a long time.
    If the above fixes don't work, all I can suggest is to use Firefox or whatever until this attack thing blows over and see after that.

  • Cfinput 'datefield' always aligns to left

    It appears that  cfinput 'datefield' always aligns to left, I have tried everything I can think of to get it to align center (in the td, in a div,  style in the input, etc) and it just wont align center, I even tried putting a bunch  of   in front of the input and it puts them on the right. Any Help would be appreciated.

    Over the years I have moved away from using CF input validation and instead use jquery and the validation plug-in.
    For a more direct answer, have you tried creating a "center" class with text-align set to !important:
    .center{ text-align:center !important; }
    Then adding this class to the cfinput tag?

  • Button aligned to left size

    Hi All,
    the code below suppose to show a list with a few buttons below.
    in this dialog i have only minor problem.
    The problem is that all my buttons aligned to left size.
    if i omit line number 193 (jButtonPane.setLayout(new GridLayout(1,nOfButtons,1,1))),
    it centralized but i am loosing the behaviour of the buttons.
    when i shrinking the dialog the button dissapear:
    and i need that the button will show like:
    [OK...] [Cancel...] etc...
    how can i centralized the buttons and still not "lost" the buttons.
    this is my code:
    package test;
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.GraphicsEnvironment;
    import java.awt.GridBagConstraints;
    import java.awt.GridBagLayout;
    import java.awt.GridLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.DefaultListModel;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JList;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.UIManager;
    import javax.swing.UnsupportedLookAndFeelException;
    public class DialogFrame {
         String Message2Show="Default Message";
         JButton[] ButtonArray;
         String [] btnArrayText;
         String [] lineArray;
         String Title;
         int nOfButtons;
         int nOfLines;
         String[] data;
         private JPanel jContentPane = null;
         private JPanel jButtonPane = null;
         private JPanel jmessagePane = null;
         private JList MessageList=null;
         private JScrollPane jScrollPane = null;
         private JPanel jPanel2 = null;
         private DefaultListModel listModel;
         private static int DialogWidthPreferedSize=500;
         private static int DialogHightPreferedSize=200;
         final static boolean shouldFill = true;
        final static boolean shouldWeightX = true;
        final static boolean RIGHT_TO_LEFT = false;
          //Specify the look and feel to use.  Valid values:
        //null (use the default), "Metal", "System", "Motif", "GTK+"
         final static String LOOKANDFEEL = "System";
         public DialogFrame() {
              // TODO Auto-generated constructor stub
            // creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
         public DialogFrame(String message) {
              // TODO Auto-generated constructor stub
              ParseMessage(message);
            //          for test add data
              AddData2Message();
               //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
            private void createAndShowGUI() {
                 initLookAndFeel();
                //Make sure we have nice window decorations.
                JFrame.setDefaultLookAndFeelDecorated(true);
                //Create and set up the window.
                JFrame frame = new JFrame(Title);
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                //Display the window.
                int maxHeight = GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices()[0].getDisplayMode().getHeight();
                int maxWidth = GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices()[0].getDisplayMode().getWidth();
                frame.pack();
                frame.setSize(DialogWidthPreferedSize, DialogHightPreferedSize);
                frame.setLocation(GetWidth(maxWidth),GetHeight(maxHeight));
                frame.setContentPane(getJContentPane());
                frame.setVisible(true);
             private  void initLookAndFeel() {
                String lookAndFeel = null;
                if (LOOKANDFEEL != null) {
                    if (LOOKANDFEEL.equals("Metal")) {
                        lookAndFeel = UIManager.getCrossPlatformLookAndFeelClassName();
                    } else if (LOOKANDFEEL.equals("System")) {
                        lookAndFeel = UIManager.getSystemLookAndFeelClassName();
                    } else if (LOOKANDFEEL.equals("Motif")) {
                        lookAndFeel = "com.sun.java.swing.plaf.motif.MotifLookAndFeel";
                    } else if (LOOKANDFEEL.equals("GTK+")) { //new in 1.4.2
                        lookAndFeel = "com.sun.java.swing.plaf.gtk.GTKLookAndFeel";
                    } else {
                        System.err.println("Unexpected value of LOOKANDFEEL specified: "
                                           + LOOKANDFEEL);
                        lookAndFeel = UIManager.getCrossPlatformLookAndFeelClassName();
                    try {
                        UIManager.setLookAndFeel(lookAndFeel);
                    } catch (ClassNotFoundException e) {
                        System.err.println("Couldn't find class for specified look and feel:"
                                           + lookAndFeel);
                        System.err.println("Did you include the L&F library in the class path?");
                        System.err.println("Using the default look and feel.");
                    } catch (UnsupportedLookAndFeelException e) {
                        System.err.println("Can't use the specified look and feel ("
                                           + lookAndFeel
                                           + ") on this platform.");
                        System.err.println("Using the default look and feel.");
                    } catch (Exception e) {
                        System.err.println("Couldn't get specified look and feel ("
                                           + lookAndFeel
                                           + "), for some reason.");
                        System.err.println("Using the default look and feel.");
                        e.printStackTrace();
             private JPanel getJContentPane()
                  if (jContentPane == null) {
                       jContentPane = new JPanel();
                       jContentPane.setLayout(new BorderLayout());
                       //FOR THE LIST
                       jContentPane.add(getMessagePanel(), BorderLayout.CENTER);
                    //FOR THE BUTTONS
                       jContentPane.add(getButtonPanel(), BorderLayout.SOUTH);
                  return jContentPane;
            /*******      FOR THE LIST    **********/
             private JPanel getMessagePanel()
                  if (jmessagePane == null)
                       jmessagePane = new JPanel();
                       jmessagePane.setLayout(new GridLayout(1,0));
                       jmessagePane.add(getJScrollPane(), null);
                  return jmessagePane;
             private JScrollPane getJScrollPane() {
                  if (jScrollPane == null) {
                       jScrollPane = new JScrollPane();
                       jScrollPane.setViewportView(getMessage());
                  return jScrollPane;
             private JList getMessage() {
                  if (MessageList == null) {
                       MessageList = new JList(listModel);
                       MessageList.setBackground(Color.cyan);
                  return MessageList;
              /*******      FOR THE BUTTON    **********/
             private JPanel getButtonPanel()
                  if (jButtonPane == null)
                       jButtonPane = new JPanel();
                       jButtonPane.setLayout(new GridLayout(1,nOfButtons,1,1));//test
                       jButtonPane.add(getJPanel2(),null);
                  return jButtonPane;
             private JPanel getJPanel2()
                  if (jPanel2 == null)
                       jPanel2 = new JPanel();
                       jPanel2.setLayout(new GridLayout(0,nOfButtons));
                       //Cretae Buttons Dynamically Regard user request
                       ButtonArray=new JButton[nOfButtons];
                       //Crteate Button objects
                       for(int i=0;i<nOfButtons;i++)
                            getButton(btnArrayText,i);
                   //add buttons to panel
                   for(int i=0;i<nOfButtons;i++)
                        jButtonPane.add(ButtonArray[i]);
              return jPanel2;
         private JButton getButton(String Text,int ind) {
              ButtonArray[ind] = new JButton(Text);
              ActionListener l = new ActionListener()
    public void actionPerformed(ActionEvent e)
    JButton SelectedButton = (JButton)e.getSource();
    String ac = SelectedButton.getActionCommand();
    MyActionEvents(ac,SelectedButton);
    ButtonArray[ind].setActionCommand(String.valueOf(ind + 1));
    ButtonArray[ind].addActionListener(l);
              return ButtonArray[ind];
         private int GetWidth(int maxWidth){
              int x=0;
              x=(maxWidth/2)-(DialogWidthPreferedSize/2);
              return x;
         private int     GetHeight(int maxHeight){
              int y=0;
              y=(maxHeight/2)-(DialogHightPreferedSize/2);
              return y;
         void ParseMessage(String message)
              Title="";
              String value="";
              int loc;
              /*****************TITLE TREATMENT*********************/
              for ( loc=0; loc<message.length() && message.charAt(loc) != ':'; loc++)
                   Title += message.charAt(loc);
              //Title += ":";
              /*****************BUTTON TREATMENT*********************/
              message = (message.substring(loc+1)).trim();
              value = "";
              for (loc=0; loc<message.length() && message.charAt(loc) != ':'; loc++) value += message.charAt(loc);
              nOfButtons=Integer.parseInt(value);
              btnArrayText=new String[nOfButtons];
              for (int i=0; i<nOfButtons; i++)
                   message = (message.substring(loc+1)).trim();
                   value = "";
                   for (loc=0; loc<message.length() && message.charAt(loc) != ':'; loc++) value += message.charAt(loc);
                   btnArrayText[i] = value;
              /*****************TEXT TREATMENT*********************/
              message = (message.substring(loc+1)).trim();
              value = "";
              for (loc=0; loc<message.length() && message.charAt(loc) != ':'; loc++) value += message.charAt(loc);
              nOfLines = Integer.parseInt(value);
              lineArray = new String[nOfLines];
              for (int i=0; i<nOfLines; i++) {
                   message = (message.substring(loc+1)).trim(); value = "";
                   for (loc=0; loc<message.length() && message.charAt(loc) != ':'; loc++) value += message.charAt(loc);
                   lineArray[i]=value;
         private void MyActionEvents(String actionCommand,JButton SelectedButton)
              int val;
              val=Integer.parseInt(actionCommand);
              switch(val)
              case 1:
                   System.out.println("ac = " + actionCommand);
              break;
              case 2:
                   System.out.println("ac = " + actionCommand);
              break;
              case 3:
                   System.out.println("ac = " + actionCommand);
              break;
              case 4:
                   System.out.println("ac = " + actionCommand);
              break;
              case 5:
                   System.out.println("ac = " + actionCommand);
              break;
              case 6:
                   System.out.println("ac = " + actionCommand);
              break;
              case 7:
                   System.out.println("ac = " + actionCommand);
              break;
              case 8:
                   System.out.println("ac = " + actionCommand);
              break;
              int size = listModel.getSize();
    String Name=SelectedButton.getText();
    listModel.insertElementAt(Name,size);
         //For testing
         private void AddData2Message()
              listModel = new DefaultListModel();
              data=new String[lineArray.length];
              for(int i=0;i<lineArray.length;i++)
                   listModel.addElement(lineArray[i]);
    Tia
    Gabi

    The arrow to open the tab history of the Back and Forward buttons has been removed in Firefox 4 and later.
    Use one of these methods to open the tab history list:
    * Right click on the Back or Forward button
    * Hold down the left mouse button on the enabled Back or Forward button until the list opens
    You can look at this extension:
    * Backward Forward History Dropdown: https://addons.mozilla.org/firefox/addon/backforedrop/

  • How to set components aligned in left when we use BorderLayout

    Hello All,
    How to set the components aligned in the left when we use BorderLayout in a panel.Right now,the components are getting aligned in the center.
    Any solutions?
    Thanks in advance,
    Vijay

    By default a JPanel uses a FlowLayout when created and by default a FlowLayout uses center alignment. Read the FlowLayout API to find out how to use left alignment.
    Also each individual component has an alignmentX and alignmentY value which is set to 0.5 (center aligned). Some LayoutManagers will take this value into consideration. Read the Component API for more information.
    Also, check out this section from the Swing tutorial on "Using Layout Managers":
    http://java.sun.com/docs/books/tutorial/uiswing/layout/using.html

  • How to align menu to the right

    Hi
    How do I align a menu to the right? In the Design mode.
    Previously I've used menuBar.add( Box.createHorizontalGlue() ), but I guess you should be able to do it without coding.
    Using Netbeans 4.

    How do I do that? Where?
    " WARNING: Do NOT modify this code. The content of this method is always regenerated by the Form Editor."

Maybe you are looking for

  • How to get a default variant screen using LDB.(HR-ABAP)

    Hello,                I have created a report using LDB PNP.Used HRBEN000 as a hr report category. Got a default selection screen, I want to add one more field, for this I have selected the field from further selection button, and displayed on the sc

  • Went to use Facetime and my MB Pro said there was no camera available.

    Hi, I tried to use Face Time and my MBPro said there was no camera available.  Same thing happened when I tried to use Photo Booth.  Any ideas?  Thanks.

  • Header Too Low

    So I downloaded the A5 template just as I have several times in the past, and pasted the whole file in. It looks totally fine in the .doc, but as soon as it's uploaded to a 'print ready' file, extra white space appears above the header, so that the h

  • How to know where and when my account logged in by...

    Recently my account was used by someone and sent out a misleading message, which cause a great trouble to me. I sensed the one was in purpose. Can I check where and when my account was used on that date? How? Please help !!! waiting for your reply...

  • Cannot create FMX

    Hi all, I'm having problems generating my form. It was compiling and generating fine. I made a minor change (don't remember what it was). Now, when I do a Compile All, I don't have any errors but if I try to generate the form (ctrl-T), I receive an e