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

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 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.

  • Problems with getting a custom toolbar button to work...

    Hi all,
    I'm using the 7.0.1 eval version of GroupWise, patched to 7.0.2 HP 6/6/2007.
    The server is the same version.
    I'm trying to put a new button on the toolbar in C# (with the
    GW.CLIENT.WINDOW.BROWSER context) - the button shows up as expected. It also
    gets validate events - quite frequently and my code always returns 0 from
    Validate() and the button is always enabled. However, no matter what I do, I
    never get an Exectute() call on the command object I create for this button
    when I click it. I also tried the GW.CLIENT context, in which case the
    button shows up in the same place (main GW client toolbar), and it behaves
    the same.
    If I try to create the button with the GW.MESSAGE.MAIL context and I
    double-click emails, the button shows up on the toolbar of the message
    window. When I click this button, I properly get Execute() calls. I also
    have no problem getting context menu items working.
    Is there anything special I need to do to get callbacks for buttons on the
    main toolbar?
    Thanks,
    Gyorgy Bozoki

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

  • I'm having trouble getting my "pop3" email account to work on my new ipad.  Help

    I am having trouble with getting my "pop" email account to work on my Ipad.  I either get a message that the username or passworb is incorrect, or the server
    is incorrect.

    Apps and music are not part of the backup at all.
    You should always keep a copy of everything onyour computer.  If you did not do this, then they are gone.
    You cna redownload some itunes purchases in some coutnries:
    Downloading past purchases from the App Store ... - Support - Apple

  • 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.

  • Just moved my email from entourage to Mail. Having real problems with getting my signatures to work properly. When adding in a small company logo, windows computers only receive signature as an attachment. Am sending email as Rich Text. Any ideas on a fix

    Just moved my email from Entourage to Mail. Having real problems with getting my signatures to work properly despite sending email as Rich Text.
    When adding in a small company logo to the signature, PC's / windows computers only receive signature and logo as attachments.
    I've tried all possible fixes I can find including getting a PC user to format the logo but no joy. Has anyone experienced this and any ideas on a fix gratefully received.

    Send it as html so the signature is an image source URL

  • 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.

  • New Apple ID with a new iCloud email address as the ID

    Can you get an iCloud email address BEFORE you get an Apple ID? I'd really like to not use my existing Yahoo email as my Apple ID login.
    Seems I have to use my old Yahoo email address to get an Apple ID because it's already existing.
    If I have to use an existing email address, can I subsequently change my issued Apple ID login to the iCloud email address I would have created after I've got into my new account?
    Thanks anyone.

    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)

  • Hi, I have a problem with getting my apple Id working for me. It's been 2 months since it happened and Apple failed to act. I can tell my story proerly, but am not sure, you guys can help, so I just copy my message to them today, I am trying to get it acr

    Hi, I have a problem with getting my apple Id working for me. It's been 2 months since it happened and Apple failed to act. I can tell my story proerly, but am not sure, you guys can help, so I just copy my message to them today, I am trying to get it across all the places around to pay their attention. This is a desperate move, so if you are not the right people to help me to get my message accross, may be you can advise where can I go.
    Thank you, and sorry for the language.
    Vitas Dijokas
    I am sorry to say that, but your security makes my life miserable – it’s been 2 months since my Apple ID account got stuck, and since then I cannot update 37 applications (to date), i.e. most of my applications. Half of them I bought. I also paid for iCloud, and it is not working. I paid money and I am stuck with old applications and no iCloud. Your security *****. Your service ***** too. It took your service 1 month to finally understand why this happened to me, and it took me tens of emails to you and 3 hours of telephone conversation to find out the reason for my problem. And the problem is still not fixed. NOT FIXED. You just leave your customer – the one who paid you money and spent so much time with you trying to help you help me – and nothing. You tell me:  “Vitas, Stick your stinky iphone in your *** and enjoy life, we do not care!” *************.
    It is ******* outrageous, and you should know that,  guys. Get into the ******* database and correct the bug. Get someone in the partners-telephone carriers company (it is Orange as carreer and Cellcom as seller of the phone)  authorized to Identify me in personal encounter in one of the branches in Israel (where I live) and make sure it is really me, and get the ******* system accept my password and let me use my phone.
    Otherwise **** off. None of my friends will get my advise to buy an iphone or any of apple products. And I think you should be very attentive to cases like this, guys. Do your work for the money we pay, or disappear. There are many others eager to take your place, and if the problem is not fixed I will eventually go to the others. My patience is lost, and as soon as I can afford another phone I will change it. AND I WILL TRY TO GIVE BAAAAAD PUBLICITY TO APPLE – I am threatening here, so ACT NOW.
    Vitas Dijokas

    Well, it seems waiting is not my strong suit..! I renamed a javascript file called recovery to sessionstore. This file was in the folder sessionstore-backups I had copied from mozilla 3 days ago, when my tabs were still in place. I replaced the sessionstore in mozilla's default folder with the renamed file and then started mozilla. And the tabs reappeared as they were 3 days ago!
    So there goes the tab problem. But again when I started mozilla the window saying "a script has stopped responding" appeared, this time the script being: chrome//browser/contenttabbrowser.xml2542
    If someone knows how to fix this and make firefox launch normally, please reply! Thank you

  • How to get an iCloud email address?

    I want to get an iCloud email address (@icloud.com) for several reasons, among them:
    To streamline my iCloud account access so only that email is associated with iCloud & its services.
    To provide email between Apple (e.g. Apple Support) and myself
    To be able to use Notes
    Currently, I am using the same Yahoo email address for both iCloud and iTunes.
    However, I wonder if I can give those up and replace them by the iCloud.com email address?
    Some details: I got a new-to-me iPhone a few weeks ago, which was reset, and so the only apps
    on it are the default iPhone apps. I have not added any apps.Therefore, I don't mind having to do
    another reset as long as I save the few photos and some phone number contacts to a Vcard.
    Could I create a new iCloud email address and use that exclusively after reseting the iPhone?
    I could restore the contacts and photos from the computer.

    JacobianWife wrote:
    What if I were to wipe the phone clean, and start from scratch, never using my current Apple ID at all, but then activate iCloud to get an @icloud.com email address?
    Yes, you can do that - please see imp68's post here:
    Re: I wish to transfer my Apple ID to a new iCloud account
    If you do this, it's vital that you create a 'rescue address' which is a non-Apple address, because if you don't and something goes wrong with the account - for example if you forget your password - Apple can only contact you at the iCloud address which youy can't access.

  • How do I get an old email address off my apple ID sign in?

    I recently upgraded my emac and now i photo wants me to upgrade but when I get to Apple Id there is an old email address and I can't seem to get by it.
    I have reset password with a my current email address but the apple ID sign in screen still has the old email.
    Actually I've reset it twice but the old email address still shows up

    Was that old email address your old AppleID? Did you use it to purchase those apps?
    If so, that is normal. AppleID's and the content purchased with them are not transferrable.
    Use the password for that AppleID to update those apps.

  • 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

Maybe you are looking for

  • CVP Upgrade 7.0.2 to 8.5 Bridge Upgrade

    We are planning to upgrade CVP 7.x --- > 8.0 ---- > 8.5 from MCS/physical platform to virtual platform ( UCS). Could you please share your upgrade experience and steps specially for reporting server? We wanted to use new hostnames and IP address for

  • X200 hangs during restart or shut down when connected to ultrabase

    My X200 hangs during a Windows restart or shut down when I'm connected to my ultrabase.  The laptop appears to go through most of the processes to restart/shut down but eventually hangs at a blue screen with unmoveable cursor (note, not a Windows BSO

  • Flash container issue

    I am facing a issue in Flash container. I am having a project which has main container which call different SWFs into it. Now I call this main container file into another container, and their problem starts. Many option doesn't work properly which ge

  • JMS Cache Sync Problems

    All, We're running into some strange problems synchronizing Toplink caches via JMS. In our environment, we have two different applications running under the same app server - different code in general, but they use the same Toplink mapping and mapped

  • When using the Illustrator direct select tool in CC

    This morning I had an update and now when I use my direct select tool, all these little dots/targets show up, how do I turn that feature off? Thanks in advance