Newbie question - how to format timeline to not show hours?

Hello - trying out Premiere after giving up on (gasp) iMovie
I make very short videos - from 30+sec to 5 minutes.  I don't need the timeline to show so much detail.  The hours are meaningless. I also am not yet trying to sync audio with precision I don't need the fractions of seconds.
Can I control that in the display is Premier 2014?
Thanks!!
Katie

Yes you can controle the timeline but not the way you want.
Its either timecode (more options rightclick on playhead position) or audiounits (1/48000 per second).
Its default set to hours-minutes-seconds-frames.
The more you zoom in on the timeline the more specific it gets.

Similar Messages

  • Newbie question - how to add a computer not on your network?

    We purchased the ARD 3.0 for our networked Macs and so far it's been working fine. But we also have a remote user we'd like to add. This person is using a cable modem to connect to our VPN now but is moving and may have to use dial-up for a while.
    So, how do I add them to this list? Get their IP address? What if the IP address changes?
    Thanks

    "So, how do I add them to this list?"
    "File" menu --> Add by address.
    But you should forget about supporting this user if they have a dialup connection, as it is far to slow to do 95% of ARDs tasks...especially control and observe.
    "What if the IP address changes?"
    Set up the computer with a dynamic hostname at dyndns.com

  • How to format paragraph string to show content left, Right or middle of pdf document using iTextsharp ' vb

    Dear All
    how to format paragraph string to show content left, Right or middle of pdf document using iTextsharp in visual basic and absolute position on the document.
    Thanks

     Here is one more example that i have modified the GetCell function so that you can use it for adding all the cells to the document.  It takes several arguments to specify everything you need to create each cell.  It now lets
    you specify the Text, the Text Alignment, the Text Font and color, weather the cell shows the Border, the BackColor of the cell, and the Padding values for the Left, Right, Top, and Bottom.
     If you study the code you should be able to figure out how it works.  From here you can figure out the rest of what you need to do and how to use the
    GetCell function.
     With one quick google search for "iTextSharp Documentation" the first link to pop up was this link.
    iTextSharp Documentation
    Imports System.IO
    Imports Its = iTextSharp.text
    Public Class Form1
    Private dt As New DataTable
    Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
    dt.Dispose()
    End Sub
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    dt.Columns.Add("Name")
    dt.Columns.Add("Age")
    dt.Columns.Add("Birth Date")
    dt.Rows.Add(New Object() {"Johnny", "23", Now.AddYears(-23).ToString})
    dt.Rows.Add(New Object() {"Frank", "41", Now.AddYears(-41).ToString})
    dt.Rows.Add(New Object() {"Rex", "33", Now.AddYears(-33).ToString})
    dt.Rows.Add(New Object() {"Kim", "26", Now.AddYears(-26).ToString})
    End Sub
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim MyPdfFilePath As String = "C:\TestFolder\MyPdf.pdf"
    Dim pSize As New Its.Rectangle(Its.PageSize.A4)
    Dim PdfDoc As Its.Document = New Its.Document(pSize, 10, 10, 10, 10)
    Dim PdfImage As New Its.Jpeg(New Uri("C:\TestFolder\MyLogo.jpg"))
    PdfImage.Alignment = Its.Jpeg.ALIGN_CENTER
    Dim pTable As New Its.pdf.PdfPTable(1)
    pTable.AddCell(getCell("Name : " & TextBox1.Text, Its.pdf.PdfPCell.ALIGN_CENTER, Its.FontFactory.GetFont("Arial", 15, Its.BaseColor.BLACK), False, Its.BaseColor.WHITE, 10, 0, 0, 0))
    pTable.AddCell(getCell("Policy : " & TextBox2.Text, Its.pdf.PdfPCell.ALIGN_CENTER, Its.FontFactory.GetFont("Arial", 20, Its.BaseColor.RED), False, Its.BaseColor.WHITE, 10, 20, 0, 0))
    Dim cTable As New Its.pdf.PdfPTable(dt.Columns.Count)
    For Each col As DataColumn In dt.Columns
    cTable.AddCell(getCell(col.ColumnName, Its.pdf.PdfPCell.ALIGN_CENTER, Its.FontFactory.GetFont("Arial", 12, Its.BaseColor.WHITE), True, Its.BaseColor.BLUE, 3, 5, 0, 0))
    Next
    Dim tblfont As Its.Font = Its.FontFactory.GetFont("Arial", 10, Its.BaseColor.BLACK)
    For Each row As DataRow In dt.Rows
    cTable.AddCell(getCell(row.Field(Of String)("Name"), Its.pdf.PdfPCell.ALIGN_LEFT, tblfont, True, Its.BaseColor.WHITE, 3, 4, 3, 0))
    cTable.AddCell(getCell(row.Field(Of String)("Age"), Its.pdf.PdfPCell.ALIGN_CENTER, tblfont, True, Its.BaseColor.WHITE, 3, 4, 0, 0))
    cTable.AddCell(getCell(row.Field(Of String)("Birth Date"), Its.pdf.PdfPCell.ALIGN_RIGHT, tblfont, True, Its.BaseColor.WHITE, 3, 4, 0, 3))
    Next
    Using fs As New FileStream(MyPdfFilePath, FileMode.Create, FileAccess.Write, FileShare.None)
    Using pdfWrite As Its.pdf.PdfWriter = Its.pdf.PdfWriter.GetInstance(PdfDoc, fs)
    PdfDoc.Open()
    PdfDoc.Add(PdfImage)
    PdfDoc.Add(pTable)
    PdfDoc.Add(cTable)
    PdfDoc.Close()
    End Using
    End Using
    PdfDoc.Dispose()
    End Sub
    ''' <summary>Creates a new cell for the table.</summary>
    ''' <param name="text">The text string for the cell.</param>
    ''' <param name="alignment">Alighnment for the text string.</param>
    ''' <param name="textfont">The font used for the text string.</param>
    ''' <param name="border">True to show the cell border. False to hide the cell border.</param>
    ''' <param name="backcolor">The background color of the cell.</param>
    ''' <param name="padtop">The amount of padding on the top of the text string.</param>
    ''' <param name="padbottom">The amount of padding on the bottom of the text string.</param>
    ''' <param name="padleft">The amount of padding on the left of the text string.</param>
    ''' <param name="padright">The amount of padding on the right of the text string.</param>
    Public Function getCell(ByVal text As String, ByVal alignment As Integer, ByVal textfont As Its.Font, ByVal border As Boolean, ByVal backcolor As Its.BaseColor, ByVal padtop As Single, ByVal padbottom As Single, ByVal padleft As Single, ByVal padright As Single) As Its.pdf.PdfPCell
    Dim cell As New Its.pdf.PdfPCell(New Its.Phrase(text, textfont))
    cell.BackgroundColor = backcolor
    cell.PaddingLeft = padleft
    cell.PaddingRight = padright
    cell.PaddingTop = padtop
    cell.PaddingBottom = padbottom
    cell.HorizontalAlignment = alignment
    If Not border Then cell.Border = Its.pdf.PdfPCell.NO_BORDER
    Return cell
    End Function
    End Class
    If you say it can`t be done then i`ll try it

  • Hello am using ios 7.0.4 I have a question about messages that it does not show the time of a particular message after first message that I recive form a paricular person so please in the next version change this and with every message show time and date

    hello am using ios 7.0.4 I have a question about messages that it does not show the time of a particular message after first message that I recive form a paricular person so please in the next version change this and with every message show time and date

    Hi,
    How is everything going? Have you checked this issue from OWA? If so, please let me know the result.
    In adition, please also try to use the following powershell commands to check if the assistant has right permissions:
    Get-MailboxFolderPermission -Identity
    CEO’s email address:\Calendar -User assistant’s email address
    Also check with:
    Get-Mailbox -Identity CEO’s mailbox
    | fl *GrantSendOnBehalfTo
    Please let me know the result.
    Best Regards,
    Steve Fan
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • How do I undo Do not show again?

    I'm making a video with alot of screenshots from a video strung together. When I put the first clip into Timeline, it displayed:
    Fix quality problems in clips?
    (checkbox) Do not show again
    [Yes] [No]
    I clicked "do not show again" and "yes". I realized what it did was brighten the clips, which I did not like. However, I can't seem to disable this now. Can and how do I uncheck do not show again?

    MW74126
    What version of Premiere Elements are you using and on what computer operating system?
    My generalization would be:
    Edit Menu/Preferences/General and put a check mark next to Show all do not show again messages.
    Please let us know if that worked for you.
    Thanks.
    ATR

  • How to hide or do not show the receipt's name after miss called?

    1. How to hide or do not show the receipt's name after miss called?
    2. I do not want to show my message statement in the screen.

    I have also registered to this forum to inform that the problem with showing the MAC-address in the sidebar of the finder is still not solved.
    The strange thing is that the Embedded Web Server says:
    "This specifies the Bonjour domain name assigned to the device, in the form <host name>.local. If a user-specified host name has not been assigned, the default host name HPxxxxxx is used, where xxxxxx are the last 6 digits of the LAN hardware (MAC) address. This option cannot be modified."
    But I did assign a user-specified host name and that name does show-up everywere (also within Bonjour), except in the sidebar of the finder (hp###xx##x####). Lots of people have the same issue, when searching on the interet, but not one has found the solution.
    Please help with solving this issues?

  • Need to send my back up email a reset security questions email but the option does not show when I click on password and security

    Need to send my back up email a reset security questions email but the option does not show when I click on password and security

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    (97456)

  • How come my trash is not showing up in the trash?

    How come my trash is not showing up in the trash? When I go to press the empty button in the trash it is grayed out. Also I dragged a picture into the trash it didn't show up. I have also deleted many songs from iTunes and they're not in there either. Does anyone know why?

    iPod not recognized in iTunes and Mac desktop

  • Newbie Question:  How much computer do I need?

    Newbie Question:
    I would like to use MainStage 3 in a live performance environment to play bars, parties, etc.  I'm not looping, using it to playback recordings, processing outboard equipment or vocal processing.  I want to stop carrying Rolands, Nords, Korgs, etc and get to a controller and a rack with a Mac Mini in it.
    I tested a download of Mainstage 3 on my home Mac Mini (late 2012, 3.5 Ghz i5, 4GB RAM, 500GB drive) and it seemed to run fairly well.  $30 well invested so I trekked forward... I purchased a Mac Mini (late 2009,  2.52GHz Core 2 Duo, 6GB RAM, 128GB SSD) for $200.  I started to do more elaborate keyboard setups to see how the CPU would hold up.  It typically runs from 30% to 50% of capacity (CPU and Memory)  It actually boots and runs better than the i5.  I hear the occasion gitch, but it actually seems to be getting better in time (or I'm rock and roll deaf.
    I got a rack, an Airport Express, a Radial USB interface and a Nektar Panorama P6.  It's starting to get expensive, but I'm emboldened by the actual quality for the sound and the flexibility of arranging for live performance.  What used to take me two and three keyboards to play, I can now fit on one performance patch.
    OK, now the question... am I at the limits of this little Core 2 Duo?  Should I upgrade the i5 with more RAM and a bigger SSD and use that?  Should I get a new(er) i7 and bite the $1,500 bullet for the additional RAM and SSD?
    I see that most of you are running pretty nice Macbook Pros with i7 and lots of everything.  My needs are modest; am I OK? 
    BTW, I want to run a Mac Mini in a box because I don't want to carry a laptop out in the open.  If I was doing bigger shows I wouldn't care but I play some rowdy bars and constantly have folks hanging off me while I'm playing.  It's fun, but hard on gear.  If you can't drop it or dip it in beer, it won't last long where I work.
    Matt Donnelly

    Rule of thumb: newer and faster is better. But, depending the complexity of your needs you may be OK with an older Mac. Some glitches that happen in a live performance are due to loss of communication with USB or Firewire inputs, so make sure they're secure. I recently upgraded from a 2010 Mac Mini 2.6 dual core with 16 GB RAM, which was used live for nearly four years, to the latest Mac Mini 3.0 i7 with 16 GB RAM and a 500 GB SSD. I was getting an occasional stuck note with the older one. The new one is rock solid. Some of my patches may have up to a dozen channel strips mapped to three keyboards. The Mini is mounted in a rack next to a MOTU Ultralite Hybrid. It is a good idea to map a panic button on your keyboard to controller # 123(all notes off). Also, you might want to invest in a battery backup power supply(APC, Cyberpower, etc.-$40-$60) to protect your Mac against power loss, which can damage you hard drive.

  • Imovie timeline is not showing transtions and clips

    Imovie timeline is not displaying transtions and clips so I can edit etc.

    Hi
    Error -50 paramErr  Error in user parameter list
    Can there be any external hard disks - if so How is/are it/they formatted ?
    Must be Mac OS Extended (hfs) if used for Video.
    UNIX/DOS/FAT32/Mac OS Exchange - works for most but not for VIDEO.
    • free space on internal boot hard disk? How much ?
    Video codec
    • streamingDV, AIC etc. (not .avi, .mp4, .m4v, .wmv etc as they are containers not codecs)
    Pictures
    • in what format ? .jpg, .bmp, .tif, else ?
    Audio
    • from where/what format ? iTunes, .avi, .mp3, .aiff, else ?
    The "com.apple.iMovie.plist" file
    Many users has not observed that there are TWO libraries.
    • Library - at root level
    • Library - in user/account folder - THIS IS THE ONE to look into
    from Luke Burns
    I fixed the problem.. but it was very, very strange. I had a very long section for credits and set the line spacing to 1.0.. for some reason this caused it. I removed it, and it worked fine. I put it back, and I couldn't preview or play the video.
    I don't know why that could cause that big of a problem, but it did..
    Klaus1
    You need more free space on your hard drive.
    from: jonorparkerjon
    After phone support from apple I ended up creating a new project and adding all 117 clips back in individually till I found out what clips flagged and would not allow me to export. I had 3 I deleted and replaced and everything works now 1hr after tedious work....
    Where do Your material come from
    • Camera
    • External hard disk
    • USB-memory
    And all are connected so that iMovie can find it ?
    from Karsten S
    Shorter clips than 1,5 sec might be one of the culptrits
    Bengt cont.
    Set-Up might differ
    • Mac OS - most probably X.7 or more
    • iMovie version - more than iM'11 v. 9.0.4
    Action taken
    • Finalizing project - I never do as I never understood the gain to do so
    • Share as HD to iDVD - never give any gain but if it works the resulting DVD is less quality than if SD-quality was shared
    fps - set
    • I only use PAL (25fps)
    Yours Bengt W

  • Clips added to timeline do not show up in sceneline

    Hi
    Can someone please guide me to fix this problem. I have imported AVCHD videos from an HD camcord into my files and folders. Then I've opened up these files in the premiere elements organizer, dragged them onto the timeline. A pop up appears asking me if I want to videomerge the clip because it has a sold background. The first clip I drag onto the timeline will appear in the sceneline, but after that, any clips I drag onto the timeline does not appear on the secenline. It only extends the first clip in the sceneline to make it one big clip (although in the timeline you see them as separate). I can't work with the transitions easily without being able to view the storyboard mode.
    Also, the first clip dragged onto the timeline always ended up on the Video 2 track, it doesn't allow me to drag anything onto the video 1 track.
    I only installed this program not long ago and haven't changed any default settings. All of the tutorials I find online doesn't start up this way.

    You have to select the correct AVCHD project preset at the start up screen...New Project, then select Change Settings and select the correct AVCHD project preset. If your audio is 5.1 surround sound be sure to select the AVCHD 5.1 audio project preset, if stereo select the AVCHD project preset. If you select the wrong preset for your audio the audio will be placed on track 4 and will not be visisble in Sceneline mode. In this case the only solution is to work in Timeline mode. You can right clcik on the empty tracks and select to delete them to tidy up the Timeline view.
    Anyway, selecting the correct project preset should solve your problem.

  • PSe 8: Clips in timeline/sceneline not showing in project view.

    IN Photoshop Elements 8 I have a clip in my timeline/sceneline that is not showing up in Project view nor does it have the "P" in the bottom right corner in Organizer view. I thought that project view is supposed to display all scenes currently in the sceneline/timeline.

    Oops - this should be posted in the Premiere Elements Section.

  • Date format MMMM does not show in Chinese

    Hi,
    I hope someone can help me with this issue.
    The MMMM month format does not show up correctly in Chinese locale. It shows up as []
    I just don't know what to do...
    Has anyone encountered the same issue?
    I would greatly appreciate it if you could help me.
    Thanks!

    The problem is that on the page the encoding is ISO-8859-1 even though I have UTF-8 on all pages.
    I also did what they suggested here [http://www.sitepoint.com/forums/showthread.php?t=610332 |http://www.sitepoint.com/forums/showthread.php?t=610332]
    I changed all the xsl files and everywhere that the encoding was getting set to UTF-8 [http://www.javaworld.com/javaworld/jw-05-2004/jw-0524-i18n.html?page=1|http://www.javaworld.com/javaworld/jw-05-2004/jw-0524-i18n.html?page=1]
    It's still not working. Any idea what i need to do??? BTW I'm using Struts.
    I would greatly appreciate it if anyone can help me with this.
    Thanks!
    Edited by: Karmela on Apr 27, 2009 1:53 PM
    Edited by: Karmela on Apr 27, 2009 1:54 PM

  • I have forgot my security questions but the reset bar does not show

    i have forgot my security questions but the reset bar does not show

    If you aren't getting the reset link on your account then you don't have a rescue email address (which is not the same thing as an alternate email address) on your account, and you won't be able to add one until you can answer your questions - you will have to contact Support in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset you can then use the steps on this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5620

  • How come my device is not showing up in the summary pane?

    I am trying to restore my device because I have a black screen. I signed into my account but my device is not showing up in the summary pane.  Why not?

    one of the biggest things that i see with this issue is that the usb connector is not pushed in all of the way
    -look at the connector and see if there is any gap between the white shell of the connector and the device
    -if so that push it in until there is no gap between the ipod and you hear another click
    let me know if that doesn't work because there could be other things involved with the cause of this issue
    but i do hope this helps:)

Maybe you are looking for

  • How do I contact Apple for help?

    I'm going insane. I waited on hold for something like half an hour before I had to leave for class. Is there an email address for service and support? I need help with the scratch issue. I've had my ipod nano for about a week and a half, I've been ex

  • I cant open new tabs and instead have to open new windows - vert frustrating

    I cannot open new tabs in the firefox browser. (this has only just started happening. previously it worked fine) I have tried a number of different ways and it doesnt open. Internet explorer does not have the same problem

  • Macintosh SE Issues

    Hey everyone, I was given a Macintosh SE that worked from a friend in another state as a gift, and i of course had to have it shipped from my friend to me. Well I know my friend wouldn't lie about the computer working when it didn't, so what could ha

  • How can i download photoshop cs5 with out a cd

    how can i download photoshop cs5 with out a cd

  • Using the CTRL key in Screen Sharing

    I am using native OS X screen sharing to share my Mac OS X Lion iMac screen on my Mac OS X Snow Leopard MacBook Pro.  I am using it to run Xcode since I can't run the latest version of Xcode on my Snow Leopard machine (2006 MacBook Pro).  It works gr