Mpeg 4 speed and size

Hello,
I created the same video with about 45s in premiere elements 13 and cyberlink power director 13.
The codec in both cases is H264. The codes speed is 5 minutes in premiere and 1.5 minutes in director.
The resulting size is 80 MB (mkv) with director and 180 MB (mp4) in premiere.
The original (mov) video size was 114 MB.
For me this seems like premiere is doing something wrong. Both in speed and size.
But what? Is it modifiable?

Hi:
Are you exporting directly from FCP? I would try creating a self contained movie same settings first and then use that movie in Compressor.
Hope that helps !
  Alberto

Similar Messages

  • Minimum computer speed and size for Logic

    Am thinking of gettting Logic Pro with my comparatively small G4- Am I looking for trouble or should I go for express until I can get a bigger box- what would you recommend as your minimum requirements for speed hard drive etc? Thanks !
    Dual 800 MHzPower Mac G4   Mac OS X (10.4.8)   1.25GB SDRAM

    You should be able to play back many audio files -
    and freeze files ( since they are audio files ). But
    if you want to use bigger, modern plugs you'll need a
    node or PCI solution. With your present config, you
    should have little problem playing back as many audio
    files as you need - you'll just spend a lot of time
    waiting for freeze files to render. Many 3rd party
    AUs will be out of reach - as well as stuff like
    sculpture but if you are patient and resourceful, it
    should be OK to get you by for many productions. I
    have a Dual G4 ( 1.25 ) and can do a lot with it and
    Logic. Mostly, this answer depends on what plugins
    you use and if they are realtime. I can't say Express
    will really reduce the load - just restrict you from
    attempting to while making you work slower as far as
    editing. Personally, I wouldn't bother with LE. If
    you like LP's plugs you can get a node machine or buy
    a new machine in a few months...
    J
    justin - thanks for your reply- pardon my ignorance on this, but what is a freeze file and what is a node machine?
    Thanks

  • Adjust position and size of textField and button...

    Dear All,
    I have the following sample program which has a few textFields and a button, but the positions are not good. How do I make the textField to be at the right of label and not at the bottom of the label ? Also how to adjust the length of textField and button ? The following form design looks ugly. Please advise.
    import javax.swing.*; //This is the final package name.
    //import com.sun.java.swing.*; //Used by JDK 1.2 Beta 4 and all
    //Swing releases before Swing 1.1 Beta 3.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.text.*;
    import javax.swing.JTable;
    import javax.swing.JScrollPane;
    import javax.swing.JPanel;
    import javax.swing.JFrame;
    public class SwingApplication extends JFrame {
    private static String labelPrefix = "Number of button clicks: ";
    private int numClicks = 0;
    String textFieldStringVEHNO = "Vehicle No";
    String textFieldStringDATEOFLOSS = "Date of Loss";
    String textFieldStringIMAGETYPE = "Image Type";
    String textFieldStringIMAGEDESC = "Image Description";
    String textFieldStringCLAIMTYPE = "Claim Type";
    String textFieldStringSCANDATE = "Scan Date";
    String textFieldStringUSERID = "User ID";
    String ImageID;
    public Component createComponents() {
    //Create text field for vehicle no.
    final JTextField textFieldVEHNO = new JTextField(5);
    textFieldVEHNO.setActionCommand(textFieldStringVEHNO);
    //Create text field for date of loss.
    final JTextField textFieldDATEOFLOSS = new JTextField(10);
    textFieldDATEOFLOSS.setActionCommand(textFieldStringDATEOFLOSS);
    //Create text field for image type.
    final JTextField textFieldIMAGETYPE = new JTextField(10);
    textFieldIMAGETYPE.setActionCommand(textFieldStringIMAGETYPE);
    //Create text field for image description.
    final JTextField textFieldIMAGEDESC = new JTextField(10);
    textFieldIMAGEDESC.setActionCommand(textFieldStringIMAGEDESC);
    //Create text field for claim type.
    final JTextField textFieldCLAIMTYPE = new JTextField(10);
    textFieldCLAIMTYPE.setActionCommand(textFieldStringCLAIMTYPE);
    //Create text field for scan date.
    final JTextField textFieldSCANDATE = new JTextField(10);
    textFieldSCANDATE.setActionCommand(textFieldStringSCANDATE);
    //Create text field for user id.
    final JTextField textFieldUSERID = new JTextField(10);
    textFieldUSERID.setActionCommand(textFieldStringUSERID);
    //Create some labels for vehicle no.
    JLabel textFieldLabelVEHNO = new JLabel(textFieldStringVEHNO + ": ");
    textFieldLabelVEHNO.setLabelFor(textFieldVEHNO);
    //Create some labels for date of loss.
    JLabel textFieldLabelDATEOFLOSS = new JLabel(textFieldStringDATEOFLOSS + ": ");
    textFieldLabelDATEOFLOSS.setLabelFor(textFieldDATEOFLOSS);
    //Create some labels for image type.
    JLabel textFieldLabelIMAGETYPE = new JLabel(textFieldStringIMAGETYPE + ": ");
    textFieldLabelIMAGETYPE.setLabelFor(textFieldIMAGETYPE);
    //Create some labels for image description.
    JLabel textFieldLabelIMAGEDESC = new JLabel(textFieldStringIMAGEDESC + ": ");
    textFieldLabelIMAGEDESC.setLabelFor(textFieldIMAGEDESC);
    //Create some labels for claim type.
    JLabel textFieldLabelCLAIMTYPE = new JLabel(textFieldStringCLAIMTYPE + ": ");
    textFieldLabelCLAIMTYPE.setLabelFor(textFieldCLAIMTYPE);
    //Create some labels for scan date.
    JLabel textFieldLabelSCANDATE = new JLabel(textFieldStringSCANDATE + ": ");
    textFieldLabelSCANDATE.setLabelFor(textFieldSCANDATE);
    //Create some labels for user id.
    JLabel textFieldLabelUSERID = new JLabel(textFieldStringUSERID + ": ");
    textFieldLabelUSERID.setLabelFor(textFieldUSERID);
    Object[][] data = {
    {"Mary", "Campione",
    "Snowboarding", new Integer(5), new Boolean(false)},
    {"Alison", "Huml",
    "Rowing", new Integer(3), new Boolean(true)},
    {"Kathy", "Walrath",
    "Chasing toddlers", new Integer(2), new Boolean(false)},
    {"Mark", "Andrews",
    "Speed reading", new Integer(20), new Boolean(true)},
    {"Angela", "Lih",
    "Teaching high school", new Integer(4), new Boolean(false)}
    String[] columnNames = {"First Name",
    "Last Name",
    "Sport",
    "# of Years",
    "Vegetarian"};
    final JTable table = new JTable(data, columnNames);
    table.setPreferredScrollableViewportSize(new Dimension(500, 70));
    //Create the scroll pane and add the table to it.
    JScrollPane scrollPane = new JScrollPane(table);
    //Add the scroll pane to this window.
    getContentPane().add(scrollPane, BorderLayout.CENTER);
    final JLabel label = new JLabel(labelPrefix + "0 ");
    JButton buttonOK = new JButton("OK");
    buttonOK.setMnemonic(KeyEvent.VK_I);
    buttonOK.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
              try {
    numClicks++;
              ImageID = textFieldVEHNO.getText() + textFieldDATEOFLOSS.getText() + textFieldIMAGETYPE.getText();
    label.setText(labelPrefix + ImageID);
              ScanSaveMultipage doScan = new ScanSaveMultipage();
              doScan.start(ImageID);
         catch (Exception ev)
    label.setLabelFor(buttonOK);
    * An easy way to put space between a top-level container
    * and its contents is to put the contents in a JPanel
    * that has an "empty" border.
    JPanel pane = new JPanel();
    pane.setBorder(BorderFactory.createEmptyBorder(
    20, //top
    30, //left
    30, //bottom
    20) //right
    pane.setLayout(new GridLayout(0, 1));
         pane.add(textFieldLabelVEHNO);
         pane.add(textFieldVEHNO);
         pane.add(textFieldLabelDATEOFLOSS);
         pane.add(textFieldDATEOFLOSS);
         pane.add(textFieldLabelIMAGETYPE);
         pane.add(textFieldIMAGETYPE);
         pane.add(textFieldLabelIMAGEDESC);
         pane.add(textFieldIMAGEDESC);
         pane.add(textFieldLabelCLAIMTYPE);
         pane.add(textFieldCLAIMTYPE);
         pane.add(textFieldLabelDATEOFLOSS);
         pane.add(textFieldDATEOFLOSS);
         pane.add(textFieldLabelUSERID);
         pane.add(textFieldUSERID);
    pane.add(buttonOK);
         pane.add(table);
    //pane.add(label);
    return pane;
    public static void main(String[] args) {
    try {
    UIManager.setLookAndFeel(
    UIManager.getCrossPlatformLookAndFeelClassName());
    } catch (Exception e) { }
    //Create the top-level container and add contents to it.
    JFrame frame = new JFrame("SwingApplication");
    SwingApplication app = new SwingApplication();
    Component contents = app.createComponents();
    frame.getContentPane().add(contents, BorderLayout.CENTER);
    //Finish setting up the frame, and show it.
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    frame.pack();
    frame.setVisible(true);

    Post Author: Ranjit
    CA Forum: Crystal Reports
    Sorry but, i've never seen formula editor for altering position and size. If you know one please navigate me.
    I guess you have updated formula editor beside "Lock size and position" - if yes its not right. There is only one editor beside 4 items and editor is actually for Suppress.
    Anyways, A trick to change size a position is:
    Create 4-5 copies (as many as you expect positions) of the text object. place each at different positions,  right click, Format, Suppress and in formula editor for suppress write the formula: If your condition is true, Suppress=false, else true.
    Position will not change but user will feel; for different conditions -position is changed
    Hope this helps.
    Ranjit

  • Set default font type and size in formcreated using Acrobat X Pro

    I have a word document that I used Acrobat X Pro to create a PDF and then a Form.  The Form has over 200 text fields.  Is there a way to globally set the font type and size to one type, for instance Arial 10 so that when someone opens the Form and fills it in, the global font type and size is preset         

    Are you talking about fields that you create manually or field created with the Form Wizard? Exactly what version of Acrobat are you using? What OS?
    In any case, using a script is a quick and easy approach:
    for (var i = 0; i < numFields; i++) {
        var fName = getNthFieldName(i);
        var f = getField(fName);
        if (f.type === "text") {
            f.textFont = font.Times;
            f.textSize = 9;
            // Other properties go here
    I use this type of thing all the time to quickly alter a form. Such a script isn't added anywhere, just executed (e.g., JavaScript console). Over time a developer can build up a collection of utility scripts that can do all sorts of things to dramatically speed up development. It would be bad if this option were not available.
    If there is a bug, it should certainly be addressed, so don't think I'm arguing against that, but I'm not seeing it on any of my systems. I can successfully set the default field properties by selecting "Use Current Properties as New Defaults". The Form Wizard does not use these defaults, but that's a different matter.

  • Can anyone edit title fonts and sizes in iMovie 10?

    Trying to edit title fonts and sizes in iMovie 10 but font drop down does not respond.  Tried a couple of different style titles with same results.  Anyone else have this problem? 

    Another bug from apple. I can't even understund how do they test these products if most of the inspector options are not working. Same on Transition speed.

  • Using Adobe Media Encoder to create H.264, MPEG-2, and WMV videos from After Effects - 6/23/14

    Very disappointed with this choice. I will definitely be seeking to uninstall this version and go back a version or two. Two many extra steps to export an mp4 now. And now we also have to wait longer for a mp4 to render and can't take advantage of the machine's hardware? You guys fighting mp4 as a standard, forcing us to an additional product, or what? I'll be sharing my extreme disappoint with this 'upgrade' with the rest of the developers at work and who just had it installed. I'm not seeing this being too popular opn social media either. Seems like you only did what was best for you.Thanks for showing us who's boss.

    Frank VA wrote:
    And now we also have to wait longer for a mp4 to render and can't take advantage of the machine's hardware?
    Not necessarily. You can render an intermediate codec with AE's render queue (thus using all of AE's power to render) and then drop that file into the Adobe Media Encoder.
    This was the workflow I've always used - even when AE could encode with MP4. Why? Well, because AE sucked at MP4 encoding. You couldn't even do multipass endoding with it!
    This is a useful workflow in a few ways:
    1. You have an archive-quality file to come back to in the future.
    2. You can use AE's full power to render.
    3. You can use AME's superior encoding capabilities.
    4. You can tweak your compression settings and try various encoding parameters to improve the quality while decreasing the bitrate of your product WITHOUT having to re-render the AE comp every time you try since you're working off of the intermediate file. I mean, imagine a comp with several 3d layers, depth of field, shadows from multiple lights, and 250,000 particles from Particular. What if you made an MP4 and then the client needed a smaller file size or the MP4 you made was too heavily compressed and you needed higher quality? I don't know about you, but I'd much rather only render that 18-hour monster once.
    This workflow actually saves time for many people.
    And, in any workflow, this produces a better product.
    Again, this is what I did even when AE could encode MP4's.
    Frank VA wrote:
    You guys fighting mp4 as a standard, forcing us to an additional product, or what?
    They aren't fighting MP4 as a standard, in fact, when Adobe folks pop in here and answer questions, that's often their recommendation for delivery codec.
    Frank VA wrote:
    Seems like you only did what was best for you. Thanks for showing us who's boss.
    Listen, I understand your frustration. Knocking out a quick compressed file from AE for client review is handy.
    However, maintaining the h.264 encoding in AE took up development time. There are only so many person-hours per week for the (relatively tiny) AE team to spend on building each version of AE.
    I never liked AE's h.264 encoding - AME has always done a superior job. Since we have AME to do our encoding, I would rather the AE team focus their effort on improving AE as a compositing and motion graphics tool rather than as an encoding tool.
    Again, I get the frustration. I can see where it feels like they are doing what's good for them and not us, but I think, in the long run, this way is better for us. Right now, the majority of the AE team is working on making AE faster to work with and faster to render. The sooner we get a relatively bug-free version of that, the better! (Especially for folks on Mac OSX Yosemite who can't RAM preview smoothly in any version of AE).
    And at least the After Effects team has been very transparent about things - for example, this blog post talks about their reasoning: using Adobe Media Encoder to create H.264, MPEG-2, and WMV videos from After Effects

  • Flash CS5 has a serious speed and crash issue.

    Hi,
    Works PC.
    Dell dual core 3.5Gb ram PC. 1 yr old
    Launch time CS5 1 minute.
    Opening a file is 1min 10sec, saving a file ditto, copying from lib takes 50 secs, pasting to another library 1min, replace existing item, go yes and it crashes.
    Install CS5 trial on home very powerful purpose built CAD and video workstation, expect it to fly, but get same times, at least it doesnt crash first attempt but still terribly slow at everything.
    Second time I try this routine it also crashes upon replace existing item.
    Try saving files as CS4, they open into CS4 in seconds, wow what a difference !!!!, CS5 obviously at fault as a program, but text on buttons is a mess. so thats no good. Thats text created in CS5 not displaying when saved as CS4. Is this program in fact any good ?
    File size of source file is 26Mb, of destination is 21Mb. Source has about 14 movie clips, select these and make a movieclip of them, copy/paste it to library of destination and it crashes.
    Works PC reinstall Flash twice trying to resolve this, assuming its the prog, still its got these speeds and it crashes when accepting movieClip into Library. Remove the busy layer and try again and it accepts it, still damn slow. The home PC survived the busy layer paste first time round, suggesting the Office PC is at fault. But now its also crashing.
    Has Flash CS5 a complexity limit ? These are map layers with many vector shapes on one of the layers, quite a few on three others. That layer seems to be the straw that breaks the camels back. Is 26Mb beyond the limit. I even upped the preferences for memory to 3000kb but no better.
    I see on the forums complaints of CS5 speed on saving, users reverting to CS4.  I wanted CS4 but was forced to have CS5 as it had just come out. New progs are not the best move but Adobe bully you.
    The speed and crashes are prohibitive for business work, 3 days trying to do a mornings work.
    I thought it was the PC but others are finding CS5 slow and crashing. What have we here as a prog...useless !  Adobe. you need to fix this. I would go back to CS4, I have it on home PC, but CS5 into 4 has text issues, unless the Office PC used a font not on the home one.
    Envirographics

    I still cant realize how this buggy piece of **** could make to the market! After I switched to Flash CS5 it became true headache working on Flash projects:
    - in constantly crashes on saving, working with library, exiting;
    - trying to create file with FLVPlayback throws dozens of errors with references to the classes that even do not exist in configuration folder nor in preinstalled SWC files that I HAD to reference manually;
    - publishing in CS4 files that are published properly in CS5 throws tons of errors even though both reference existing classes and are for the same FP10 version.
    - saving FLA for CS4 creates huge source file and compiling this file in CS4 creates SWF with 10x size (~280kb in CS5 and ~2800kb in CS4).
    Even though Flash CS5 has some nice improvements in interface and ActionScrip editor which I do like, in general it is a complete DISASTER and huge TIME WASTER!

  • Continuous forest line speeds and zooms out or view NOT, but should?

    Here is my simple problem which I can not resolve.
    I will try to make as a detailed description as possible as I can not figure out which step needs to be corrected.
    I would like to create a landscape view as seen by someone on a sleigh ride down the hill.
    It starts with a winter forest extreme close up then trees start to move to the left ever so slightly, then speed up down hill and then decelerate and zoom out into a thin line on the horizon while slowing down but still moving to the left of the screen.
    The way I decided to create this scene:
    I created a nice multi layered file in Illustrator with all the trees overlapping each other. The file is to the maximum artboard width allowed by Illustrator.
    I imported this multi layered Illustrator file into After Effects as a Comp with separate layers.
    I assigned slight movement in the layers from right to left at various speeds. It gives a dimension to the view as you see one line of trees passing behind another at slightly different speed. This step does not seem to create any problems.
    I kept on building the continuous line of trees extending to the right by duplicating imported Illustrator layers until I reached the limit of After Effects Comp canvas size. I believe it was at either 30000 or 60000 pxls. The reason why I need trees so large is because at the beginning of the animation we see them at an extreme close up with all the leaves and branches visible. Then the forest line starts to move to the left and speeds up.
    Eventually it speeds up and zooms out at the same time enough to reach its end on the right. By this time the trees are at 50% of the screen size. So I import my tree layers again and match them perfectly at the seam and assign speed and scale so it continues to move past the viewer to the left and zooms out into perspective.
    And now everything goes wrong. I perfectly match the points of original tree line and the additional tree line. I see they nicely touch each other in the beginning of the movement and at the end.
    However unexpectedly in the middle they start to overlap each other and move slightly faster. For example: Left end of second forest line touches the right end of first forest line at the beginning at 10 sec and touches it the same at the end at 20 sec. However at 15 sec it speeds up and jumps ahead the right end of the first forest line. I tried to fix it by making a key frame at 15 sec and aligning them again. It resulted it two smaller jumps at 12.5sec and 17.5sec. If I keep on keying between the frames the left end of the second forest line continues to make little jumps in between. If I try to adjust the zoom out part it again messes everything up. I did set up my anchor point to the left side of layer.
    I thought the problem is with Scale, so I made layer 3D and started to reduce a Z dimension but got the same result. The layers jump on each other and it does not seem as one continuous movement.
    POTENTIAL PROBLEM: I did assign Easy Ease, Ease In an Ease Out, so my acceleration and deceleration have nice and smooth motion. However I tried to match the speed and velocity in Key Frame options window (double click Alt on PC opens this dialog window) between the original and the additional forest lines.
    I can not make this forest line long enough in a static window as I reached the width limitation of After Efffects canvas size. I need it very large as it starts at extreme close up and then zooms out to a and extreme horizon.
    I can not make it a moving line and keep on patching it up as movement does not match and lines start to speed up between the key frames and overlap each other.
    I though the problem was the combination of side ways right to left movement and zooming out motion (which I tried both ways: Scale in 2D layer and Z Dimension in 3D Layer) but I can not match even the linear speed of the forest lines from right to left. Perhaps there is a problem with how I am trying to match it.
    I will even rebuild the entire project if someone can list steps how to make one continuous line of patched up elements in sync, so they seem as one continuous image line.

    Hard to really grasp the situation without a few screen grabs, but some general thoughts:
    If all your elements are vector art from Illustrator, scale shouldn't be a factor.  Set your Illustrator layers to Continuously Rasterize, and you can move as close as you like to the layers with the camera and they will still be sharp.  Thus, you can work at an overall smaller scale, and not go beyond AE's 30000 pixel limitation.  Which also means you won't need to frame-match two environments.
    It sounds to me like you are overcomplicating the job.  Personally, I wouldn't combine camera movements and zooms - the potential that varied focal lengths will upset something is too great.  I'd just do everything with camera movement, using the X axis for left-right movement, and the Z axis to move closer or further toward your subjects.  After Effects cameras mimic the way real world cameras work, so it's best to approach the job like a real world situation.  Build the world, then animate the camera moving within that world.
    Remember that you can use Precomposed/Nested compositions to greatly streamline your work.  Make a clump of 10 or so trees in one comp, then use that pre comp nested multiple times within your main comp.  Don't forget to collapse transformations of the pre comps.

  • Mpeg-2 Frame Size Limitations?

    Can I create an Mpeg-2 frame size large then 720 x 480?

    You can but why?
    In compressor 2.3 you can change the format(encoder tab ->Video Format) from NTSC to one that is HD (720p, 1080i etc...) and that will increase the frame size. But if your source isn't HD it will look like garbage if it even works correctly.

  • MPEGs alone and with Menus....

    (new user, PE8, PAL-format)
    I normally assemble and save all mpeg-scenes from my Sony DCR-SR77E into one PAL DVD STANDARD MPEG movie in PE8 for later assembly with other movies (same type) under one DVD-menu. This DVD shows all movement in a terrible way - as if frames were dropped or switched around (but all in normal speed and in a very consistent way). In the beginning I thought the movie ended up in NTSC-format by accident - made from PAL-movies, but that is not the case. The problem is the same if I save my movies in AVI before assembling the DVD.
    If I choose to make a DVD directly from my Mpeg-scenes in PE8 (with or without menu) the result is perfect....
    I use the settings recommended in both cases.
    Does anyone have a clue what I am missing here?
    (Thanks in advance)

    BILL: No - that was not the solution, but you made me realize how terribly I treat my movieclips. I will certainly do as you suggest.
    STEVE: That did the trick. I have never even noticed that I should make a choice in that menu....
    THANKS a lot to both of you for the fast response and professional advice.

  • Processor speed and built-in memory of iPad Air and iPad Mini with Retina Display?

    Does anyone know the Processor Speed and Built-in Memory Size of iPad Air and iPad Mini with Retina Display?
    Header 1
    Processor Speed
    Built-in Memory
    The New iPad (iOS7)
    1 GHz
    1 GB
    iPad Air
    iPad Mini with Retina Display
    I tested them side-by-side in Apple Store today and after the same 10 apps loaded, I didn't feel significant speed gain from iPad Air and iPad Mini with Retina Display from my New iPad.
    I wonder what Processing Speed and Built-in Memory do the iPad Air and the iPad Mini with Retina Display have.
    Can someone who has upgraded give any feedback?

    Thanks Diavonex.
    Header 1
    Processor Speed
    Built-in Memory
    The New iPad (iOS7)
    1 GHz
    1 GB
    iPad Air^
    1.4 GHz
    1 GB
    iPad Mini with Retina Display#      
    800 MHz* 
    1 GB
    iPhone 5S
      likely 1 GB
    * Battery Doctor app revealed.
    # Apple APL0698 SoC  A7 Processor
    ^ Apple APL5698          A7 Processor
    No wonder I don't fee much speed improvement on iPad mini with Retina Display (128 GB WiFi + Cellular).

  • How to find accurate number of Rows, and size of all the tables of a Schema

    HI,
    How to find the accurate number of Rows, and size of all the tables of a Schema ????
    Thanks.

    SELECT t.table_name AS "Table Name",
    t.num_rows AS "Rows",
    t.avg_row_len AS "Avg Row Len",
    Trunc((t.blocks * p.value)/1024) AS "Size KB",
    t.last_analyzed AS "Last Analyzed"
    FROM dba_tables t,
    v$parameter p
    WHERE t.owner = Decode(Upper('&1'), 'ALL', t.owner, Upper('&1'))
    AND p.name = 'db_block_size'
    ORDER by 4 desc nulls last;
    ## Gather schema stats
    begin
    dbms_stats.gather_schema_stats(ownname=>'SYSLOG');
    end;
    ## Gather a particular table stats of a schema
    begin
    DBMS_STATS.gather_table_stats(ownname=>'syslog',tabname=>'logs');
    end;
    http://www.oradev.com/create_statistics.jsp
    Hope this will work.
    Regards
    Asif Kabir
    -- Mark the answer as correct/helpful

  • I have lost the ability to change fonts,use color and size and when I try to write anyone,I cannot see my mailing list and there is no send button.

    A few months ago my ability to use different fonts, colors and sizes suddenly disappeared. These choices were always available when looking at my email and I used them regularly . No one I asked ever heard of such a thing happening. I left it alone until I found someone to help. Then, a few days ago, when I clicked "write" , two things happened. First, I could not forward, reply or even see my collected email addresses. Second, there was no longer a place that said "send". My email page filled the entire screen and when I scaled it down, there was still no way to see my list or to send. I am a novice when it comes to fixes and terms but, I have asked people who have some experience with PC's they were stumped. I contacted Fairpoint and they said it must be a Thunderbird problem. Most of the people I asked said they didn't know Thunderbird. One suggested that I reinstall T.bird but, said I also might lose everything on my PC. I would appreciate any help you can give. Thanks, Jim

    When you click Write and open the new message editor, press Alt to show the Menu Bar, then enable all the toolbars under View/Toolbars. Plus, press F9 to show the Contacts sidebar.

  • Location and size of hotspot in a packaged file

    Hi all,
    I'm working on a authorware program in which I want to use the location ans size of a clicked hotspot to draw a rectangle. Ultimately, I would like to be able to change the size/position of a hotspot, and when packaged, the rectangle should be drawn at the new position of the hotspot, with the new size. So far, I've been succesful in an unpackaged file with:
      GetIconProperty(@Title; #awSizeX))
      GetIconProperty(@Title; #awSizeY))
      GetIconProperty(@Title; #awLocationX)
      GetIconProperty(@Title; #awLocationY)
    where Title is the title of the clicked hotspot. So far so good... BUT I learned the hard way that GetIconProperty() does not work in a packaged authorware file (next time I'll first read the help section better!). My question: how can I obtain the same information in a packaged authorware file?
    I have been looking at the GetSpriteProperty() function, which should work in a packaged file. However, the hotspots are not sprites, and I don't know what spriteproperties I should use for the location and size of the hotspot  (#awSizeX, #awSizeY, #awLocationY, & #awLocationX don't work). Furthermore, GetPostPoint does provide the position of the top left pixel position of the hotspot, but I need separate X and Y values for the position of the hotpot to be able to use the Box() function to draw the rectangle. And I need the of the hotspot as well. Lastly, PositionY@Title and PositionX@Title don't work for my hotspots (the value is always 0 and does not change when clicking the hotspots).
    I could solve the problem by making variables of all the position values and size values of all the hotspots, but then I would not be able to change the position and size of the hotspot by dragging, and changing the rectangle accordingly.
    I would be more than happy to hear if anyone has a solution for me.
    Thanks!

    Hi Steve,
    Thanks for your suggestions! Regarding your first thought: I don't know what you mean by making my clickable area a hit *object. I've tried the help pages of authorware, but it drew a blank. Could you explain how I can make my clickable area a hit *object?
    Regarding clickX/Y: the values depend on the exact location where the user clicks, therefore drawing a rectangle over a picture (which is not moving) is difficult using clickX/Y. I would like the rectangle to appear on a certain spot (namely on the position of the hotspot, with the same width & height), regardless where in the hotspot the user clicks.
    Frank

  • Wifi speed and the new Apple TV concerns

    One of the great things about my classic ATV is that I can start downloading a movie before dinner, and know that my viewing experience later won't be subject to variances in the wifi speed. In my experience, wifi speed and reliability can vary widely - and my worst nightmare is a video that stutters or freezes.
    I new the new box has the faster modern chip, but I'm concerned Apple has no control over what might be the weak link: the wifi connection.
    Is it time to make a run on a couple of classic boxes? Are they still in stock anywhere?

    The problem is that all services are bundled with your Apple ID ([email protected]):
    Your iCloud account (Mail, Contacts, Calendars, Reminders, Notes, Backups, etc.),
    also iTunes & App Store purchases (Music, Movies, TV Shows, etc.),
    and the iTunes Match services.
    (I guess that all your devices - yours and your wife's are connected to one iTunes library, right?)
    If you want that your wife gets her own iCloud account for Mail, Contacts, Calendars, etc. but gets also access to your media then you have two set up two things on her device:
    iCloud (Settings > iCloud) with her account (e.g. [email protected])
    and
    iTunes & App Stores (Settings > iTunes & App Stores) with your account (e.g. [email protected]).
    In this case she gets access to your library and could use the same iTunes Match account.
    (See also: Using one Apple ID for iCloud and a different Apple ID for Store Purchases http://support.apple.com/kb/HT4895)

Maybe you are looking for

  • I can't get my iPhone5 to show up in iTunes 11!

    In my house, we have have one three year old Mac that My Mom and I sync our iPhones to using iTunes(obviously) She only uses it to charge her phone and update her games, but I use iTunes for everything that is considered a feature. Since this iTunes

  • How to debug this?

    Under Flash Player 10.1 on Windows, we are suddenly getting an error that did not occur under player 9 or 10, and does not appear in any version of player on Mac.  The biggest problem is that the entire error stack is inside the Flash framework, init

  • Using Photoshop Elements 11 on a USB flash drive

    At school we have photoshop elements installed on a few of the PC's and right now I am working on one that doesn't have it installed. I thought of this earlier yesterday and copied the files from the photoshop elements folder to my USB from the pc ha

  • Performance analyzation

    Hi every body,                  Could any one explain me the following things regarding ABAP RUN TIME ANALYSIS.. 1. what can we analyze by checking Tcode SE30. 2. what is abap load  and what is database load and what is system load there? 3. For a go

  • Conditional statements

    Hello all, I recently have been attempting to make conditional statements work in adobe acrobat X.  Here is what I have in the custom calculation script text box: var a = this.getField("endResult2").value; if(a >= 120000) event.value = (a / 150000) *