Problems with video in my email address

Whatc view video from my email address

Well, it's still not very good quality, and I don't have any further options for the MPEG-4 setting. I think I'll have to play with the different compression formats. The DV/DVCPRO format worked better than MPEG-4, but it's still not very good.
Thanks for your help.

Similar Messages

  • I have a problem with mail autofilling info email addresses. Emails sent to me the from looks like this: Holiday in the United States email address . I have no idea what this Holiday in the United States is...How can I fix/change to my name?

    I have an irritating problem with mail autofilling info in email addresses. Emails sent to me the from looks like this: Holiday in the United States <my email address>. I have no idea what this Holiday in the United States is or how it got to be there...How can I fix/change to my name?
    I fixed the To: autofilling incorrectly by deleting my email address from the Previous Recipients List, but is there a way to stop that from coming up on emails that I receive?

    Have you checked your Mac address book? If your email is saved somewhere in your address book with the name "Holidays in the United States" it might be adding the name automatically in Mac Mail.
    Alternatively, try this:
    Delete an Email Address from Auto-Complete in Mac OS X Mail
    To remove an email address from the auto-complete list in Mac OS X Mail:
    Start typing the recipient's address or name in a new message.
    Select the desired address from the auto-complete list as if you'd compose an email to them.
    Click the small down arrow in the recipient.
    Select Remove from Previous Recipients List from the menu.
    You can also search for the unwanted address directly in the previous recipients list:
    Select Window | Previous Recipients from the menu in Mac OS X Mail.
    Highlight the address you want to remove.You can highlight multiple addresses by holding down the Command key.
    Click Remove from List.
    Source: About.com

  • Problems with password for alias email address

    I am using two e-mail addresses, one the original @verizon.net and an alias I set up @alias.com
    I was regularly -- but it seemed sporadically -- getting this following message, sometimes when I tried accessing, but sometimes just when the Apple Mail was open but I wasn't doing anything:
    Enter the password for user “ -- alias address --” on IMAP server “mail.--alias--.com”
    For a while I hit 'cancel' and everything worked fine.
    But then I went into "account" and tried to fix the problem ... and I think I changed the password for the alias. In any case, I am unsure what the password is...and I can't see it on Preferences/Accounts.
    Now the root "Inbox" and the "alias" addresses have the tilde by them, indicating offline. Nothing I do gets rid of the tilde. I get that same request for password.
    Nonetheless I am still getting all e-mails through the secondary "Verizon" account. That does not have the tilde and is receiving all my e-mails.
    I want to clean this up...and avoid the annoying continuing often request for password.
    AS I WAS TYPING THIS, the message from Apple Mail popped up again. I had to hit 'cancel' or 'OK' (back and forth, each one) several times before it stopped popping up. This has happened before.

    Have spent hours in Preferences/Account ... deleted account, replaced account ... tried SSL on and SSL off. Read "Help/If you can't receive messages". Used Connection Doctor.
    I CAN send messages with my alias but am not receiving to it. This is a major problem for me.
    There seems to be no way to find out what my correct password should be. I've got two in storage, one much more likely than the other. But neither works.
    I'm also uncertain of incoming mail server correct name.

  • Problem with Dot(.) in email Address

    Hi,
    i send with VB Code (Word VBA 2007) an GW 7.0.3 Build 1294 a Mail to a Mail Address eg [email protected]
    The Postmaster of abc.de recives [email protected]
    any a idea what here is wrong...
    tnx for help
    Here is the complete code
    '/// Send mail with GW //
    Sub Send_GW_Mail(ByVal SinSendOpt As Single, _
    ByVal StrMail_To As String, _
    ByVal StrMail_Cc As String, _
    ByVal StrMail_Bcc As String, _
    ByVal StrMail_Betreff As String, _
    ByVal SinAZ As Single, _
    ByVal StrAnlagen As String, _
    ByVal StrMail_Text As String, _
    ByVal StrFuss_text As String)
    Dim GW As Variant
    Dim Acc As Variant
    Dim GWMailFolder As Variant
    Dim GWMessages As Variant
    Dim GWMessage As Variant
    Dim GWDraftMsg As Variant
    Dim GWRecips As Variant
    Dim GWRecip As Variant
    Dim sRecieverTo, sRecieverCC, sRecieverBcc As String
    Dim SenderDisplayName As String
    Dim SenderEmailAddress As String
    Dim CreationDate As Date
    Dim iCount As Integer
    Dim vCommander As Variant
    Dim ParamStr As String
    Dim MyMsgID As String
    Dim sResult As String
    Dim iRet As Integer
    Dim sDOT, RecDot
    Dim iPos, RecPos
    Dim SenderEmailAddressType
    Dim sAttachment
    Dim egwIncoming, egwMessagePrivate, egwNormal, egwDefaultSecurity
    Dim ToDot, CcDot, BcDot
    Dim iElement As Long
    Dim GWAddrBook As Object
    Dim GWAccount As Object
    Dim GWEntry As Object
    Dim GWEntries As Object
    Set GW = CreateObject("NovellGroupWareSession")
    Set GWAccount = GW.Login()
    Set GWAddrBook = GWAccount.AddressBooks("Primrbuch")
    Set Acc = GW.Login
    Set GWMailFolder = Acc.Mailbox
    Set GWMessages = GWMailFolder.Messages
    Set GWDraftMsg = GWMessages.Add("GW.MESSAGE.MAIL", "Draft")
    sRecieverTo = StrMail_To
    sRecieverCC = StrMail_Cc
    sRecieverBcc = StrMail_Bcc
    ' Mail Betreff definieren
    If StrMail_Betreff > "" Then GWDraftMsg.Subject = StrMail_Betreff
    ' Mail text (Body) definieren
    GWDraftMsg.BodyText = StrMail_Text & Chr$(13) & vbCrLf & Chr$(13) & vbCrLf & Chr$(13) & vbCrLf & StrFuss_text
    ' Sender Name
    GWDraftMsg.FromText = Acc.RootFolder.Name
    ' Anlagen Anfgen ################################################## ###
    For II = 1 To SinAZ
    If StrAnlagen(II) = "" Then
    'nix
    Else
    GWDraftMsg.Attachments.Add StrAnlagen(II)
    End If
    Next II
    ' E-Mail Adresse zuweisen ################################################## ######
    Set GWRecips = GWDraftMsg.Recipients
    'Wenn ein Komma kommt
    sRecieverTo = Replace(sRecieverTo, ",", ";", 1)
    sRecieverCC = Replace(sRecieverCC, ",", ";", 1)
    sRecieverBcc = Replace(sRecieverBcc, ",", ";", 1)
    'Email Empfnger Aufsplitten
    ToDot = Split(sRecieverTo, ";")
    CcDot = Split(sRecieverCC, ";")
    BcDot = Split(sRecieverBcc, ";")
    ' MailTo Zuweisen
    Dim StrDisplayName, StrMailAdress
    For iElement = 0 To UBound(ToDot)
    If ToDot(iElement) = "" Then
    Exit For
    Else
    StrMailAdress = CStr(Trim((ToDot(iElement))))
    StrDisplayName = Split(CStr(Trim((ToDot(iElement)))), "@", , vbTextCompare)
    StrDisplayName(0) = Replace(StrDisplayName(0), ".", " ", 1, , vbTextCompare)
    Set GWEntries = GWAddrBook.AddressBookEntries.Find("(<Email-Adresse> Matches " & """" & StrMailAdress & """" & ")")
    If GWEntries.Count > 0 Then
    Set GWEntry = GWEntries.Item(1)
    Else
    Set GWEntry = GWAddrBook.AddressBookEntries.Add(StrDisplayName(0 ), StrMailAdress, "NGW", "")
    End If
    Set GWRecip = GWRecips.Add(GWEntry.EMailAddress, "NGW", 0) '1 = CC and 2 = BC
    GWRecip.DisplayName = GWEntry.DisplayName
    GWDraftMsg.Recipients.Resolve
    'GWRecip.EmailType = "NGW"
    End If
    Next iElement
    Erase StrDisplayName
    StrMailAdress = ""
    For iElement = 0 To UBound(CcDot)
    If CcDot(iElement) = "" Then
    Exit For
    Else
    StrMailAdress = CStr(Trim((CcDot(iElement))))
    StrDisplayName = Split(CStr(Trim((CcDot(iElement)))), "@", , vbTextCompare)
    StrDisplayName(0) = Replace(StrDisplayName(0), ".", " ", 1, , vbTextCompare)
    Set GWEntries = GWAddrBook.AddressBookEntries.Find("(<Email-Adresse> Matches " & """" & StrMailAdress & """" & ")")
    If GWEntries.Count > 0 Then
    Set GWEntry = GWEntries.Item(1)
    Else
    Set GWEntry = GWAddrBook.AddressBookEntries.Add(StrDisplayName(0 ), StrMailAdress, "NGW", "")
    End If
    Set GWRecip = GWRecips.Add(GWEntry.EMailAddress, "NGW", 1) '1 = CC and 2 = BC
    GWRecip.DisplayName = GWEntry.DisplayName
    GWDraftMsg.Recipients.Resolve
    End If
    Next iElement
    Erase StrDisplayName
    StrMailAdress = ""
    For iElement = 0 To UBound(BcDot)
    If BcDot(iElement) = "" Then
    Exit For
    Else
    StrMailAdress = CStr(Trim((BcDot(iElement))))
    StrDisplayName = Split(CStr(Trim((BcDot(iElement)))), "@", , vbTextCompare)
    StrDisplayName(0) = Replace(StrDisplayName(0), ".", " ", 1, , vbTextCompare)
    Set GWEntries = GWAddrBook.AddressBookEntries.Find("(<Email-Adresse> Matches " & """" & StrMailAdress & """" & ")")
    If GWEntries.Count > 0 Then
    Set GWEntry = GWEntries.Item(1)
    Else
    Set GWEntry = GWAddrBook.AddressBookEntries.Add(StrDisplayName(0 ), StrMailAdress, "NGW", "")
    End If
    Set GWRecip = GWRecips.Add(GWEntry.EMailAddress, "NGW", 2) '1 = CC and 2 = BC
    GWRecip.DisplayName = GWEntry.DisplayName
    GWDraftMsg.Recipients.Resolve
    End If
    Next iElement
    Erase StrDisplayName
    StrMailAdress = ""
    SenderDisplayName = ""
    SenderEmailAddress = ""
    SenderEmailAddressType = "NGW"
    CreationDate = Now
    Set GWMessage = GWMessages.AddExistingMessage(SenderDisplayName, SenderEmailAddress, SenderEmailAddressType, _
    CreationDate, egwIncoming, egwMessagePrivate, egwNormal, egwDefaultSecurity, GWDraftMsg)
    GWMailFolder.Refresh
    Set GWMessages = Nothing
    Set GWMessages = GWMailFolder.Messages
    ' Send or Show - 1 = sho Msg / 2 = send direct
    If SinSendOpt = 1 Then
    ' Open the new message to view it and add recipient(s) manually
    MyMsgID = GWMessage.MessageID
    Set vCommander = CreateObject("GroupWiseCommander")
    ParamStr = "ItemOpen(""" + MyMsgID + """)"
    iRet = vCommander.Execute(ParamStr, sResult)
    GWMessage.Delete
    Exit Sub
    ElseIf SinSendOpt = 2 Then
    ' Direkt senden
    GWMessage.Send
    GWMessage.Delete
    MsgBox "Ihre Mail wurde gesendet!", vbInformation, "Mail sent"
    Else
    ' Open the new message to view it and add recipient(s) manually
    MyMsgID = GWMessage.MessageID
    Set vCommander = CreateObject("GroupWiseCommander")
    ParamStr = "ItemOpen(""" + MyMsgID + """)"
    iRet = vCommander.Execute(ParamStr, sResult)
    GWMessage.Delete
    Exit Sub
    End If
    'resetVariables
    call ResetVariables
    'VariablenZurcksetzten

    Hi,
    The object GWMessage and GWAccount can't support the email username with dot, you need change the the email username if it include the Dot.
    novanet.

  • Problems with getting my mediacom email address to work on my motorola razr HD

    I recently upgraded my motorola droid x to a motorola Razr and am trying to get my mediacom email account to work on my new phone. I entered the information from my old phone into my new phone exactly the same and it doesn't work. Any suggestions??? These setting worked great on my droid x but not on my new droid razr I've asked both the verizon techs and the mediacom techs and no one seams to have an answer.
    incoming sever: pop3
    sever                mail.mediacombb.net
    username:        [email protected]
    password:         my password
    port:                 995
    tsl:                    auto
    outgoing sever: mail.medicombb.net
    username:        [email protected]
    password:        my password
    port:                465
    tsl:                 always

    These instructions from Mediacom differ slightly from what you have:
    http://mediacomcable.com/CustomerSupport/troubleshooting/email%20getting%20started/HowdoIsetupmyAndroidSmartphonetouseMediacome-mail.html

  • HT1363 hi, i use an old but great black photo/video ipod. Suddendly it won't recharge, when connected it emits several clicks and an ipod icon appears together with the apple support email address. I have tried to restore and reset but it won't work. Any

    hi i use an old black 60G photo/video ipod. Suddenly it won't recharge, when connected to the pc it emits several cicks in serires and then it shows at intervals a low battery signs and another sign, a sad faced ipod icon with the apple support email address. Any clues and to how I can rescue it? Thank you very much. Alf1962 

    I am having essentialy the same problem, but my iPod came from a PC and is now on a PC. The person who gave me the iPod didn't give me the wall adapter piece, so I bought a "Griffin" brand that was said to be compatible with this model. When I first plugged it into the wall, the Apple appeared with a bar underneath as though it was loading the new software. When the bar got to the end, the "plug into the wall" icon reappeared, but when I plug it in to the wall now, that icon is the only thing that shows, even after resetting and trying to run diagnostics.
    When I doc the iPod on a charger I have or plug the USB into my computer and "reset" it, a battery with a charge icon appears, but there is no "motion" in the icon so it doesn't appear to be charging. The screen eventually goes back to the apple then to the "plug it into the wall" icon. HELP!!! Is is possible the wall adapters isn't the right one? Should I be charging through a firewire cable instead (which I also don't have...)?
    Message was edited by: shenards
    Message was edited by: shenards

  • I have 2 problems with Mail. I cannot address an email to more than one recipient. And I receive some emails more than once.

    I have 2 problems with Mail. I cannot address an email to more than one recipient. And I receive some emails more than once. Can you please help?

    Restart your Mac. See if that makes a difference.

  • TS3276 I receive a pop up from ICal saying the server does not recognize me user name and password.  This started yesterday.  I have no problems with receiving or sending emails through Mail

    I receive a pop-up from ICal saying the server does not recognize my user name and password for my me.com email address.  This started yesterday and occurs about every 5 minutes or so.  There are no problems with receiving or sending email through Mail.  I did change me email password several days ago but have no problems sending/receiving since then.

    I fixed the problem.  I opened Preferences in ICal and entered my new password.  No more pop-ups

  • How to replace one char with two chars in email address policy?

    I very much like to replace the 'ß' char in the surname with 'sz'. However, applying filter '%rßsz%[email protected]' on 'Preußig' leaves me with '[email protected]'.
    So, how do I replace one char with two chars in email address policy?

    As far as I know, your only solution is to manually create such addresses instead of using e-mail address policy.
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • Cfmail "failto" not working with non-existent internal email addresses

    We've hard-coded cfmail TO value in many places across many
    applications, i.e.
    <cfmail to="[email protected];[email protected];[email protected]"
    ...>
    Suppose when one of the users (user1,user2, user3) left
    company and his email address was removed from the MS Exchange
    server, cfmail would fail saying
    A problem occurred when attempting to deliver mail.This
    exception was caused by: javax.mail.SendFailedException: Invalid
    Addresses; nested exception is: class
    javax.mail.SendFailedException:
    550 5.1.1 User unknown
    in the server exception log and cfmail wouldn't report the
    error to the email address of "failto".
    So I'm wondering if it's possible to have cfmail ignore the
    bad one(s) and continue to send the email? Or is there anything I
    should do with the Exchange server?
    Advice is much appreciated.

    Thank you, Dan.
    Sorry, what I meant by "non-existent" is not quite
    straightforward. Let me explain this way:
    I observed the problem only occurred to emails of our
    company. For instance: our company's email address ends with
    @abc.com.
    my email address: [email protected]
    my previous colleague's address: [email protected] (he's gone and
    the email is invalid / deactivated now)
    my client's email: [email protected] (used to be valid)
    If I code this way:
    <cfmail to="[email protected]" failto="[email protected]"...>
    "failto" does work and I got the email.
    but if these:
    <cfmail to="[email protected]" failto="[email protected]"...>
    <cfmail to="[email protected];[email protected]"
    failto="[email protected]"...>
    I never got emails reporting the failure but error lines in
    the mail log and the exceptions log which read:
    "Error","scheduler-3","01/28/09","11:55:32",,"Invalid
    Addresses"
    "Error","scheduler-3","01/28/09","11:55:32",,"Invalid
    Addresses"
    javax.mail.SendFailedException: Invalid Addresses;
    nested exception is:
    com.sun.mail.smtp.SMTPAddressFailedException: 550 5.1.1 User
    unknown
    at
    com.sun.mail.smtp.SMTPTransport.rcptTo(SMTPTransport.java:1196)
    at
    com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:584)
    at coldfusion.mail.MailSpooler.deliver(MailSpooler.java:832)
    at
    coldfusion.mail.MailSpooler.sendMail(MailSpooler.java:731)
    at
    coldfusion.mail.MailSpooler.deliverStandard(MailSpooler.java:1021)
    at coldfusion.mail.MailSpooler.run(MailSpooler.java:986)
    at coldfusion.scheduling.ThreadPool.run(ThreadPool.java:201)
    at
    coldfusion.scheduling.WorkerThread.run(WorkerThread.java:71)
    Caused by: com.sun.mail.smtp.SMTPAddressFailedException: 550
    5.1.1 User unknown
    at
    com.sun.mail.smtp.SMTPTransport.rcptTo(SMTPTransport.java:1047)
    ... 7 more

  • Downloaded audiobook but only downloaded Part 1 of 2??!!!? How can I get Part2? Who do I contact re downloading problems? I see no email address for a support team etc th ks

    Downloaded an audiobook to my ipad but I have just realised it's only downloaded Part 1 of 2??!!!?
    How can I get Part2?
    Who do I contact re downloading problems? I see no email address for a support team etc.
    Thx in advance

    I feel your pain. I awoke this morning to check my text messages on my iPhone (I'm away working in Norway) only to notice a text my girlfriend sent over the night. The title bar over the message listed her Italian mobile number instead of her name. I thought that odd, only to realize that virtually all of my contacts have disappeared from the iCloud. Even more strange, there appears to be no order, rhyme nor reason, or any form of sense as to what has been deleted. If this (and a few other issues I have with post-Jobs Apple) is indicative of Apple's trajectory, they're not going to be around long. I'm beyond ******-off over this and I'll be thinking very hard about buying Apple products in the future.

  • Can I sync two iPads with different users and email addresses on the same computer

    Can I sync two IPads with different users and email addresses on the same computer.

    yes, just make sure you turn off auto-sync to keep everything organized before you try syncing
    on a pc
    edit > preferences > devices - 'prevent ipads, iphones, and ipods from syncing automatically' needs to be checked

  • My iPad, Macbook and Apple TV are all set up with the same iCloud email address.  I bought the iPhone 6 and accidentally set the iCloud up with a different email.  My phone will not let me change the email address to be the same as my other devices,

    My iPad, Macbook and Apple TV are all set up with the same iCloud email address.  I bought the iPhone 6 and accidentally set the iCloud up with a different email.  My phone will not let me change the email address to be the same as my other devices, it tells me that email is already being used. How do I delete the iPhones iCloud account and reinstall it to match my other devices.

    Yes it will, just sign out, then sign back in with the correct address.
    Settings>iCloud>Sign Out.

  • Problem with complete task via email

    Hello,
    I have problem with complete task via email. I found this blog very useful (http://blogs.adobe.com/ADEP/2010/11/how-to-complete-a-task-via-email-using-reply-to-comple te.html), but...
    I set up everything as it’s written in blog mentioned above. When a task is assigned to me, I received an email notification with actions (accept, deny). After that I replied with action “accept”. Then I received email with subject “Errors from LiveCycle ES”:
    LiveCycle ES has tried to process your request and encountered the following error:
    com.adobe.pof.POFRuntimeException: Transaction is not active: tx=TransactionImple ; – nested throwable: (javax.resource.ResourceException: Transaction is not active: tx=TransactionImple )
    This response to your original email
    Subject:RE:Task Assignment – Process: Test/Email_Test. Task 76 has been assigned to you.
    Date Sent:Thursday, October 24, 2011 1:17 PM
    Body:accept
    DO-NOT-DELETE: MTMhMzE0ITMyOA==!
    Attachments:
    In log appeared this following error:
    Caused by: ALC-DSC-215-000: com.adobe.idp.dsc.DSCRuntimeException: None of the Auth Provider could authenticate the user. Authentication Failed
    at com.adobe.livecycle.notification.TaskNotificationServiceImpl.processEmailComplete(TaskNot ificationServiceImpl.java:1157)
    Can you me please? I have no idea what to do to succesfully complete task via email endpoint. Thanks
    Jan Petrla

    Hi Diana, thanks for your reply.
    You're probably right about 2 different error messages.
    To the 1st one: I'm sure that status task is Assigned (to me). I received an email and I also reply on that email.
    To error log: I found out that error log appears when I enable email endpoint on Complete Task service. But I managed to solve this problem. I set wrong user. Now I have here the same user as is written in login-config.xml so log seems to be ok.
    So I created new task and tried to complete it via email. Now I receive email with another error:
    LiveCycle ES has tried to process your request and encountered the following error:
    com.adobe.idp.dsc.provider.service.email.impl.EmailProviderException: Error getting user context
    This response to your original email
    Subject:RE:Task Assignment - Process: WorkFlowClient/Test. Task 92 has been assigned to you.
    Date Sent:Thursday, October 27, 2011 3:05 PM
    Body:Complete
    DO-NOT-DELETE: MTIxMSExNjAzITIwMTE=!
    Attachments:
    And to the last point: email endpoint is set up with TestPOP3@mydomain and user receiving email has jpetrla@mydomain. I use Lotus Notes as email client, I tried another account with gmail, but the result was same.
    Now I really don't know to do...
    Jan

  • Is there a way to "stamp" PDF files with the purchaser's email address?

    I would like to sell PDF reports and/or eBooks via BC, but I would like to be able to stamp each such PDF/eBook with the purchaser's email address.
    There are certainly stand-alone PDF stamper programs and some providers like gumroad.com already offer that feature.
    Anyone actually done it with BC, please?
    Thanks in advance
    Andy

    Thanks for the rapid response, Liam -- even if it's not the response I was hoping for.

Maybe you are looking for

  • IPad in Spain.  Do I need to step down the voltage?

    For travel in Spain will the ipad wall charger step down voltage? From experience I do not need a step down adapter when using the Apple power cord on an ibook or Mac Book, but am not confident the same applies for the ipad wall charger. I know I nee

  • How do I know if the form mode

    Hi, I want to know when the user clicks the new button on the tool bar when my user form is in focus. I'd like to clear all the controls on the form and have an empty screen. Thanks Tayo

  • How to sign with Flash Builder created APK for the Goole Play Store?

    Hello, i have big problems signing the apk for the GooglePlayStore.. I tried this from the android dev page jarsigner -verbose -sigalg MD5withRSA -digestalg SHA1 -keystore my-release-key.keystore my_application.apk alias_name but i am getting this er

  • Changing "open with"

    Hi, I am looking for a fast way to change the application for opening a specific file. Every time I save a file in Acrobat the "open with" application resets to preview - so i want to create a droplet that changes the application only for this scecif

  • IPad hacked via WIFI?

    Folks, my mom uses a 3rd gen iPad, often in public WIFI hotspots, such as the Lightrail or at her place of work (The Tech) in San Jose. Yesterday, she found that her iPad had a different background image; one that she didn't photograph and one that s