Am i laying out my film right by imprtng small sequences in 1 big sequence

I am working on small portions of my film in there own individual sequence, then I import those small sequences into one final sequence. Is this the right way to lay out the film. When I render a small sequence, then go into the final sequence, it wants my to re-render. When I do, the footage is still glitchy in the big sequence and not the small one. I don't know if I'm making any sense but can someone help me?

The master sequence settings don't match the footage you are dropping into it. Every time you have to render a clip when you drop it into a sequence, that means something is not matching up. You need to make the master sequence settings match that of your smaller sequences.
Shane's Stock Answer #28: When I put a clip in the timline, I have to render it before it will play. Why?
Your clip settings MUST match your timeline settings. If you have DV/NTSC material, you need a DV/NTSC timeline. The frame rate, audio rate and dimensions (4:3, 16:9) all need to match exactly. In Final Cut Pro 6, this is easy, because when you drop a clip into the timeline, it asks if you want to set up the timeline to match the settings of the first clip you drag into it. Click YES and you are ready to go.
However, in FCP 5.1 and earlier, it is a bit trickier.
The most important thing you need to do is properly set up your project from the start, and the best way to do this is to choose a setting from the Easy Setups, located under the Final Cut Pro menu.
Once you do this, you’ll need to create a new sequence. This is because the sequence that is already in your new project is setup for the typical default setting of DV/NTSC, or for the settings of your last project, which might not match what you are currently working with. So delete SEQUENCE 1 and create a new sequence:
This new sequence will contain the settings you chose in the Easy Setup menu, and should match the format you captured.
Shane

