Referencing a button on frame 2

Hi, here's the problem I have been struggling with.
In a frame on the main stage I have some actionscript that
starts off
_root.submenu.btn1.onRelease = function() {
infoField._visible = true;
startLoading("picture.jpg");
the rest of the script on this frame is the function.
I discovered that the script I have is fine as long as btn1
in the mc submenu is on frame 1.
I *really* need the button to be on frame 2.
How can I target this button?
I have tried things like _root.submenu("frame
2").btn1.onRelease = function() {
and _root.submenu("label name").btn1.onRelease = function() {
I don't know how to get the script to acknowledge the button.
The only work around I have found is to have the button exist
on frame 1 of submenu and just use actionscript to make the button
visible or not visible.....I would like to avoid this if I can as
it increases a lot of actionscriopting....
Thanks

you can't target it until it exists. put it in frame 1 and
make its _visible property 0 if you don't want it to appear
on-stage or put the script on frame 2.

Similar Messages

  • Press on Button and release outside the button armed frame

    Press on Button using the Mouse and release outside the button armed frame does not generate MouseEvent.
    Or Press on the Button outside the armed frame and release inside the armed frame does not generate MouseEvent.
    Window 7
    java version "1.6.0_22"
    Java(TM) Platform, Standard Edition for Business (build 1.6.0_22-b04)
    Java HotSpot(TM) Client VM (build 17.1-b03, mixed mode, sharing)
    The question :
    Is this normal behaviour for Java Swing. Does this exist in the java specification? any idea ? or is this a bug ?
    the sample code below for you to test
    public class PanelButtonArmedFrameClick extends JPanel
       private static final long serialVersionUID = 1L;
       private JButton btn;
       public PanelButtonArmedFrameClick()
          btn = new JButton("Click on \n the button");
          this.add(btn);
          MouseListener mouseListener = new MyMouseAdapter();
          btn.addMouseListener(mouseListener);
       private static class MyMouseAdapter extends MouseAdapter
           * {@inheritDoc}
          public void mouseClicked(MouseEvent e)
             JOptionPane.showMessageDialog(new JFrame(), "Button clicked");
       public static void main(String... args)
          SwingUtilities.invokeLater(new Runnable()
             public void run()
                JFrame frame = new JFrame("Testing");
                JPanel panel = new PanelButtonArmedFrameClick();
                frame.getContentPane().add(panel);
                frame.setPreferredSize(new Dimension(500, 500));
                frame.setMinimumSize(new Dimension(500, 500));
                frame.pack();
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.setVisible(true);
    }

    Sure this is not a bug and this is the behavior of mouseClickedEvent.
    mouse clicked = mouse pressed + mouse released.
    mouseClickedEvent is a combination of mousePressed and mouseReleased evenst which are generated at the same pixel location. So if you generate mousePressed and mouseReleased events at different locations you will not get mouseClicked event.
    Thats why you are not getting mouse clicked event when you are performing mouse pressed event on one place and mouse released event on another place.

  • Referencing a button on main stage from inside a movieclip

    I am banging my head against the wall on this.
    On the main stage I have a button that I have made invisible once the file is loaded.  Inside a movieclip I have on frame 15 the following actionscript 3 code
    button_mc.visible = true;
    I want the button to become visible at the end of this movieclip.  I am not using an external as3 file, I am putting the as3 code in its own layer on the first frame.
    I know it has something to do with the path to the button, but I cannot figure it out.  If there is anyone who can point me in the right direction for referencing instances by instance name that reside on the main satge from inside a movieclip I would be very grateful.
    Thanks
    Thepopguy

    Try:
    MovieClip(this.parent).button_mc.visible = true;

  • MAKE EMBEDDED QUICKTIME WITH PLAY BUTTON IN FRAME

    Hello does anyone know how to make an embed quicktime with a play button in the video frame so it has a poster frame and a button on it and wont play until it is clicked on

    It's known as a poster movie. The first file acts as either a placeholder (or a button) that is linked to the second file.
    You can use any image format to create your click to play "button" and add it to a single frame from your movie or to another image. Size this 16 pixels higher than your movie source file if you plan on showing the movie controller and save it as poster.mov.
    Your html code will have this poster movie load and nothing further will happen until your visitor clicks on it. Once clicked the second .mov file will begin downloading and then playing. You can also use this poster movie technique to load a second movie directly in the QuickTime Player app.
    http://homepage.mac.com/kkirkster/C/
    One of mine. Take a look at the page source to understand the "href" and "target" tags.

  • Button to frame | button going back to the main frame (please help)

    these are the codes, by clicking the "FCFS" button it will generate another frame and from that frame another button will be pressed "accept" and it will go to another frame....
    my problem is that i nid to put codes on the "back" button to go back to the main frame were it started... please help me... thnks
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Oscon extends JFrame
         private JButton fcfsB, priorityB, sjfB, rrB, exitB, creditsB;
         private fcfsButtonHandler fbHandler;
         private priorityButtonHandler pbHandler;
         private sjfButtonHandler sbHandler;
         private rrButtonHandler rbHandler;
         private exitButtonHandler ebHandler;
         private creditsButtonHandler cbHandler;     
         public Oscon()// main frame
              fcfsB = new JButton ("FCFS");
              fbHandler = new fcfsButtonHandler();
              fcfsB.addActionListener(fbHandler);
              priorityB = new JButton ("PRIORITY");
              pbHandler = new priorityButtonHandler();
              priorityB.addActionListener(pbHandler);
              sjfB = new JButton ("SJF");
              sbHandler = new sjfButtonHandler();
              sjfB.addActionListener(sbHandler);
              rrB = new JButton ("RR");
              rbHandler = new rrButtonHandler();
              rrB.addActionListener(rbHandler);
              exitB = new JButton ("EXIT");
              ebHandler = new exitButtonHandler();
              exitB.addActionListener(ebHandler);
              creditsB = new JButton ("CREDITS");
              cbHandler = new creditsButtonHandler();
              creditsB.addActionListener(cbHandler);
              setTitle("CPU SCHEDULING");
              Container pane =getContentPane ();     
              pane.setLayout(new GridLayout(2,3));
              pane.add(fcfsB);
              pane.add(priorityB);
              pane.add(sjfB);
              pane.add(rrB);
              pane.add(exitB);
              pane.add(creditsB);
              setSize(500,100);
              setVisible(true);
              setDefaultCloseOperation(EXIT_ON_CLOSE);
         public class fcfsButtonHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
                   JFrame frame = new JFrame("FCFCS setting");
         final JLabel FCFSProcessL, FCFSp1L,FCFSp2L,FCFSp3L,FCFSp4L, FCFSbt;
              final JTextField FCFSp1TF,FCFSp2TF,FCFSp3TF,FCFSp4TF;
                        FCFSProcessL = new JLabel("PROCESS", SwingConstants.CENTER);
                        FCFSp1L     = new JLabel("P1:", SwingConstants.CENTER);
                        FCFSp2L     = new JLabel("P2:", SwingConstants.CENTER);
                        FCFSp3L     = new JLabel("P3:", SwingConstants.CENTER);
                        FCFSp4L     = new JLabel("P4:", SwingConstants.CENTER);
                        FCFSbt      = new JLabel("BT:", SwingConstants.CENTER);
                        FCFSp1TF= new JTextField (10);
                        FCFSp2TF= new JTextField (10);
                        FCFSp3TF= new JTextField (10);
                        FCFSp4TF= new JTextField (10);
                        JButton     FCFSokB = new JButton ("Accept");
                        FCFSokB.addActionListener(new ActionListener() {   
                        public void actionPerformed(ActionEvent e)
                                  JFrame frame2 = new JFrame("FCFCS");
                                  frame2.setSize(500,500);
                                  frame2.setVisible(true);
                                  frame2.setDefaultCloseOperation(EXIT_ON_CLOSE);
                                  JButton     FCFSclearB = new JButton ("clear");
                                  FCFSclearB.addActionListener(new ActionListener() {   
                                  public void actionPerformed(ActionEvent e)
                                  FCFSp1TF.setText("");
                                  FCFSp2TF.setText("");
                                  FCFSp3TF.setText("");
                                  FCFSp4TF.setText("");
                        JButton     FCFSBackB = new JButton ("Back");
                        FCFSBackB.addActionListener(new ActionListener() {   
                        public void actionPerformed(ActionEvent e)
                                  setTitle("CPU SCHEDULING");
                                  frame.setLayout(new GridLayout(7,2));
                                  frame.add(FCFSProcessL);
                                  frame.add(FCFSbt);
                                  frame.add(FCFSp1L);
                                  frame.add(FCFSp1TF);
                                  frame.add(FCFSp2L);
                                  frame.add(FCFSp2TF);
                                  frame.add(FCFSp3L);
                                  frame.add(FCFSp3TF);
                                  frame.add(FCFSp4L);
                                  frame.add(FCFSp4TF);
                                  frame.add(FCFSokB);
                                  frame.add(FCFSclearB);
                                  frame.add(FCFSBackB);
                                  frame.setSize(200,250);
                                  frame.setVisible(true);
                                  frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
         public class priorityButtonHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
         public class sjfButtonHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
                   System.exit (0);          
         public class rrButtonHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
                   System.exit (0);          
         public class exitButtonHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
                   System.exit (0);          
         public class creditsButtonHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
                   System.exit (0);          
              public static void main (String [] args)
              Oscon O = new Oscon();
    }

    please help me revise my program, im almost done, i just nid to set the progress bar that it will run according to the waiting time, or set the progress bar to run in order.. these are the variable names of the progress bar(current1, then current2, then current3 then current4).
    i looked it up on the site and i cant really understand it... i just did the part where i included the progress bar to the interface. ijust want the 4 progress bars to run after clicking the accept button.... Please help me!!! its for my project and i didnt slept last night just working on this... i just nid help sir... thnks...
    these are the codes i made:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.JProgressBar;
    public class CPUSched
              public CPUSched()
              JFrame frame = new JFrame();
                   JProgressBar current1, current2, current3, current4;
                   Thread runner;
                   int num = 0;
              final JLabel ProcessL, p1L,p2L,p3L,p4L, bt, prioL, tqL, wtL, awtL, awtLA;
                   final JTextField p1TF,p2TF,p3TF,p4TF, prio1TF, prio2TF,prio3TF,prio4TF, tqTF ;
                   final JLabel      blank1, blank2, blank3, blank4, blank5, blank6, blank7, blank8, blank9, blank10, blank11,
                                       blank12, blank13, blank14, blank15;
                   final JLabel     blank16, blank17, blank18, blank19, blank20, blank21, blank22, blank23, blank24, blank25,
                                       blank26, blank27, blank28, blank29, blank30;
                   current1 = new JProgressBar(0, 2000);
                   current1.setValue(0);
         current1.setStringPainted(true);
                   current2 = new JProgressBar(0, 2000);
                   current2.setValue(0);
         current2.setStringPainted(true);
                   current3= new JProgressBar(0, 2000);
                   current3.setValue(0);
         current3.setStringPainted(true);
                   current4 = new JProgressBar(0, 2000);
                   current4.setValue(0);
         current4.setStringPainted(true);
                        ProcessL = new JLabel("PROCESS", SwingConstants.CENTER);
                        p1L     = new JLabel("P1:", SwingConstants.CENTER);
                        p2L     = new JLabel("P2:", SwingConstants.CENTER);
                        p3L     = new JLabel("P3:", SwingConstants.CENTER);
                        p4L     = new JLabel("P4:", SwingConstants.CENTER);
                        bt      = new JLabel("Burst Time:", SwingConstants.CENTER);
                        prioL= new JLabel("Priority (1-4):", SwingConstants.CENTER);
                        tqL= new JLabel("Time Quantum:", SwingConstants.CENTER);
                        wtL= new JLabel("Waiting time:", SwingConstants.CENTER);
                        awtL= new JLabel("Average Waiting time:");
                        awtLA= new JLabel("");
                        blank1= new JLabel("");
                        blank2= new JLabel("");
                        blank3= new JLabel("" ,SwingConstants.CENTER);
                        blank4= new JLabel("");
                        blank5= new JLabel("", SwingConstants.CENTER);
                        blank6= new JLabel("");
                        blank7= new JLabel("");
                        blank8= new JLabel("" ,SwingConstants.CENTER);
                        blank9= new JLabel("");
                        blank10= new JLabel("");
                        blank11= new JLabel("", SwingConstants.CENTER);
                        blank12= new JLabel("");
                        blank13= new JLabel("");
                        blank14= new JLabel("");
                        blank15= new JLabel("");
                        blank16= new JLabel("");
                        blank17= new JLabel("");
                        blank18= new JLabel("");
                        blank19= new JLabel("");
                        blank20= new JLabel("");
                        blank21= new JLabel("");
                        blank22= new JLabel("");
                        blank23= new JLabel("");
                        blank24= new JLabel("");
                        blank25= new JLabel("");
                        blank26= new JLabel("");
                        blank27= new JLabel("");
                        blank28= new JLabel("");
                        blank29= new JLabel("");
                        blank30= new JLabel("");
                        p1TF= new JTextField (2);
                        p2TF= new JTextField (2);
                        p3TF= new JTextField (2);
                        p4TF= new JTextField (2);
                        prio1TF= new JTextField (2);
                        prio2TF= new JTextField (2);
                        prio3TF= new JTextField (2);
                        prio4TF= new JTextField (2);
                        tqTF= new JTextField (2);
                             prio1TF.setEditable(false);
                             prio2TF.setEditable(false);
                             prio3TF.setEditable(false);
                             prio4TF.setEditable(false);
                             tqTF.setEditable(false);
                        JButton     okB = new JButton ("Accept");
                        okB.addActionListener(new ActionListener() {   
                        public void actionPerformed(ActionEvent e)
                             double iw=0, wtp1, wtp2, wtp3, wtp4;
                             double bt1, bt2, bt3, bt4;
                             double averageWT, sumWT;
                             bt1=Double.parseDouble(p1TF.getText());
                             bt2=Double.parseDouble(p2TF.getText());
                             bt3=Double.parseDouble(p3TF.getText());
                             bt4=Double.parseDouble(p4TF.getText());
                             wtp1 = iw;
                             wtp2 = wtp1+bt1;
                             wtp3 = wtp2+bt2;
                             wtp4 = wtp3+bt3;
                             sumWT = wtp1+wtp2+wtp3+wtp4;
                             averageWT = sumWT/4;
                             awtLA.setText(""+averageWT);
                             blank3.setText(""+wtp1);
                             blank5.setText(""+wtp2);
                             blank8.setText(""+wtp3);
                             blank11.setText(""+wtp4);
                        JButton     clearB = new JButton ("Clear");
                        clearB.addActionListener(new ActionListener() {   
                        public void actionPerformed(ActionEvent e)
                                  p1TF.setText("");
                                  p2TF.setText("");
                                  p3TF.setText("");
                                  p4TF.setText("");
                             awtLA.setText("");
                             blank3.setText("");
                             blank5.setText("");
                             blank8.setText("");
                             blank11.setText("");
                             frame.setTitle("First Come First Serve");
                                  frame.setLayout(new GridLayout(6,6));
                                  frame.add(ProcessL);
                                  frame.add(blank1);
                                  frame.add(wtL);
                                  frame.add(bt);
                                  frame.add(prioL);
                                  frame.add(tqL);
                                  frame.add(p1L);
                                  frame.add(current1);
                                  frame.add(blank3);                              
                                  frame.add(p1TF);
                                  frame.add(prio1TF);
                                  frame.add(tqTF);
                                  frame.add(p2L);
                                  frame.add(current2);
                                  frame.add(blank5);
                                  frame.add(p2TF);
                                  frame.add(prio2TF);
                                  frame.add(blank6);
                                  frame.add(p3L);
                                  frame.add(current3);
                                  frame.add(blank8);
                                  frame.add(p3TF);
                                  frame.add(prio3TF);
                                  frame.add(blank9);
                                  frame.add(p4L);
                                  frame.add(current4);
                                  frame.add(blank11);
                                  frame.add(p4TF);
                                  frame.add(prio4TF);
                                  frame.add(blank12);
                                  frame.add(blank13);
                                  frame.add(blank14);
                                  frame.add(okB);
                                  frame.add(clearB);
                                  frame.add(awtL);
                                  frame.add(awtLA);
                                  frame.setSize(800,200);
                                  frame.setVisible(true);
                                  frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         public static void main (String [] args)
              CPUSched O = new CPUSched();
    }

  • Using chapter markers as button start frames

    I have a track with chapter markers, and I'm using a template menu with buttons to which I'm assigning the various chapter markers. I'd like to have the button thumbnail display the video from the start frame the corresponds to the particular chapter marker that I've assigned to that button. I can do this manually in the button inspector; you choose the video track as the "asset" and then use the slider to manually set the start frame. However, this is a tedious way to do this, I'm sure there must be a way to automatically set the thumbnail to display the video from the corresponding chapter marker?

    option-drag the track from the graphical view onto the "chapter selection" button on your main menu - Choose "create chapter index" from the drop palette. and pick your template. This will automatically create as many chapter selection menus as are needed, with chapter markers displayed in the thumbnails, and all the navigation hooked up correctly. At least as correctly as the template specifies.
    Hope this helps -
    Max Average

  • Where is the button? ( Frames 2 Timeline )

    Hello folks, I got a big problem here, no where on the Animation Panel I can
    find the button to switch from frames view to timeline view.
    Anyone know why?  I need to switch views but don't see how.
    Thanks........         Gesy

    I think timline view is in Photoshop Extended and not in Photoshop which it looks like your running. Extended has a few more menu items and some 3D and video support things like timeline view,  blending mode options, 3d renering, rotation etc....
    From CS5 Help
    Timeline animation workflow (Photoshop Extended)
    To animate layer content in timeline mode (rather than frame mode), you set keyframes in the Animation panel, as you move the current-time indicator to a different time/frame, and then modify the position, opacity, or style of the layer content. Photoshop automatically adds or modifies a series of frames between two existing frames—varying the layer properties (position, opacity, and styles) evenly between the new frames to create the appearance of movement or transformation.
    For example, if you want to fade out a layer, set the opacity of the layer in the starting frame to 100% and in the Animation panel, click the Opacity stopwatch for the layer. Then move the current-time indicator to the time/frame for the ending frame and set the opacity for the same layer to 0%. Photoshop Extended automatically interpolates frames between the start and end frames, and the opacity of the layer is reduced evenly across the new frames.
    In addition to letting Photoshop interpolate frames in an animation, you can also create a hand-drawn frame-by-frame animation by painting on a blank video layer.

  • How to change the Find Again button in Frame 8

    I'm using FrameMaker 8 with Windows XP Professional. The binoculars icon on the Formatting Bar accesses the Find Next function rather than Find/Change, which is highly annoying and useless because you either get a warning message or it automatically searches for the previously entered item. This is how it came when Frame was installed, I have no idea why.
    How can I get the binoculars icon to function as Find/Change? I tried View > Menus > Modify but it takes me to the Menu Customization File dialog where I'm to select a file and I don't know what to do from there (and can't find any mention of this function in the Help.
    Thanks,
    Tim

    You may be able to remove the emoji button by going to Settings > General > Keyboards and then click Edit and deleting the Emoji keyboard.

  • DW8 flash button target frame not working

    I'm using DW8 v8.0.2 on Windows XP Home Edition SP1. I have
    created a frameset by doing the following:
    - Select File>New from menu bar
    - Select Framesets category
    - Select Fixed Top, Nested Left in Framesets column
    - Select Create
    Then, I add a Flash Button in the leftFrame and target the
    mainFrame by doing the following:
    - Select Insert>Media>Flash Button on menu bar
    - Select Blip Arrow
    - Set text to Information
    - Set Size to 12
    - Select my information.htm file from Browse button of Link
    box
    - Select mainFrame from Target box drop-down list
    - Enter information.swf as filename in Save as box
    - Select OK
    Then, I select File>Save All
    When I preview in a browser, I select the button & the
    content opens in a new browser window instead of the mainFrame
    frame. The same happens if I select leftFrame as target. However,
    _top, _self, _parent, and _blank seem to work well. I renamed
    mainFrame to contentFrame & it made no difference. I tried it
    in IE and Netscape, no difference, except Netscape is a lot faster.
    Tried text links to do the same thing & they work fine.
    Tried other flash buttons and they behave the same as Blip Arrow
    button.
    Saw several discussions on web & in this forum, but no
    solutions. Searched Knowledgebase, no solutions.
    Saw some attempts at solutions dealing with button code, but
    DW8 creates .swf file & button code is not editable.
    Is there a solution to this problem?

    I've encountered the same problem. This can't possibly be a
    bug ... it's too common a function. I've noticed there has been no
    reply to your posting. Have you figured out the solution from
    another source?

  • Add video to button over frame/state

    How can I add a few seconds of video into the over
    frame/state of a button?
    Visit
    http://www.fxnetworks.com/shows/originals/rescueme/#/home/
    to see the example of video that animates when I mouse over the the
    red boxes Exclusive Video, About The Show, and Cast &
    Crew.

    Refer the flashvideogallery made by adobe using AS2 and AS3 .
    In the samples of video-flash

  • Accessing buttons inside frame a movieClip

    I understand that putting all code on the main timeline of
    the main movie is the best way to do things; A button in my main
    movie allows users to view a movieClip – this MC contains 2
    frames: in frame 1 a ‘continue’ button takes users to
    frame 2 of same movieClip – frame 2 has a close button
    – this is the one that doesn’t work. It seems that
    anything after the initial frame isn’t recognised when the
    code is on main (root) timeline. This can’t be right?
    For clarification, this is my code:
    myMovieClip._visible = false;
    /////////////////FUNCTIONS//////////////////
    function fViewInfo() {
    myMovieClip._visible = true;
    function clearAll() {
    _root.myMovieClip.gotoAndStop("frame1");
    _root.myMovieClip._visible = false;
    /////////////////BUTTON ACTIONS//////////////
    viewInfo.onRelease = fViewInfo;
    myMovieClip.continue_btn.onRelease = function() {
    myMovieClip.gotoAndStop("frame2");
    myMovieClip.close_btn.onRelease = clearAll;

    couple of things i'd check:
    1) in myMovieClip, is there only ONE item per layer? two
    items = bad juju, no workey.
    2) make sure you have a hit area defined for the button.
    seems dumb, but let's be sure... never know...
    3) realize that once you move off of frame 1, there is no
    code working. so park some code on frame 2 that will handle what
    you want to happen. although, i'd handle it a bit differently by
    altering the button itself to have 2 frames (minimum) that act like
    a toggle from 'continue' to 'close'. much better that way and you
    can still handle all your code in frame 1.
    the code i'd put on the button (a movie clip) would look like
    this (2 frames total):
    on frame 1 (the one that says 'continue'):
    stop();
    this.onRelease = function()
    doSomeStuff(); // this actually does some stuff, like play
    or some other function
    gotoAndStop(2); // go to the frame that has 'close' on it
    on frame 2 (the one that says 'close):
    stop();
    this.onRelease = function()
    doSomeOtherStuff(); // this actually does some stuff, like
    play or some other function
    //gotoAndStop(1); // optional return to frame 1 if you want
    to make a toggle behaviour...
    i hope this helps. if not... um... try to explain in other
    words and i'll try again.
    NB :)

  • Question on multiple state buttons and frames

    Hi Guys
    I'm having a couple of problems that are really giving me a headache and I wondered if you might be able to help, I know pretty much nothing about code and I'm mostly using the design mode. I've also tried reading up but can't seem to find my answers......
    Firstly I've made a really pretty navigation bar in fireworks using multiple state buttons (up,over & down) and have tried to export it. I can open the .htm file it creates through dreamweaver as a preview and it works fine but when I try to insert that file in my page it doesnt, it just appears as the flat image (slices seem intact). I've tried everything I can think of which to be honest is not much but nothing seems to get it to have that functionality. I've done this before on a site and it worked I just cant seem to see what I'm missing....
    Secondly, I'm using the navigation bar I've created to open my content pages within a frame on the main page so it's part of the page that changes but I read that frames are the devil becuase of search engines picking up only the content pages and not opening the main site. I then had a little play with Iframes but couldnt work out how to change that section on the button click and when I tried to research I saw Iframes have the same problem as frames (with search engines). The other option many people seem to advocate is making a template and updating the whole page on click. However if I do that my 'down' state of the menubar will be refreshed every time and effectively be useless. Any suggestions? If all else fails I will probably use the frame option as I only really anticipate to direct people to my site personally. In the future I would have the site redone by a professional, I just want something quick, pretty and functional.
    Can anyone help me please?
    Thanks
    Ben

    One caveat before I start. Apple DOES NOT support Time Machine backups to AirPort Disks (what Apple calls a USB hard drive attached to the AirPort Extreme's USB port). (ref: Mac OS X 10.5: Time Machine doesn't back up to AirPort Extreme AirPort Disks)
    Ok, with that said:
    1. Can I backup multiple macs onto single WD drive using TM software?
    Yes. TM will create a new sparsebundle storing the data for that particular Mac.
    2. Faq discusses disk partitioning but I don't see shared WD disk drive when I bring up disk utility. Do I need to directly connect WD drive to snow leopard to run disk utility against that drive?
    Disk Utility does not work with network drives. In order to use it to repartition the WD, you will need to temporarily connect the WD to one of your Macs.
    3. If I add Time Capsule does this mean I need to dump the AEBS? Or can TC just operate as network-attached storage?
    The Time Capsule was specifically designed to be a combination Internet gateway router and a destination for TM backups. It is basically an AEBS with an internal hard drive. You can also attach your WD drive to its USB port (which Apple does support) for TM backups. That way, you can use either the internal or external drive for backups and the other for NAS.
    The TC; however, is NOT a media server ... but it can perform the role of media storage.

  • How to get rid of  "Minimize" button from frame?

    Hi all,
    Can anyone give me some idea- I want to have a frame without minimize button at the corner.
    Pls help

    Or set it undecorated (can you make a JFrame undecorated?) and just replicate the other buttons with java components

  • Referencing _root.Button  from a movie loaded inside another movie

    I have the following situation
    MainMove.swf is doing a loadmovie of SecondMovie.swf
    The Button that loads SecondMovie.swf also disables other buttons in MainMovie.swf
    on (release) {
        _root.intro_btn.enabled = flase;
        loadMovieNum("SecondMovie.swf", 2);
    How do I Re enabled the Buttons in MainMovie.swf from a Button within SecondMovie.swf???
    Using AS2 is this current project
    Thanks

    You might be able to use the same line of code setting the enabled value to true.  If you have not locked the root of the loaded swf, the _root should till be pointing at the main movie.
    _root.intro_btn.enabled = true;

  • Problem Coding Button over Frame by Frame Animation

    Compiler Error: Scene=Scene 1, layer=actoins, fr;'{'
    expected

    Thanks to all for your help. It ended up being a problem
    involving the template supplied with Flash. I was using a template
    I believe to have been based on ActionScript 2 and the tutorial I
    was borrowing the code from was assuming I was working with an
    ActionScript 3 document. As soon as I created an empty ActionScript
    3 document and loaded my existing elements in, as MovieClips in the
    first frame of the timeline, everything worked as it was supposed
    to.
    Thanks to everyone for your attempts to help.
    Best regards,
    -Bill

Maybe you are looking for

  • How can I get a list of rated files in folders/subfolders?

    I use a star rating system to select which photos I need to work on. Each subject has their own folder. Within each subject's folder are subfolders, one for each time I have a photo shoot with them. The hierarchy looks something like this..... MainFo

  • Performance on Select Single&Write  AND Select*(For All Entries)&Read&Write

    Hi Experts, I got a code review problem & we are in a argument. I need the best performance code out of this two codes. I have tested this both on 5 & 1000 & 3000 & 100,000 & 180,000 records. But still, I just need a second opinion of experts. TYPES

  • Attaching files to a PDF form and Submission.

    I'm pretty new to LC (hence the sn) and running into a little problem.  Currently, I have created a form that allows the attachment of files.  Everything is fine and dandy as I am able to ADD, OPEN and DELETE any file as I'm filling out the form.  Ho

  • Hyperlinks - how to create a hot spot link?

    I would like to link to a new page from a button at the footer area only. This would not have a main menu level link. So where would I add the page in the site plan? Would I add a page to a 2nd tier and hide the name? Also how do I 'call' the hyperli

  • Remove the comment time stamp in a PDF document

    Does anyone know what's the best way to remove the comment time stamp from a document? thanks