Problems with scrollable frames

I have an old DPS file that has videos inside a scrollable frame and they work fine. However, i am updating my files and in the new CS6/cc when i create the content, I group all the items, cut and paste into the smaller textframe and when i go to the Folio Overlays panel with the text frame highlighted, the option for scrollable frames is greyed out.  Video is highlighted but it will not allow me to create a scrollable frame.  Does anyone have a recommendation for what i am doing wrong. 

You are correct, I missed your point.
I got it this time though and it worked!
Wow, nifty work around.  Thanks.
Now that I have successfully embedded video within the scrollable frame, I am concerned about the 2 GB max from apple.
I researched streaming video and successfully tested this, however it seems the frame for the video needs to be scaled to the preferred viewable size because there is not an option for “play full screen”.  As you can see in the screenshot below, I am trying to place the video under the play button using streaming content. 
Do you know if this is possible?
Jill

Similar Messages

  • Problems with dropped frames in FCP 4.5 Log & Capture

    Thanks for the advice on my previous post regarding sound problems - those are now sorted, but I am having problems with dropped frames in Log and Capture. I am using FCP 4.5 with OS X 10.4.10 on a Powermac G4. CPU 867 mhz dual processor. L2 Cache 256 kb, L3 cache 1 mb. Memory 1g. Bus speed 133hz. I am capturing from a Canon XM1 via Firewire. The scratch disk is a 500gb Seagate FreeAgent USB 2.0, 7200rpm.
    Basically, the video and audio are fine while playing back in Log and Capture and I can control the device, but any attempt to capture, whether Capture Now or Clip result in a very jerky picture and aborts with dropped frames after a few seconds. The sound is ok for the few seconds before it aborts. There do not appear to be any problems with the timecode.
    My capture preset is DV Pal 48hz.
    Any advice or pointers gratefully received.
    Thanks, Ally

    Well quite. I have just tried it in the internal hard drive and it works fine now. I am going to have to capture everything to my small hard drive and move it across to the external. Then, when I have finished I am going to bang my head against the wall and buy an external HDD with Firewire.
    Thanks,
    Ally

  • Problems with still frames blurring in Final Cut Express....

    I have had problems with still frames blurring. I've discovered it's related to the green line above the time line on the sequence bar. I can't find the name of the bar but it's red if you need rendering. There are green lines and when the scrubber hits the line the frame goes blurry.
    I'm guessing it's related to another previous attempt at adding motion to the still. My question, I think, is how to eliminate the green lines to the regular blue?
    jb

    If there are any colored bars above your video other than the normal grey/light blue then you need to render the sequence out by hitting Option-R.

  • Can some one help me with this problem with my frame???

    i have gt a veri strange problem with my program,that is teh graphic changes only when i resize the the frame,if i dun resize,it will remain the same.However what i intended is that when i click on the radio button,it will change immediately to the respective pages.A simple version of my code is below,can someone helpl me solve it??(there is 3 different class)
    import java.awt.event.*;
    import javax.swing.*;
    public class MainPg extends JFrame implements ActionListener{
         private javax.swing.JPanel jContentPane = null;
         private javax.swing.JPanel buttons = null;
         private javax.swing.JRadioButton one = null;
         private javax.swing.JRadioButton two = null;
         private javax.swing.JPanel change = null;
         public MainPg() {
              super();
              initialize();
         private void initialize() {
              this.setSize(300, 200);
              this.setContentPane(getJContentPane());
              this.setName("mainClass");
              this.setVisible(true);
         private javax.swing.JPanel getJContentPane() {
              if (jContentPane == null) {
                   jContentPane = new javax.swing.JPanel();
                   jContentPane.setLayout(new java.awt.BorderLayout());
                   jContentPane.add(getButtons(), java.awt.BorderLayout.WEST);
                   jContentPane.add(getChange(), java.awt.BorderLayout.CENTER);
              return jContentPane;
         private javax.swing.JPanel getButtons() {
              if(buttons == null) {
                   buttons = new javax.swing.JPanel();
                   java.awt.GridLayout layGridLayout1 = new java.awt.GridLayout();
                   layGridLayout1.setRows(2);
                   layGridLayout1.setColumns(1);
                   ButtonGroup group=new ButtonGroup();
                   group.add(getOne());
                   group.add(getTwo());
                   buttons.setLayout(layGridLayout1);
                   buttons.add(getOne(), null);
                   buttons.add(getTwo(), null);
              return buttons;
         private javax.swing.JRadioButton getOne() {
              if(one == null) {
                   one = new javax.swing.JRadioButton();
                   one.setText("One");
                   one.setSelected(true);
                   one.addActionListener(this);
                   one.setActionCommand("one");
              return one;
         private javax.swing.JRadioButton getTwo() {
              if(two == null) {
                   two = new javax.swing.JRadioButton();
                   two.setText("Two");
                   two.addActionListener(this);
                   two.setActionCommand("two");
              return two;
         private javax.swing.JPanel getChange() {
              if(change == null) {
                   change = new javax.swing.JPanel();
              change.add(new One());
              return change;
         public static void main(String[] args){
              new MainPg();
         public void actionPerformed(ActionEvent e) {
              change.removeAll();
              if("one".equals(e.getActionCommand())){
                   change.add(new One());
              else{
                   change.add(new Two());
              change.repaint();
    import javax.swing.*;
    public class One extends JPanel {
         private javax.swing.JPanel jPanel = null;
         private javax.swing.JLabel jLabel = null;
         private javax.swing.JPanel jPanel1 = null;
         private javax.swing.JLabel jLabel1 = null;
         private javax.swing.JLabel jLabel2 = null;
         public One() {
              super();
              initialize();
         * This method initializes this
         * @return void
         private void initialize() {
              this.setLayout(new java.awt.BorderLayout());
              this.add(getJPanel(), java.awt.BorderLayout.NORTH);
              this.add(getJPanel1(), java.awt.BorderLayout.WEST);
              this.setSize(300, 200);
         * This method initializes jPanel
         * @return javax.swing.JPanel
         private javax.swing.JPanel getJPanel() {
              if(jPanel == null) {
                   jPanel = new javax.swing.JPanel();
                   jPanel.add(getJLabel(), null);
              return jPanel;
         * This method initializes jLabel
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel() {
              if(jLabel == null) {
                   jLabel = new javax.swing.JLabel();
                   jLabel.setText("one");
              return jLabel;
         * This method initializes jPanel1
         * @return javax.swing.JPanel
         private javax.swing.JPanel getJPanel1() {
              if(jPanel1 == null) {
                   jPanel1 = new javax.swing.JPanel();
                   java.awt.GridLayout layGridLayout2 = new java.awt.GridLayout();
                   layGridLayout2.setRows(2);
                   layGridLayout2.setColumns(1);
                   jPanel1.setLayout(layGridLayout2);
                   jPanel1.add(getJLabel2(), null);
                   jPanel1.add(getJLabel1(), null);
              return jPanel1;
         * This method initializes jLabel1
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel1() {
              if(jLabel1 == null) {
                   jLabel1 = new javax.swing.JLabel();
                   jLabel1.setText("one");
              return jLabel1;
         * This method initializes jLabel2
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel2() {
              if(jLabel2 == null) {
                   jLabel2 = new javax.swing.JLabel();
                   jLabel2.setText("one");
              return jLabel2;
    import javax.swing.*;
    public class Two extends JPanel {
         private javax.swing.JLabel jLabel = null;
         public Two() {
              super();
              initialize();
         * This method initializes this
         * @return void
         private void initialize() {
              this.setLayout(new java.awt.FlowLayout());
              this.add(getJLabel(), null);
              this.setSize(300, 200);
         * This method initializes jLabel
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel() {
              if(jLabel == null) {
                   jLabel = new javax.swing.JLabel();
                   jLabel.setText("two");
              return jLabel;
    }

    //change.repaint();
    change.revalidate();

  • Major problems with dropped frames while trying to capture

    Are there any settings where you can change the sensitivity of FCP HD or any settings that I am not aware of?
    Trying to capture from DigiBeta through a Sony J30 SDI, the whole thing wount go for a minute without intruption and dropped frames.
    I have tryed several tapes and finally I tried to copy through FireWire on to MiniDV on my XL1on a new unused DV-tape and then from there on capture into FCP but the problem remains.
    I have had some minor problems with this earlier but never as severe.
    I am capturing onto a Lacie BigDisc hooked up through Firewire 800 and there ia 170 GB free so thet should not be a problem.

    Andreas,
    The J30 specs state "All standard definition, half-inch Betacam format tapes, dating back some twenty years, can now easily be converted to a 25 Mbps DV signal and transferred to a compatible DV device via a single digital interface cable.", but you say you've tried that, and from the specs I'm assuming you'd need some conversion from the deck to go straight into FCP...like a Canopus or like you did dropping to DV tape.
    Have you tried a different FW port and/or cable?
    Other posts have mentioned changes of FW cables or ports as a solution, so I'm inclined to agree with David that you may require a FW800 card...we purchased one, when we bought our Big Disk Extreme. However, I don't capture to it, only archives and storage.
    Are you trying to capture internally to your system drive? (I'd guess not, as I've read some of your posts and would be surprised if you were)
    Any recent upgrades/updates or other changes in your config?
    K

  • Smaller problem with handling frame-borders in dreamweaver 8

    Hello people
    I have build a website using a frameset in dreamweaver 8.
    Ewerything works fine, except i cannot drag in my frames when i
    re-open the page. I try to select frames in the "windows" bar, and
    click on the different frames to make the frame-border appear, but
    it does not. Only dotted lines that indicate the selected frame
    appear.
    mabe there is a button somewhare that make the draggeble
    borders come back..
    if anybody knows the anwser to my problem - please write.
    Thanks
    Daniel - Copenhagen

    > I have build a website using a frameset in dreamweaver
    8.
    Why? Are you familiar with all the problems associated with
    choosing frames
    for you layout?
    > except i cannot drag in my frames when i re-open the
    page
    Hmm - I don't understand this. You have created a frameset
    page in which
    you define your frames, right? And you have saved both the
    frame pages, and
    the frameset page, right? So, you next open which page? The
    frameset? Or
    the frame page?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "duranduranduran" <[email protected]> wrote
    in message
    news:glk8uh$noc$[email protected]..
    > Hello people
    >
    > I have build a website using a frameset in dreamweaver
    8. Ewerything works
    > fine, except i cannot drag in my frames when i re-open
    the page. I try to
    > select frames in the "windows" bar, and click on the
    different frames to
    > make
    > the frame-border appear, but it does not. Only dotted
    lines that indicate
    > the
    > selected frame appear.
    > mabe there is a button somewhare that make the draggeble
    borders come
    > back..
    >
    > if anybody knows the anwser to my problem - please
    write.
    >
    > Thanks
    >
    > Daniel - Copenhagen
    >
    >

  • Help with scrollable frames...

    If I put a Landscape ad in a portrait frame and do a scrollable frame on that ad, how do I get to the next page of content when that requires a horizontal swipe? Thanks

    HI, I have been trying to do this kind of scollable frames and it is impossible to navigate to the next page if you swipe in the scrollable area.
    But take a look at Hatched 2013 app (featured in DPS gallery) they manage to go to the next page swiping in the scrollable area! Any idea of how they do that?
    Thank you

  • Problem with scrollable resultset of oracle

    I encountered problom like this:
    when I use
    s=createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_READ_ONLY);
    and getString of a resultset,I get the right data.
    However ,when I use
    s= createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
    and getString of a ResultSet ,
    if the type of the field is Date,then get right data.
    if it is char or varchar2,then i get some thing like
    0x313233,
    all has been found in win2000&solaris
    with oracle 8.1.6
    thanks a lot!

    Hello,
    We've got the same problem.
    It comes from the National Character Set of Oracle Database.
    With WE8ISO8859P1, no problem with using this parameters.
    But with WE8ISO8859P9, we have some hexadecimal return.
    I don't know if it's works with another Character set, but with this, It doesn't work.
    We're trying to find a solution. Because change the character set is not one.
    Good luck.

  • Problem with scrollable content in cs6

    hi out there
    well since i while i'm using the cs6 to create folios. now i have a problem i didn't have in cs5.5. if i create a scrollable content ("durchlaufbarer rahmen" in german) in the folio overlays i can't navigate on the area where this element ist placed. if i place a full screen scrollable content on one page and open the folio on the ipad i'm stuck at this page...
    ...hope someone out there knows a way to fix this problem.
    thanks - alex

    So there is a way to retain the PDF version of an article with this?
    I've tried adding an MSO over a scrolling area of text (separate from the frame, but still on top of it), and I've also tried placing it within the scrolling frame.
    Neither of these worked.
    Is there something I'm missing? What specifically allows this workaround to work? I'd love to include some full page scrolling content without making the viewer get stuck on one scrolling page in the middle of the document.

  • Problems with Scrollable Content : colored lines appear

    Hello,
    We have a book with several Scrollable Content (around a total of 200).
    The fact is that in many colored lines appear. These lines appear i disappear when changing article,
    anyone have any solution?
    THANKS

    Hi
    I had the same problem. I had pasted the scrollable content directly into the container frame, but the pasted content was slightly 'taller' than the container window (the pasted object group was maybe 0.012 pixels larger than the container, so very slight) this caused it to display the coloured lines when I moved it up or down, although left and right movement worked fine. Resizing so the pasted content was smaller and exact pixels not 0.123 px (or the same size) as the container fixed it.
    M

  • Problems with large frame uncompressed AVI files in QT 7 player

    I have just recently gone from QT Pro 6.5.2 to QT Pro 7, mainly because of the HD support.
    I have a dual boot system with QT 7 on Windows 2000, and QT 6 on Windows 98SE.
    I am having problems playing uncompressed AVI files in the QT 7 player, apparently if the frame size is large (in the example case 688 x 516).
    Sometimes I just get "error 108 unknown error" pop up when I try to load the file. Sometimes the file loads but will not play except in short bursts of movement every now and again as it moves along the timeline. Sometimes the file plays, but with one or more broad black lines across the image!
    All the problem files play perfectly in QT 6.5.2, but will not play in QT 7, which should surely play them better, not worse!
    Can anyone make any suggestion as to what's happening?
    I've uninstalled and reinstalled QT 7, which made no difference. I'm sure I don't need any extra codecs, as QT has always played RAW AVIs without anything extra before.
    Thanks in anticipation, Dave.

    I have just recently gone from QT Pro 6.5.2 to QT Pro 7, mainly because of the HD support.
    I have a dual boot system with QT 7 on Windows 2000, and QT 6 on Windows 98SE.
    I am having problems playing uncompressed AVI files in the QT 7 player, apparently if the frame size is large (in the example case 688 x 516).
    Sometimes I just get "error 108 unknown error" pop up when I try to load the file. Sometimes the file loads but will not play except in short bursts of movement every now and again as it moves along the timeline. Sometimes the file plays, but with one or more broad black lines across the image!
    All the problem files play perfectly in QT 6.5.2, but will not play in QT 7, which should surely play them better, not worse!
    Can anyone make any suggestion as to what's happening?
    I've uninstalled and reinstalled QT 7, which made no difference. I'm sure I don't need any extra codecs, as QT has always played RAW AVIs without anything extra before.
    Thanks in anticipation, Dave.

  • Problem with text frame dropshadow not completely printing to pdf file.

    Hi and thanks for your speedy replies!
    I am editing a file that had altered corner text frames with a .25 inset and a drop shadow added, .05 stroke and paper swatch. When I deleted text everything shifted so I had to recreate the special frames on select pages. These new text frames are not showing the top and left sides of the frames when saved to pdf file. The right and bottom drop shadow are showing.  What am I missing?
    Cheers!

    I am using the latest version in CC. I tried several exports directly from ID, PDF/X-3:2002, PDF/X-1a:2001 and the low res setting, all with no changes.  None showed the left or top border on the frames in question.
    So I was getting the first screen shot instead of the second which other similarly formatted frames showed.  I checked every setting I could find and they were all the same.  The problem just occurred after the point in the doc that I had made changes resulting in some pages being deleted and the page formatting being thrown off which I corrected with the appropriate saved page formats.  But when I went to set up the frame dropshadow and accompanying stroke and swatches, the outline just would not show in the pdf although it appeared to be showing in ID.
    I've since discovered a work around for the editing so no pages were deleted, but I need to figure out why this happened and what I am not seeing. Perhaps a setting to show the border? Or maybe it is some overall setting that I need to be looking for? Just weird, weird, weird...

  • Problems with distorted frames when making movies in After Effects

    I'm a 3D animator.  When I get through with
    rendering all of the frames of an animation and they're fine, I create a preview in After FX and it builds and plays back the preview fine.  But when I go to make a movie, with those same frames, it produces frames in different spots which are blurred, stretched, distorted, spun and or dropped.  What could be causing this?  N E help is greatly appreciated.

    There MUST be a simple answer to this problem....
    There is a simple answer indeed.
    Here it is:
    The highlighted button in the Comp panel enables Pixel Aspect Ratio (PAR) Correction.
    So, instead of stretching the footage horizontally, you create a Composition with the same frame aspect and Pixel Aspect Ratio as your source footage (just drag the clip to the New Comp button in the project panel and AE will automate this) and then enable PAR correction and After Effects will give you a corrected (deanamorphized) preview so you won't see it squeezed at all on a computer monitor. When you export it, it will look squeezed until you take it to the target video application. Any professional video application will handle this correctly.Millions of people do this every day, since non-square pixels are still dominant among the most popular video formats.
    Even Photoshop has had support for non-square pixels (and PAR correction in the document panel) since CS (ie. Photoshop 8.0).
    Note that when you turn on PAR correction (just like when you use odd magnification levels) AE switches to a draft filtering mode, which makes type and other elements look a bit jagged. Don't worry, it's just a preview.
    The ideal solution, and the one video professionals rely on, is adding video output hardware to your computer, so you can connect a professional video monitor. After Effects can provide a live preview using such a set-up.
    For more information on PAR, see Pixel aspect ratio and frame aspect ratio in After Effects Help.

  • JFrame on top - PROBLEM with parent FRAME

    Hello,
    I have tried every possible way to keep a JFrame or JDialog on top of my Main JFrame and it works.The problem is that the Main panel has limited functionality.For example I can change the tabs but I cannot press a button.It looks like it selects the button but the action never happens.
    I tried the "Thread- toFront()" way and the window "Deactivated-toFront()" way.
    I should mention that the new Frame is constructed and shown not from my MainFrame but in a custom ActionListener for a popup menu on a JTree.
    The code is extremly big to post it and I don't know which part could help you because there is no ecxeption or something like that.
    I don't see any people complaining,is it only me with that problem?
    ANY IDEAS??

    This works for me:
    CommandPanel d = new CommandPanel(this, "Command Panel", false);
    d.pack();
    d.show();
    That only works though when I use a button form my main Frame.So i pass the "this" parent and averything is ok.BUT what I have do is:
    I Have my main Frame, I have a tree in my main frame,I have a custom mouse listener on the tree to pop up a menu.If the user selects the last option "Show command Panel" then the menuAction class,which is a custom actionListener as follows
    class MenuAction implements java.awt.event.ActionListener {
    public void actionPerformed(ActionEvent e) {
    if (e.getActionCommand().equals("Show Commands Panel")){
    CommandPanel d = new CommandPanel(this, "Command Panel", false);//Error here."this" is not a Frame.Only a class that implements an ActionListener.
    d.pack();
    d.show();
    System.out.println("Clicked "+ e.getActionCommand());
    How can from inside the MenuAction class construct my commandPanel and pass in the constructor the main Frame??

  • Bad Problem with Dropped Frames

    I'm running FCP 6 on my 2GHz Intel Core Duo Macbook. I've got IGB 667 MHZ RAM.
    I hadn't been having problems all day when all of the sudden, BAM, every 1 or two seconds I get the Dropped Frames error.
    This happens when I am editing MPEG4 video. I get the dropped frames both with and without audio. There are no other sequences or programs open.
    Would this problem arise from taking multiple shots from a single clip?
    It's getting pretty bad guys, so any ideas are welcome.
    thanks.

    OK, i think i've figured out what the problem may be. When i added an MPEG 4 clip to the sequence in question, a window popped up asking me if I would like to change my timeline settings to match the clip. I said yes. Whatever was changed by this is what is causing the problem.
    What would this have changed and how can i change it back?

Maybe you are looking for