Similar Messages

  • Help! How can I lay out forms?

    Hi:
    I've tried everything and I just can't get Java to lay out a form for me.
    I'm currently using TableLayout:
    http://www.clearthought.info/software/TableLayout/
    I expect the buttons to be in the bottom right hand corner of the form.
    Only one shows up and it's apparantly over top the other one. They're at the top of the form.
    What am I doing wrong?
    public static void main(String[] args)
            btnOne = new JButton(" One ");
            btnOne.setPreferredSize(new Dimension(80, 25));
            btnTwo = new JButton(" Two ");
            btnTwo.setPreferredSize(new Dimension(80, 25));
            lbOne = new JLabel("Top Label");
            lbTwo=  new JLabel("Second Label");
           double size[][] =
                {{TableLayout.FILL, 200},
                 {0.05, TableLayout.FILL, 25}};
            pnExt = new JPanel(new TableLayout(size));
            pnExt.setPreferredSize(new Dimension(775, 575));
            double sizeLbl[][] =
                {{250},
                 {0.05, TableLayout.FILL, 25}};
            pnLabel = new JPanel(new TableLayout(sizeLbl));
            pnLabel.add(lbOne, "0, 0, l, t");
            pnLabel.add(lbTwo, "0, 0, l, t");
             double sizeBtn[][] =
                {{150},
                 {TableLayout.FILL, 25, 25}};
            pnButtons = new JPanel(new TableLayout(sizeBtn));
            pnButtons.setPreferredSize(new Dimension(125, 550));
            pnButtons.add(btnOne, "0, 1, r, b");
            pnButtons.add(btnTwo, "0, 2, r, b");
            pnExt.add(lbOne, "0, 0, l, t");
            pnExt.add(pnLabel, "0, 1, l, t");
            pnExt.add(pnButtons, "1, 0");
            fme = new JFrame("My Test");
            fme.setSize(800, 600);
            fme.getContentPane().add(pnExt, BorderLayout.WEST);    
            fme.show();
        }

    I've never used TableLayout, but here is some code for a common situation. Suppose you want components arranged like this:
    label component (say text field or button)
    label component
    label component
    import java.awt.*;
    import javax.swing.*;
    public class LayoutExample {
        public static void main(String[] args) {
            JPanel p = new JPanel(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.fill = GridBagConstraints.HORIZONTAL;
            gbc.anchor = GridBagConstraints.NORTH;
            gbc.insets = new Insets(0,5,0,0);
            //row 0
            gbc.gridy = 0;
            gbc.gridx = 0;
            p.add(new JLabel("label 0", JLabel.RIGHT), gbc);
            gbc.gridx = 1;
            p.add(new JTextField("field row 0", 20), gbc);
            //row 1
            gbc.gridy = 1;
            gbc.gridx = 0;
            p.add(new JLabel("label 1", JLabel.RIGHT), gbc);
            gbc.gridx = 1;
            p.add(new JTextField("field row 1", 20), gbc);
            //row 2
            gbc.gridy = 2;
            gbc.gridx = 0;
            p.add(new JLabel("longer label 2", JLabel.RIGHT), gbc);
            gbc.gridx = 1;
            p.add(new JButton("row 2"), gbc);
            //row 3
            gbc.gridy = 3;
            gbc.weighty = 100;
            gbc.gridx = 0;
            p.add(new JLabel("label 3", JLabel.RIGHT), gbc);
            gbc.gridx = 1;
            p.add(new JButton("row 3"), gbc);
            display("LayoutExample", p);
        static void display(String title, Component c) {
            JFrame f = new JFrame(title);
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(c);
            f.pack();
            f.setLocationRelativeTo(null);
            f.show();
    }Resize the frame. the components remain centred horizontally but anchored to the north (that's the effect of weighty).
    Of course, your mileage may vary, but don't give up on GridBagLayout. It reminds me of that 60's song, "If you want to be happy for the rest of your life (get yourself and ugly wife)"...

  • Dreamweaver CS5 webdesign lay-out problem + spry

    Hello there
    I'm making a site, but I'm encountering some problems. I'm making one in Dreamweaver CS5 with CSS-styles. I decided to work with percentages to build up my site.
    So my container has following measurements: containeris min-width: 640, max-width: 1920, width: 75% (to have 2 white backgroundcolums next to my site).
    My sidebar is width: 21%, float:left and content is width 79%, float:right
    I arranged the lay-out of my menu with submenu, placed in sidebar, with a sprymenubarvertical from Dreamweaver.
    When I open up the site on my Dell E6510 laptop, the site looks as the first picture of below, so everything works fine!
    When some computers, especially older ones open it up, the get the second picture.
    So can anyone help me figuring out why:
    - The content is now placed UNDER my menu and not next to eachother?
    - Why did my menu turn white, did I loose my background image of it, and does he show the a:hover as normal?
    - Same as above for the submenu...
    Then I'm having another problem: If I make the screen smaller of my browser, like half of the page, he shrinks the sidebar and content, but he doesnt shrink the font + the gallery from my content doesn't shrink either.
    Also, the slideshow, made with Aleo slideshow maker, doesn"t show on mac.
    Could this be solved by just making the widths fixed or is there another solution? Also, the slideshowgallery has a fixed width(as imported), how to make that automaticely go smaller if you shrink the screen?
    Any tips would we convenient!
    (http://www.maxx-it.be/Aanbod/Webdesign/mira.html)
    The first picture is how it should be, second one is taken from how other computers see the site, third one is if I shrink the screen
    Thanks alot you guys
    Greetz
    MasterJ09

    I'm sorry didn't mean to send any corrupted files or links.
    In case it would help I added a link here where I uploaded my style.css, and my sprymenubar styles, with the basic template and the indexhtmlpage through Megaupload. I added the printscreens as well. I hope this will work.
    If this isn't the right method of posting please tell me how to?
    Thanks in advance!

  • Lay out spry menu

    I am working with Dreamweaver CS6 and I am having some problems with the spry menus.
    Is there a lay out available on which I can find which items has which name?
    E.g. ul MenubarVertical ul: which item is this in the spry menu?
    David

    Have you read the comments in the CSS file?
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
    ul.MenuBarVertical
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        cursor: default;
        width: 8em;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* Menu item containers, position children relative to this container and are same fixed width as parent */
    ul.MenuBarVertical li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: 8em;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarVertical ul
        margin: -5% 0 0 95%;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: absolute;
        z-index: 1020;
        cursor: default;
        width: 8.2em;
        left: -1000em;
        top: 0;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarVertical ul.MenuBarSubmenuVisible
        left: 0;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarVertical ul li
        width: 8.2em;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Outermost menu container has borders on all sides */
    ul.MenuBarVertical
        border: 1px solid #CCC;
    /* Submenu containers have borders on all sides */
    ul.MenuBarVertical ul
        border: 1px solid #CCC;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarVertical a
        display: block;
        cursor: pointer;
        background-color: #EEE;
        padding: 0.5em 0.75em;
        color: #333;
        text-decoration: none;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
        background-color: #33C;
        color: #FFF;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
        background-color: #33C;
        color: #FFF;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarVertical a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarRight.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarVertical a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarRightHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarVertical iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarVertical li.MenuBarItemIE
            display: inline;
            f\loat: left;
            background: #FFF;

  • Making lay-outs in Dreamweaver

    Hello;I have been studying 2 Dreamweaver learning books(and a lot of “background books“(php) the past 3 years.In one of them the author explained the different ways of using lay-outs in DW.(the “ready to go” css lay-outs,tables,etc.) However:I want to make my own designs,instead of using pre-designed lay-outs.(and tables)Therefore the possiblity of using AP divs seemed to be the best way. A disadvantage of the AP divs is,of course,that the divs are absolutely positioned,so that on a small screen the content is moving to the right. Because of the fact that making designs using AP divs,just like using a pencel or brush like a real painter does,makes designing a lot of fun(instead of playing in the plain code) I kept on using the AP divs,but instead of “position:absolute” I have changed this into “position relative”. I have also used a container in which I put all the other divs,just for keeping it all centered. At first site,it looked all fine,but when inserting other stuff,like plain tekst,extra code or images,everything went nuts,a bit like when using a table:all the divs weren’t positioned nicely anymore and I had to re-place everything again. The changes kept going on and,especially in the design-mode,it’s all messed up. So my question is: What lay-out method do you all,as experienced webdesigners,prefer to use,according to modern standards??(and still make designing a fun thing to do,without programming in the code) Of course with the use of Dreamweaver and all its toolbars,buttons and features. I really hope you have the answer for me!!! Many thanks for the help you are giving me!! Greetings igor

    Hi Again
    I tend to use whatever css based layout type I think is best suited for the design, (never tables for layout and absolute positioned items with caution, see my answer to your previous thread regarding % values) this may even include using 'trial' feature such as html 5 and css3 with jQuery or whatever.
    The thing is with layouts, is to decide how you wish your page to look and function, then work out how-to-do it, that for me is what keeps it interesting. As an example I have even experimented with using a flash swf as a resizeable background image with animation, (works, but the browser must be resized by 1px to force the swf to resize on initial load of page).
    PZ

  • Problems and Issues in Laying Out Our Journal

    Thank you to everyone who responded to my last post. On your advice, I have decided to persist in my efforts in making a template for our Law Journal using InDesign. There are several remaining issues I have though which, though small perhaps, are fairly critical. Perhaps someone might give me some guidance on this.
    I am not sure which overall compilation method I should use. Ie) Either placing the individual word documents in or making a 'book' out of the individual articles. I would use whichever method can provide for the following conditions:
    1) Continuity of page numbers. The first article should start at 1, and page numbers should NOT restart at the beginning of each article.
    2) Continuity of footnotes. Foot notes SHOULD restart at 1 at the beginning of each article.
    3) Page headers. Left side pages will have the page number and name of the Journal. Right page headers are to have the page number and the name of the current article. Would it be best to use different masters with the corresponding page headers on them? Would this maintain the above mentioned page and footnote continuities?
    4) As per usual in books, there should be no page numbers on each article title page, which should always be starting on a right page.
    5) Use of masters. Currently I have single masters pages set up for the half-title page
    So, these are the issues which I have. I don't know how to incorporate these items in the template. It is fairly important that I have a good working template in order to avoid having to re-do all this work for each volume, as the person in charge of layout will change from year to year and likely not have the time to learn the ins and outs of InDesign. Any help on these issues would be wonderful!
    Thanks!

    I lay out an academic journal. This is my method:
    Take in Word docs. Check style names to make them reasonably conform to style names in InDesign template. (They're case sensitive.)
    Word tables are imported into a separate InDesign template that makes it easier to tweak them before re-inserting into article.
    Word figures are saved as PDF/redone in Illustrator.
    In InDesign, I open a blank file from a template and place the article, mapping Word style names to InDesign style names. I fine-tweak the tables in a separate InDesign file and place those pages into these pages.
    I save each article in a separate file, make a pdf to send out for proofing.
    After the first round of proofing, which includes the authors, I make corrections and put together a book according to the TOC.
    For the second round of proofing and for production, I make a pdf of the book.
    After production, I supply individual article pdfs for archiving.
    The template has 3 master pages: one for the article opener, one (spread) for the main pages, and one for blank pages that has only the page number and no running heads. The template has 16 pages and I add pages in multiples of 4 if needed, or delete pages that aren't used.
    I did one year with the entire issue in one file, but I found the book method much more efficient. Page numbering and footnote numbering is no problem.
    best
    R_W

  • New Lay-out Profile for CM25

    Hi Dear Guru,
    We need a new profile in transaction CM25 for our planners.
    Weu2019d like to achieve similar results as when using profile ZBNFDS0002 (an existing layout in our SAP but need to improve/edit for desired output)
    a.       Visible tabs: Work Centers, Orders Dispatched, Order Pool
    b.       By default - Daily period split
    But also some changes are needed, as described below:
    1.       Time profile u2013 we need u201Cnext week + - 1 dayu201D, so this is a 9-day range from Sunday to Monday, no matter which day of the week the transaction is ran at.
    2.       Only 5 columns (Work cnt, Material, Operation quantity (values in Tons), Target quantity, Unit) are needed
    3.       Data on the graphical objects u2013 Material Number
    4.       Data in the quick info text u2013 Material Number
    5.       Data on the right of the graphical object u2013 Material description
    How could we achieve this, is there any customization available to do this, or an ABAPER should ask about this doing new lay-out for us.
    thanks

    Dear,
    Transactions CY38 & CY39 we can have our own display and sort fields in the left side (Tabular form) of the CM25 screen.
    Create Layout key in CY38 as per your requirement.
    In CY40-Define Sort keys, you assign the layout key(Sort format key) with the sort key.
    In OPDJ, assign the grouping with the sort name to the Layout ID.
    Use this Layout ID in "Planning Table Profile" in OPG0 to get the layout set as per your requirement.
    Assign this "Planning Table Profile" in "Overall Profile"-OPD0 abd set this Overall profile for CM25.
    If not then please take help form technical person
    Regards,
    R.Brahmankar

  • Parenting textframes over different lay-outs

    It would save a lot of time as well as comfort and ease of mind if it was possible to link textframes over different lay-outs.
    Now I have to edit text in all lay-outs (computer, tablet, phone). It should be possible to link frames so you only have to edit text in one lay-out. When uploading or editing lay-out in different lay-outs muse could ask if text should be adapted to the parent lay-out and if you want to check what changed. A bit like if you do online editing and open the site in muse.
    When making alternative lay-outs in Indesign this feature is allready present.

    Hi these are my hub stats...The downstream speed is vastly up since I called 151...hmmm!  I called 151 as you recommended and told the girl (Sarah) exactly what I've told you here and that you'd recommended the course of action. She is sending an engineer out tomorrow a.m. as she told me to unplug everything but the corded phone and redo the test...I got a series of faint clicks on the line 3 groups of 3 followed by one single click then it went silent....told her this and she said it sounds as though there is still something going on even though she got nothing (she called me back twice btw after doing something her end) This is as much for assisting my memory as anything else btw as she said that there could be a callout charge of £130 if nothing found wrong with BT gear....praying hard right now!!
    Anyhows....loss of framing seems to be when I'm getting these problems...nothing in loss of framing....no problem...anything at all in loss of framing ...I get problems.  I still cannot get a speedtest done, been getting this error message since I started trying to figure this out last night!
    FAQ
    The Performance Tester is currently unable to run a speed test for your broadband connection. Please try again shortly, however if this problem persists, raise the issue with your service provider.
    ADSL line status
    Line state
    Connected
    Connection time
    0 days, 0:12:26
    Downstream
    4,512 Kbps
    Upstream
    448 Kbps
    ADSL settings
    VPI/VCI
    0/38
    Type
    PPPoA
    Modulation
    ITU-T G.992.1
    Latency type
    Interleaved
    Noise margin (Down/Up)
    8.5 dB / 19.0 dB
    Line attenuation (Down/Up)
    52.0 dB / 28.0 dB
    Output power (Down/Up)
    19.4 dBm / 12.3 dBm
    Loss of Framing (Local)
    12
    Loss of Signal (Local)
    1
    Loss of Power (Local)
    0
    FEC Errors (Down/Up)
    405 / 0
    CRC Errors (Down/Up)
    1 / 2147480000
    HEC Errors (Down/Up)
    nil / 0
    Error Seconds (Local)
    16

  • Strange lay-out Firefox after installing on my system

    After installing Firefox on my Dell Latitude E6520 with Windows 7 Enterprise NL x64, Firefox start extremely slow en shows a strange lay-out. All caracters seems like hex numers. I tried starting FF with admin rights, as administrator... no difference. But when I run FF as a domain admin (system is member of a Windows domain) it looks good. Still slow start-up.
    Look here for a screenshoot: http://twitpic.com/6iq6pi

    Try to set the pref <b>gfx.font_rendering.directwrite.use_gdi_table_loading</b> to <i>false</i> on the <b>about:config</b> page.
    If that doesn't help then try to disable some other gfx.* prefs
    You can also do a font test to see if that helps to identify the font that is causing it.
    *http://browserspy.dk/fonts-flash.php?detail=1
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    *Use the Filter bar at to top of the about:config page to locate a preference more easily.
    *Preferences that have been modified show as bold(user set).
    *Preferences can be reset to the default or changed via the right-click context menu.

  • Laying out a play: Need quick hair space function

    I am helping a friend (an 83 year old Benedictine monk, in fact, but that is another story) lay out a 300+ page play, and I am finding it very time consuming. I am using Indesign CS3 (5.0.1) on a PC with XP SP2.
    Short version: I need a way of placing a cursor exactly where I want it, to a hair space, on a line, with one click, and have hair spaces generated to the left of that space on that line.
    Long version:
    My problem is this: the play is rather avante-garde and has chorus parts where characters talk over one another and precise times and they must be perfectly aligned vertically at different places. So, for example, if two lines look like:
    (all read together:)
    Alto: Where are the.....that used to swim?
    Tenor 2: ....................................what fish?
    Bass: Where.....the.................................fish!
    Soprano: ..............fish.........................the....
    I have no problem making the Alto's "W" line up precisely with the "W" in the bass line, as thy are the first letters of the line. But I also need the "t" in "the" in the Alto and bass lines to line up precisely, and the "f" in "fish" to start immediately after the "e" in "the" and for there to be no horizontal space between "h" in fish and "h" in "he"! I also need the two farther right "thes" to line up. And the example above is simple compared to what is actually in the play.
    Im currently achieving this through painstaking use of hair spaces, half spaces, etc. Im really can't use a font that takes up the same horizontal space per character (Im using times new roman 10 point). The play is over 300 pages long, however, and so this will take me hundreds of hours if I continue this way.
    I have thought of a few potential solutions. One would be a tool that allows me to click on any place on the line, and it creates hair spaces UP TO THAT POINT, so that I can just start typing. As it stands, the best I can do is tab or space over and key in the precise hair spaces, which, as I say, is prohibitively time consuming. Does anyone know of such a tool?
    Another useful tool would be one that allows me to click on any place in an existing line and then click in a line below and immediately start typing, with spaces or hair spaces automatically inserted to that point on the new line, where Id like to start typing.
    Another person tried to do this whole project in MS Word (!) a few years ago with tabs, but Word is simply not functional enough for publishing.
    Any thoughts on this or potential solutions would be very appreciated. The monk who wrote this a dear man and an outstanding visual artist would like to see it laid out in the next year or so.

    Why not use tabs instead of spaces as you tried in Word originally? It would be easier in ID. Would the following do what you want?
    Set your paragraph style to have a default of a left tab with a leader. (I assume you require the leader to express pauses in the phrasing, otherwise just use a tab.) But don't set up any tabs in the style sheet.
    In each line, tab where the pause begins, and then click on the Tab palette anywhere near that position and drag the newly made tab to the exact position required. ID will even give you a temporary guideline to allow you to line up the tab with words in other lines as accurately as you like.
    Yes, each tab would have to be positioned manually, but I've tried it and its pretty fast. Just leave the tab palette open all the time.
    This assumes I understand what you're trying to achieve and that there are no regular vertical alignments. The others seem to have different takes on that. I don't know what Dave was thinking; I don't see how there would be any consistent rules by which to script this. Every single flex space would have to be a slightly different size. Peter's suggestion of repeated tabs doesn't work because equally spaced tabs won't ever be accurate enough and having multiple tabs interferes with being able to drag any specific tab to where it's needed. As for converting all text to tables, it seems to me that that would be a nightmare of constantly sizing cells and cutting and pasting text between cells.

  • Why does ical on icloud have a different lay out than on my mac

    Why does iCal on my MacBook Pro have a different lay out than on iCloud? I like the iCloud layout better, the only missing niceties is the year calendar. How do I get both iCals to look the same? The ideal iCal? The one from iCloud WITH the year calendar.

    Do a malware check with some malware scanning programs on the Windows computer.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br /><br />
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    *http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked
    Please update Firefox to the latest version via "Help > Check for Updates or Help > About Firefox"<br />
    The Firefox version that you use is no longer maintained with security and stability updates.<br />
    Using unsupported Firefox versions is at your own risk and makes you vulnerable to attacks.<br />
    *Firefox 7.0.x: http://www.mozilla.com/en-US/firefox/all.html

  • On iPhoto, I can no longer access the 'Classic' option which would lay out my photos on the page. It will send them as attachments only. I need the page layout for my work. Any thoughts as to why this has changed?

    On iPhoto, I can no longer access the 'Classic' option which would lay out my photos on the page. It will send them as attachments only. I need the page layout for my work. Any thoughts as to why this has changed? It used to fully lay out the photos so I could add notes and detailed information before I sent them. I am thinking it is something simple that I have just missed...

    The "Photos" view has been replaced by the Media Browser.
    Most applications will show you the Photos icon in the Sidebar, when you need to select photos in a file chooser dialoge. Mail, Safari, the iWork apps. See Terence Devlin's User Tip: How to Access Files in iPhoto
    For example, in the File > Open dialogue in Preview I am seeing this in the sidebar.

  • Sub: Tax Combinatiom. Tax rate, tax Amount in the print lay out design of t

    Dear all,
    Sub: Tax Combinatiom. Tax rate, tax Amount in the print lay out design of the A/R Invoice
    I have to Create a Print Lay out design of the A/R invoice for the Indain standrad please provide me some solutions for the following problems to locate the Tax combinations,Tax rate  and the Tax amount in the PLD  A/R Invoice ,
    PACAKGE  SAP B1 2005B
    Need a standrad solution as per the requriment
    Eg: Row Level
    Tax Code created is BED+VAT
    Tax combination details is
    Name of Tax type   Rate
    Excise                     16%
    Ecess                    2%
    Hcess                    1%
    VAT                       4%  
    Row No     Item  Qty   UnitPrice  Tax code  Total(LC)    Tax Amount
      1             X      10     10000      BED+VAT   100000      21139
                                             (Excise =16000,Ecess=320, Hcess=160, VAT=4659)
    2              Y      5      20000      BED+VAT    200000       42278
                                            (Excise =32000,Ecess=640,  Hcess=320, VAT=9318)
    In Print  Lay out Design Requried is the deatils of Tax code combination , Rate and the Tax Amount in the followig way 
    Excise    16%   =48000
    Ecess     2%    =960
    Hcess     1%    =480
    VAT       4%    =13977
    Please send the feedback as early as possible urgently requried
    for the further details send the feedback
    Reagrds
    Mr.Chitrasen

    Hi experts,
           Pls anybody have an answer to my question, i'll be very thankfull to u,
                     I wanted to display the Tax Break ups in Invoice say,
    ECess            25
    Vat                 56
    Excise duty    32
    I've tried a lot with many of the SAP Forum thread but the results is not satisfactory..am using SAP Business One 2007 b
    pls anybody who can guide me with step by step PLD creation for this problem.
    I done the below steps in PLD
    In Repetitive area 1
    Field_1:  Table-> OSTA                    
                  Column-> Type                               
    Field_2 : Table-> OSTA                  
                  Column -> Code                               
    Field_3:  Table-> OSTA                   
                  Column-> Rate
    Field_4:  Table-> OSTA                  
                  Column-> Name  
    Field_5:  Table-> A/R Invoice Tax amount per document
                    Column-> Tax amount
    Field_6 : Table-> A/R Invoice Tax amount per document
                    Column-> Base amount
    Field_7 :  Formula ->  Field_6 * Field_8
    Field_8 :   Formula->  Field_1==1
          NOW I SORTED REPETITVE AREA 1 WITH 'SALES TAX AUTHORITIES;cODE' AND TICKED THE CHECK BOX 'SUMMARY'
        AND MADE THIS REPETITIVE AREA INVISIBLE.
    IN Repetive area footer
    F_01 :    Formula->   Field_4       
    F_02 :    Formula->   Concat(Round(F_rate,0), '%')
    F_03 :    Formula->   Round(ColSum("F_tax_amount"),2)
      I grouped the Repetitive area footer as Group 1
                                here i get the result but the Tax Rows are repeating and Tax amount varies for VAT for each rows
    pls help me guys...          
                   Thanks in advance,
                   Dinesh
    Edited by: Dinesh S on Dec 23, 2011 1:28 PM

  • How do I create a table of content in a Pages Template (lay-out) document?

    Dear all,
    I recently started designing a brochure in Pages, using a lay-out document. The document counts over 100 pages. Now I need to make a table of contents and I just don´t get how to do this...
    Any help is more then welcome!
    With warm regards,
    Nina

    That sounds more like a book than a "brochure".
    You can not make a TOC in Layout mode. The TOC only scans the styled text in the default text area (between the margins) of Word Processing documents and ignores everything else.
    Peter

  • Devanagari font in layed out in Indesign (using IndicPlus) does not export correctly to a PDF.

    Namaste InDesign gurus,
          I have a problem at hand. Wondering if anyone has encoutered similar problem before? Any help is greatly appreciated. And if you're in San Francisco bay area - I can buy you a lunch :-)
    Short description: Devanagari font in layed out in Indesign (using IndicPlus) does not export correctly to a PDF. All the ligatures are assembled and displayed in the PDF.
    Adobe Indesign Version: InDesign CS5 Design Premium - regular U.S. version (not ME).
    Steps I took:
              I purchased CS5 Design Premium and also purchased the IndicPlus plugin to author sanskrit documents in InDesign. I create Sanskrit text using either of the following methods.
    1) Itranslator
    2) Paste the devanagari from the Itranslator directly into InDesign or paste it first into MSWord and then copy from MSWord and paste it to Indesign.
    It doesn't matter how I paste it. After I apply the IndicPlus character/paragraph style so that the sanskrit looks good in InDesign, when I try to export it to a PDF. The PDF does not display the ligatures currectly. It just lists all the characters in order without assembling.
    I've spent a lot of money buying CS5, IndicPlus and then I can't even create a simple PDF document from InDesign. It is very frustrating.
    Has anyone been able to successfully export a sanscrit document from InDesign PDF ?
    (Please let me know if my problem description needs more fleshing out).
    I could create the PDF from MSWord directly but I'm trying to use indesign to layout my book. If InDesign cannot export to PDF I'll just have to use MSWord for my book layout. I've spend probably scores of hours trying to learn InDeisn and formatting my book content - seems like it is all going to be waste.
    Is MSWord the best choice or only choice for laying out books that have sanskrit text in them?
    -Ravi

    Has anyone been able to successfully export a sanscrit document from InDesign PDF ?
    Not Sanskrit, no, but plenty of Hindi, Nepali, Marathi, and other languages written in Devanagari script - so it should be possible. I don't even use IndicPlus, which by most accounts makes working with Indic text much easier.
    1) Itranslator
    I've never seen this, but a quick Google led me to the homepage of ITranslator for Windows, where I saw this:
    Itranslator 99 (Build 1.3.0.86)  & New Beta Version
    uses 8-bit true type fonts and is compatible
    with Windows 95/98/ME/NT/2000/XP.
    For more information, click here.
    Itranslator 2003 (Build 2.0.0.38) & New Beta Version
    uses 16-bit Unicode-compatible fonts and is working
    only on Windows 2000 / XP / Server 2003.
    For more information, click here.
    So, if you're using ITranslator 99, there's the problem - those "8-bit true type fonts" won't work in InDesign. Can you post a sample of the text you're trying to paste into InDesign? Name the font(s) you are using, both in Word and in Indesign, and if possible make a small sample of the text available for us to test. It's also possible that InDesign is using a substituted font, which could cause this problem. So, if the font name in InDesign has brackets around it, you know that InDesign doesn't actually have that font installed and is auto-substituting. Also, if you go to View -> Screen Mode -> Normal and the text is highlighted pink, you know that the font has dropped. (Unless the highlighting for dropped fonts was turned off - check in Edit -> Preferences -> Composition and make sure that "Substituted Fonts" is checked.
    Also, for what it's worth, is there any way you could Place your text instead of copying and pasting? This may be cause of your problem - but even though it probably isn't, it's still worth a try.
    Lastly - no, I've found InDesign to be superior for typesetting for almost all languages, but the learning curve is pretty steep, and many of the problems faced by people working in non-English languages are not easy to research when you have a problem.

Maybe you are looking for

  • Overriding Soap Header using Axis(SOAP) Receiver

    Hi Experts, I am having a problem in including the SOAP Header in the XML using the SOAP Axis Receiver Adapter. Well I am not sure on how to place this structure in the header: <SoapHeader>     <Header1>         <child1>         <child2>     </Header

  • ALE to transfer data of Outline Agreement

    Hi, Can  anybody tell me process if I want to trasfer data of condition recerd maintained for cotract .i.e. for 01.01.2009 to 31.01.2009 I have maintained one condition record , then for other period I maintained another condition record. And I want

  • Forms 10g ocp certification

    Will there be a new ocp certification for forms 10g ? what about reports ? Can any one point to links on oracle website. Thanks

  • Install OracleAS Workflow Portlet

    I'm trying to install OracleAS Workflow Portlet on a 10.1.2.02 application server. The installation instructions say I have to have a PDK-java installation and configuration that is complete. The notes say that "Starting with PDK 9.0.4.1.0, the PDK d

  • Restore (only) photos from time machine

    Recently purchased a new iMac for my sister.  She had been having trouble with her (very) old one, completely running out of space - and possibly a bad hard drive?  When the new iMac arrived, I attempted to set it up by restoring from her Time Machin