Excess frame....please help

ok, i am going mad, i really can not do this simple task.
i need to have the right ratio in my output canvas, i was told this......
To get rid of the excess area of the frame, make sure your Sequence settings match your clip settings exactly.
but i don't know where this sequence setting is??? in the view window there is no excess, but in the canvas window there is, so the ratio is wrong.....i really just need to get rid of the excess........
help!!!
many thanks

You can change sequence settings in Sequence>Settings and in the lower left click the Load Presets button. You can only change it to one of the standard FCE presets.

Similar Messages

  • 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();
    }

  • Jumpy timeline, dropped frames - please help!

    I am experiencing a persistent problem with a jumpy timeline that surges forward - (it looks like dropped frames). I have all of my media on an external hardrive with 160 GB to spare, I have formatted that HD as Mac OS extended "Journaled". I have made RT as "Safe" and video quality as "dynamic", frame rate as "dynamic". It seems to be unnoticable when I reduce the size of the canvas to below 50% but at that point I am going cross-eyed in trying to decipher the picture on the screen.
    Question 1:
    Do I need to reformat my HD without " Journalled" or is this not a problem?
    Any other ideas how to resolve?
    Question 2:
    What is Pulldown Pattern and what setting is best for my project (720 x 480 DV/DVCPRO - NTSC 29.97 fps)?
    Any help in these matters would be greatly appreciated. Thanks
    MacBook Pro   Mac OS X (10.4.8)  

    Thanks for your suggestions.
    All in all, I tried everything but to no avail. i suspect that in my trying to figure out solutions, i may have made some illogical formatting/preferences for my media and project on the hole. I ended up just starting from scratch with a new project, rudimentary preferences, imported my media - and it has been perfect ever since.
    For anyone with similar issues, I highly recommend reading this article. It troubleshoots everything having to do with this subject.
    http://docs.info.apple.com/article.html?artnum=58640
    Thanks for your help!
    Richard
    MacBook Pro   Mac OS X (10.4.8)   2.16 GHz Intel Core Duo, 2GB SDRAM, FCP 5.1.2

  • QTKit video frames (please help!)

    Hi,
    I would like to merge to videos. The way I want this to be done is one frame of the first video should become the first frame of the product video, the next frame should be the first frame of the second video. The third frame should be the second frame of the first video and so on... I started working on this using the apple sample code QTKitMovieFrameImage and I have looked thought quicktime kit (notably the QTMovie.h) and I have found no obvious way to do this. Can anyone provide me with some help on how to do this?
    Any help is very strongly appreciated
    Antoine

    You have beeing suggested twice to say something about your P.S. specs. and you have said nothing about it. We cant help you if we don't know what are we talking about, so, give complete PC specs, includding P.S. AMPS. to 3.3v. 5v. and 12v. rails. BTW. if you're going to replace V.Card because of it's lack of fan, wouldn't it be cheaper if you try to install a fan on it's chip ?

  • Please help me with the problem of validator in struts

    sorry for my poor English
    i have a question which i can't deal with.
    i have a jsp page in which some client imformation can be modified.
    The modify page accepts the parameters from the previous page in the form of href="/xxx/xxx.jsp?xxx=mobilephone ".i use the struts tag <html:text property="mobilephone " value="mobilephone "><html:errors>to display and modify the information.
    but i found the Validator Frame didn't work instead of some information in the console :
    117: </tr>
    118: <tr>
    119: <td bordercolor="#000000" bgcolor="#ECE9D8">mobilephone</td>
    120: <td><html:text property="mobilePhone"
    121: value="<%=new String(request.getParameter("mobilePhone").getBytes("ISO8859_1"),"gb2312")%>" /></td>
    122: <td width="152">
    123: <div style="background-color: #FFFF40;text-align:center;"><html:errors
    Stacktrace:
    org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:506)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:395)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    and i found the page can't be debugged before it pass the validate.
    so i think some mistake must occur in the validator frame .
    please help me.
    thank you.

    Jurgen,
    Are you just getting this error while attempting to verify? Can you successfully deploy the app? This issue looks familiar to an earlier post in this forum and I believe the archive is OK but is anerroneous verify error? If the cmp-resource is defined in sun-ejb-jar.xml then it should be fine and if the resources are correctly configured. The other thing to check is that you have a persistance manager resource defined in domain.xml; i.e.,
    <persistence-manager-factory-resource enabled="true" factory-class="com.sun.jdo.spi.persistence.support.sqlstore.impl.PersistenceManagerFactoryImpl" jdbc-resource-jndi-name="jdbc/ejbTutorialDB" jndi-name="jdo/pmf" object-type="user"/>

  • Adding Data into text and graphic frames - PLEASE CAN SOMEONE HELP?

    Hello Script buddies,
    Here is my script and I want to place data into the frames which I set up already in the inDesign template which loads correctly but unable to place the data into the frames, please refer to comments and if anyone can help me I will be very grateful.
    strFile = "C:\Users\dean.brooks\Documents\PoolSigns.xlsx"
    Set objExcel = CreateObject("Excel.Application")
    objExcel.Workbooks.Open strFile
    intRow = 2
    Set objSheet = objExcel.ActiveWorkbook.WorkSheets(1)
    ' Cycle through cells in Pool Sign Schedule to retreive data
    Do Until objSheet.Cells(intRow, 3).Value = ""
    PoolSignScheduleSignNo = Trim(objSheet.Cells(intRow, 1).Value)
    PoolSignScheduleTemplate = Trim(objSheet.Cells(intRow, 3).Value)
    PoolSignScheduleDepth = Trim(objSheet.Cells(intRow, 5).Value)
    PoolSignScheduleWarningFile = Trim(objSheet.Cells(intRow, 7).Value)
    PoolSignScheduleWarningText = Trim(objSheet.Cells(intRow, 8).Value)
    PoolSignScheduleRegFile = Trim(objSheet.Cells(intRow, 10).Value)
    PoolSignScheduleRegText = Trim(objSheet.Cells(intRow, 11).Value)
    ' Open InDesign Template that corresponds to PoolSignScheduleTemplate
    Set myInDesign = CreateObject("InDesign.Application.CS3")
    Set myDocument = myInDesign.Open(PoolSignScheduleTemplate)
    'Frames, these commands won't work, can someone please help??
    Set DepthMarker = myDocument.Textframes.Item
    DepthMarker.Contents = PoolSignScheduleDepth
    Set WarningText = myDocument.Textframes.Item
    WarningText.Contents = PoolSignScheduleWarningText
    Set WarningSymbol = myDocument.Graphicframes.Item
    WarningSymbol.Contents = PoolSignScheduleWarningFile
    Set RegText = myDocument.Textframes.Item
    RegText.Contents= PoolSignScheduleRegText
    ' Save InDesign File to C:\ to be moved manually later to appropriate location
    myDocument.Save("C:\Pools\PoolSign\PoolSignScheduleSignNo.indd")
    myDocument.Close
    intRow = intRow + 1
    Loop
    objExcel.Quit
    WScript.Quit

    Hi Robert,
    Your problem starts here:
    Set DepthMarker = myDocument.Textframes.Item
    ...which item? Item takes either an integer (the index of the item) or a string (the contents of the label property, if any).
    Next, however, is that you should be more specific about *where* the text frame is in the document. What page or spread is it on? Let's say that the frame "DepthMarker" is on page 1:
    Set DepthMarker = myDocument.Pages.Item(1).TextFrames.Item(1)
    If there's only one frame on that page, you're in great shape. If not, you need to come up with some way to differentiate one frame from another. Script labels are a great way to do this. Let's say you've used the Script Label panel to add the label "DepthMarker" to the relevant frame on page 1, and added the label "WarningText" to another frame. In that case, you'd use something like this:
    Set DepthMarker = myDocument.Pages.Item(1).TextFrames.Item("DepthMarker")(0)
    Set WarningText = myDocument.Pages.Item(1).TextFrames.Item("WarningText")(0)
    ...When you use a string to refer to a page item by its label, InDesign returns an array, so you need to get the first item in the array (assuming that there's only one page item on the page with that label).
    Hope this makes sense! I'm typing it off the top of my head because I have to go speak at a conference tomorrow and am short on time--but it should get you pointed in the right direction.
    Thanks,
    Ole

  • Please help i can't share my project I did try in all of them and it doesnt work it apears like that........ The share operation Master File has failed The operation could not be completed because an error occurred when creating frame 608 (error -1). and

    I did try in all of them and it doesnt work it apears like that........
    The share operation Master File has failed
    The operation could not be completed because an error occurred when creating frame 608 (error -1).
    and i dont know what to do plese hlp me....
    Re: when i try to share my project to quicktime aroun 50% appears error -1 and i can't share it what to do please help 

    Double post…

  • Please help with a Poster Frame

    I have imported an FLV into Flash using "Video Import" and selected a prebuilt skin that gives play, volume and caption control. The movie has autoplay turned off so when I viewed on the webpage it shows a black first screen and the skin beneath it. I would like to insert a poster frame that will hide when the user presses play on the skin. I was a novice with AS 1 and 3.0 is making me facepalm. Please help, I've already tried Flashkit and Actionscript.org and not gotten any answers. Thanks!!

    Okay in Frame 1 I have an AS layer I copied your code into, layer two is the movie clip with the image named 'myPoster' and the third layer contains the FLV playback named 'myVideo' so I changed the names in the code to:
    mvVideo.addEventListener(MouseEvent.CLICK,f):
    function f(e:MouseEvent):void{
    removeChil((myPoster);
    I get the following compiler errors and publish preview shows just the image:
    Scene1,Layer 'Action Script', Frame 1, Line 1 1078: Label must be a simple identifier.
    Scene1,Layer 'Action Script', Frame 1, Line 4 1084: Syntax error: expecting rightparen before semicolon.
    So I tried modifying the code to:
    mvVideo.addEventListener(MouseEvent.CLICK,f);
    function f(e:MouseEvent):void{
    removeChil((myPoster));
    Which fixed the original errors but still only the image shows and I get new compiler errors.
    Scene1,Layer 'Action Script', Frame 1, Line 4 1180:Call to a possibly undefined method removeChil.
    Scene1,Layer 'Action Script', Frame 1, Line 4 1120: Access of undefined property myPoster.
    Scene1,Layer 'Action Script', Frame 1, Line 1 1120: Access of undefined property myPoster.
    Thanks for your patience and help!

  • PLEASE HELP--gotoandPlay plays through frames I dont want it to.

    Hello--I am an architecture student and I am having problems
    with my Flash website. I have uploaded my half-done website on
    http://ilocker.bsu.edu/users/msgoyak/WORLD_SHARED/
    My animations end on frame 311, where I have five buttons
    linking to different frames (The Resume button links to 312 and the
    About Me button links to 313 using
    on (release) {gotoAndPlay(frame number);
    I also have "back" buttons on 312 and 313 which link back to
    311. All three frames have the stop command applied.
    My problem: Whenever I publish and try to click on Resume or
    About Me, it will only play to 312 due to the stop command, thereby
    not allowing me to get to the About Me frame (313). I have tried
    taking away the stop command but then when I click on the About Me
    button the timeline plays through 312 to get to 313 and you can
    actually see it flash through on-screen. I just want ithese buttons
    to jump to their respective frames and stop, without seeing
    anything in-between or stopping where it shouldn't. Is there a
    specific actions script that needs to be applied or would it be
    easier to create new flash documents for each link?
    Hopefully someone can help m after viewing the website
    itself.
    I have version 7 MX 2004.
    Thank you if you can provide any feedback!!!!!! Hopefully
    this frustration thing can be corrected.

A: PLEASE HELP--gotoandPlay plays through frames I dont want it to.

Use the gotoAndStop(frame number): instead of play.
The playhead will stop on the disignated frame, and you won't
need a stop
action on it.
"[email protected]" <[email protected]> wrote
in message
news:f0b17u$5ot$[email protected]..
> Hello--I am an architecture student and I am having
problems with my Flash
> website. I have uploaded my half-done website on
>
http://ilocker.bsu.edu/users/msgoyak/WORLD_SHARED/
>
> My animations end on frame 311, where I have five
buttons linking to
> different
> frames (The Resume button links to 312 and the About Me
button links to
> 313
> using
> on (release) {gotoAndPlay(frame number);
>
> }
> I also have "back" buttons on 312 and 313 which link
back to 311. All
> three
> frames have the stop command applied.
> My problem: Whenever I publish and try to click on
Resume or About Me, it
> will
> only play to 312 due to the stop command, thereby not
allowing me to get
> to the
> About Me frame (313). I have tried taking away the stop
command but then
> when I
> click on the About Me button the timeline plays through
312 to get to 313
> and
> you can actually see it flash through on-screen. I just
want ithese
> buttons to
> jump to their respective frames and stop, without seeing
anything
> in-between or
> stopping where it shouldn't. Is there a specific actions
script that
> needs to
> be applied or would it be easier to create new flash
documents for each
> link?
>
> Hopefully someone can help m after viewing the website
itself.
> I have version 7 MX 2004.
> Thank you if you can provide any feedback!!!!!!
Hopefully this frustration
> thing can be corrected.
>
>

Use the gotoAndStop(frame number): instead of play.
The playhead will stop on the disignated frame, and you won't
need a stop
action on it.
"[email protected]" <[email protected]> wrote
in message
news:f0b17u$5ot$[email protected]..
> Hello--I am an architecture student and I am having
problems with my Flash
> website. I have uploaded my half-done website on
>
http://ilocker.bsu.edu/users/msgoyak/WORLD_SHARED/
>
> My animations end on frame 311, where I have five
buttons linking to
> different
> frames (The Resume button links to 312 and the About Me
button links to
> 313
> using
> on (release) {gotoAndPlay(frame number);
>
> }
> I also have "back" buttons on 312 and 313 which link
back to 311. All
> three
> frames have the stop command applied.
> My problem: Whenever I publish and try to click on
Resume or About Me, it
> will
> only play to 312 due to the stop command, thereby not
allowing me to get
> to the
> About Me frame (313). I have tried taking away the stop
command but then
> when I
> click on the About Me button the timeline plays through
312 to get to 313
> and
> you can actually see it flash through on-screen. I just
want ithese
> buttons to
> jump to their respective frames and stop, without seeing
anything
> in-between or
> stopping where it shouldn't. Is there a specific actions
script that
> needs to
> be applied or would it be easier to create new flash
documents for each
> link?
>
> Hopefully someone can help m after viewing the website
itself.
> I have version 7 MX 2004.
> Thank you if you can provide any feedback!!!!!!
Hopefully this frustration
> thing can be corrected.
>
>

  • EPM Workspace EPM Inside Frame error- Please help ASAP!!

    Can someone please help me resolve below error with EPM-
    I've created resports in web analysis studio and am emailing smartcut URL to about 200 users. 3 of the users are getting below error-
    "EPM Workspace cannot function inside of a frame"
    pop ups are allowed; java is up to date; hyperion 11.1.2.1.102
    any tips?

    Hi,
    The document can be found in support.oracle.com
    I had pasted the contents though, which might be helpful
    After embedding a Financial Reporting (FR) report or Web Analysis (WA) report to a Planning Task List using the Smartcut url in the Planning, and then try to open the report through Task list in Workspace, you will get the following error:
    "EPM Workspace cannot function inside of a frame. Contact your system administrator."
    Cause
    This issue is caused by unpublished BUG 11854015 "ERROR OPENING PLANNING TASK LIST REPORT WITH "WITHNAV_GET"
    Solution
    Until a service fix is released to address this issue, the following workaround currently exists to resolve this issue:
    1. Use the below URL while specifying in the Smart Cut, http://server.example.com:19000/workspace/WorkspaceLaunch.jsp?uri=index.jsp%3fmodule%3dwksp.relatedcontent%26repository_path%3d%2Fmyfolder-name-here%2Fmy-report-name-here
    2. Replace myfolder-name-here with the name of the folder and my-report-name-here with the name of the report. The URL must be encoded.
    3. You must use %2F where you would use a slash in the repository path. You might also need to encode the report name due to the double-byte characters in the report name. The encoding for % is %25. So, if the character %8a appears in the SmartCut URL for the report, then the encoding for the URL above would be encoded %258a.
    Hope this helps,
    Thank you,
    Charles Babu J

  • I made a card using the iPhoto and when I click to buy it, it says that I did not fill all the frames with pictures, even though I did and have checked multiple times. Please help, it's for Mother's Day.

    I made a card using the iPhoto and when I click to buy it, it says that I did not fill all the frames with pictures and that I need to in order to purchase it, even though I did and have checked multiple times. Please help, it's for Mother's Day.

    Before ordering your book preview it using this method - http://support.apple.com/kb/HT1040 - and save the resulting PDF for reference - the delivered book will match it.
    LN

  • Final Cut Pro 4.5 & Dropped Frames..Please Help

    I am a wedding videographer and have been using Final Cut Pro with no problems for several video projects. My most current project however problems arise. I am using Mac OS X 10.4.9 with 512 MB of Ram on a G5 1.8 Single. When I try importing video from my last wedding when I capture it I always am getting a message saying dropped frames were present. I have tried 2 different camcorders, 2 different firewire cables, defragmenting my hard drive and still nothing but dropped frames messages. I also have tried importing video from a previous wedding with no luck. If anyone has any ideas please help. Thanks

    FCP 4.5 and Mac OS 10.4.9 are incompatible...known issue.
    #45 - FCP 4.5 and Mac OS 10.4.9 - how to get it working again
    Shane's Stock Answer #45 - How to get FCP 4.5 working again under Mac OS 10.4.9
    Apple's solution: Archive and install the OS again, this time updating only to 10.4.8.
    Another COOL solution: Samba2007 posted that a friend solved the FCP 4.5 + OSX 10.4.9 capture issue adding the Capture Scratch folder to the Privacy of Spotlight in this thread:
    http://discussions.apple.com/thread.jspa?messageID=4417320#4417320
    OlSchoolCutter tried with SUCCESS (see post in that thread).
    Then follow these stepe and try (it's free!):
    1. From the Apple menu, choose System Preferences.
    2. From the View menu, choose Spotlight.
    3. Click the Privacy tab to reveal the areas that Spotlight will not index.
    4. In the Finder, open your "Final Cut Pro Documents" folder.
    5. Drag the Capture Scratch folder into Spotlight's list.
    Shane

  • A Internal frame problem: Please help me

    How can you add a panel to internal frame and show it. I add a image buffer to a panel and then I want to add that panel to internal frame which exists in a main frame. Please help me with code snippet as I am unable to it since morning and struck with my progress in my work. I will be thanki ful/
    regards,
    Ravi.

    Have a look at the code I took from the excellent FREE java swing book you can get here http://www.manning.com/sbe/
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    public class CommonLayouts extends JFrame {
    public Integer LAYOUT_FRAME_LAYER = new Integer(1);
    public CommonLayouts() {
    super("Common Layout Managers");
    setSize(500, 460);
    JDesktopPane desktop = new JDesktopPane();
    getContentPane().add(desktop);
    JInternalFrame fr1 =
    new JInternalFrame("FlowLayout", true, true);
    fr1.setBounds(10, 10, 150, 150);
    Container c = fr1.getContentPane();
    c.setLayout(new FlowLayout());
    c.add(new JButton("1"));
    c.add(new JButton("2"));
    c.add(new JButton("3"));
    c.add(new JButton("4"));
    desktop.add(fr1, 0);
    fr1.show();
    JInternalFrame fr2 =
    new JInternalFrame("GridLayout", true, true);
    fr2.setBounds(170, 10, 150, 150);
    c = fr2.getContentPane();
    c.setLayout(new GridLayout(2, 2));
    c.add(new JButton("1"));
    c.add(new JButton("2"));
    c.add(new JButton("3"));
    c.add(new JButton("4"));
    desktop.add(fr2, 0);
    fr2.show();
    JInternalFrame fr3 =
    new JInternalFrame("BorderLayout", true, true);
    fr3.setBounds(330, 10, 150, 150);
    c = fr3.getContentPane();
    c.add(new JButton("1"), BorderLayout.NORTH);
    c.add(new JButton("2"), BorderLayout.EAST);
    c.add(new JButton("3"), BorderLayout.SOUTH);
    c.add(new JButton("4"), BorderLayout.WEST);
    desktop.add(fr3, 0);
    fr3.show();
    JInternalFrame fr4 = new JInternalFrame("BoxLayout - X",
    true, true);
    fr4.setBounds(10, 170, 250, 80);
    c = fr4.getContentPane();
    c.setLayout(new BoxLayout(c, BoxLayout.X_AXIS));
    c.add(new JButton("1"));
    c.add(Box.createHorizontalStrut(12));
    c.add(new JButton("2"));
    c.add(Box.createGlue());
    c.add(new JButton("3"));
    c.add(Box.createHorizontalGlue());
    c.add(new JButton("4"));
    desktop.add(fr4, 0);
    fr4.show();
    JInternalFrame fr5 = new JInternalFrame("BoxLayout - Y",
    true, true);
    fr5.setBounds(330, 170, 150, 200);
    c = fr5.getContentPane();
    c.setLayout(new BoxLayout(c, BoxLayout.Y_AXIS));
    c.add(new JButton("1"));
    c.add(Box.createVerticalStrut(10));
    c.add(new JButton("2"));
    c.add(Box.createGlue());
    c.add(new JButton("3"));
    c.add(Box.createVerticalGlue());
    c.add(new JButton("4"));
    desktop.add(fr5, 0);
    fr5.show();
    JInternalFrame fr6 =
    new JInternalFrame("SpringLayout", true, true);
    fr6.setBounds(10, 260, 250, 170);
    c = fr6.getContentPane();
    c.setLayout(new SpringLayout());
    c.add(new JButton("1"), new SpringLayout.Constraints(
    Spring.constant(10),
    Spring.constant(10),
    Spring.constant(120),
    Spring.constant(70)));
    c.add(new JButton("2"), new SpringLayout.Constraints(
    Spring.constant(160),
    Spring.constant(10),
    Spring.constant(70),
    Spring.constant(30)));
    c.add(new JButton("3"), new SpringLayout.Constraints(
    Spring.constant(160),
    Spring.constant(50),
    Spring.constant(70),
    Spring.constant(30)));
    c.add(new JButton("4"), new SpringLayout.Constraints(
    Spring.constant(10),
    Spring.constant(90),
    Spring.constant(50),
    Spring.constant(40)));
    c.add(new JButton("5"), new SpringLayout.Constraints(
    Spring.constant(120),
    Spring.constant(90),
    Spring.constant(50),
    Spring.constant(40)));
    desktop.add(fr6, 0);
    fr6.show();
    desktop.setSelectedFrame(fr6);
    public static void main(String argv[]) {
    CommonLayouts frame = new CommonLayouts();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);

  • Cant' move images from frame to frame inside a Grid in InDesign. Please Help

    When creating a grid in indesign there is an option to move images from frame to frame, and having them rotate around the frames to see where each image is best to be placed. Example I created a grid with 6 images (2 rows and 3 columns) and now i want image 1 to be where image 6 is. I know there's a way by hitting the arrows and some other keys and have all the images start rotating. I did it once I just can't remember. Please help. How do you move the an image from one frame to another frame without having to go to edit place?
    Thanks,
    Paola

    Swapping images

  • Getting red frames when export from cc 2014.2 codec used panasonic mxf format long GOP 50p. If any solution please help on that

    getting red frames when export from cc 2014.2 codec used panasonic mxf format long GOP 50p. If any solution please help on that

    i solve my red frame problem. originally my project was done in premiere pro cc 2014.2 & i render in Encoder cc 2014. in newer version i get lots of red frames. i complain a lot to adobe customer support . they said they know the issues but they couldn't solve. I was so tired from adobe customer support. one of the worse customer services i had. My friend got the mac pro & e got premiere pro cc 7.2 version. i convert all my footage mxf to mp4 in encoder cc 7.2 version and i succeed. i don't get any red frames.
    So i think the problem is in adobe encoder cc 2014.2 version. newer version.

  • When I apply smoothing to a clip, it does nothing and the video frame remains static! Please Help!

    When I apply smoothing to a clip, it does nothing and the video frame remains static. As opposed to moving around in order to compensate for my movement, which exposes black edges. That is what I am trying to get. Please help
    These are the steps I follow. Import clip > Library > Behaviours > Motion > Stabilize. I then add the stabilize > go to inspector and change method to smooth and finally, analyze. However, it is not doing anything. My Macbook Pro was recently replaced and this is what I recall doing on my previous one, but it doesnt seem to be working for me. Is there a step im missing or something?
    Thanks for any help!

    Smooth is just going to smooth out a little "jitter" or jerkiness in the footage. Unless there is a lot of camera movement, you won't notice much. If you really want to see Motion go to work, change the Method to Stabilize.
    BTW, once the footage is analyzed, you can make any changes you want to any of the other parameters - you don't have to re-analyze. I recommend Stabilize with Adjust: Position Scale and Rotation and Borders set to Zoom (depending on the quality of the video) — or you might consider adding a mask to the group the stabilized video is in

  • Maybe you are looking for