Editing text in skype groups

Hi I would like to know if it is possible for a person to hack or edit the name of the person who has already edited someone's text in a skype conversation, as we are having problems finding out who has edited other peoples text. I know a pencile comes up when text has been deited and displays the name of the editor but is there a way that this can be changed? This is important as it pertains to children impersonating others and changing others conversations. Is it only the leader of the group that can do this or is there a way others in the group can do this as well???????

Hi, ethyboy2, and welcome to the Communty!
One of my fellow super users recently enlightened me on this:
No, the only person who can edit the text of a chat message, whether in a group chat or one-to-one, is the person who sent the message -- and that facility has a time limit of something like an hour.  In other words, I can edit or delete my text for about an hour after I tap the Send button.
I have been assured that no one can edit or delete some one else's messages. 
Edit, May 24, 2012: I defer to Claudius who has helped me learn more about the mechanics group chats. 
Regards,
elainem77
Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

Similar Messages

  • Can't edit text field after grouping

    Hi Folks,
    I have 3 single-line text fields and a logo combined by using "Add Parent".  For some wierd reason, I cannot select any of the fields to make a text change.  I can select them in the Elements Panel, and make layout or style changes, but as soon as I double-click to edit the text, my selection switches to the parent div instead of the text field.  I tried using the text tool as well, but it always switches selection to the parent.  This isn't a big deal since I can edit the text later in an editor, but it is a bit frustrating.
    FWIW, I ran this morning's upgrade before starting, but I doubt that caused this problem(?)  Thanks for any help
    --Kevin

    So sorry Chris, in my frustration, I removed the parent and group so I could get at the element I wanted to edit, then re-created the parent.
    However, your description of the differences between Group and Add Parent in this discussion: http://forums.adobe.com/thread/1361983?tstart=0  probably explains why I was having trouble.  I beleive I had GROUPED the 3 text fields, and then wrapped both that group and the logo image in another div by "Add Parent".  I probably was not clicking successfully through the Parent to the Group and then to the Text Field.  Basically, I was clicking like mad, but probably not on the correct spot for each level.
    Thanks for clarifying how these items work.
    -- Kevin

  • CFL Conditions and Edit Text

    Hi ,
    in my addon SRF Form i have two Edit text box(item Group, Item)
    with respect to item group(CFL) selection , i will change the CFL condition of  item selection CFL.  dyanmically.
    first time its working fine. second time item CFL is Empty.
    tihs is my sample code:
    If pVal.EventType = SAPbouiCOM.BoEventTypes.et_CHOOSE_FROM_LIST Then
    If pVal.ItemUID = "item edit txt" And pVal.FormUID.StartsWith("FormUid") Then
    Dim val As String = oForm.Items.Item("GrpEditid").Specific.value
                            Dim RsGrp As SAPbobsCOM.Recordset = ocompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                            RsGrp.DoQuery("Select ItmsGrpCod From .[OITB]  ItmsGrpNam = '" & val & "'")
                            Dim oCFLs As SAPbouiCOM.ChooseFromListCollection = oForm.ChooseFromLists
                            oCFL = oCFLs.Item("CFL_3")
                            oCons = oForm.ChooseFromLists.Item("CFL_3").GetConditions
                            ' oCons = oCFL.GetConditions()
                            oCon = oCons.Add()
                            oCon.Alias = "ItmsGrpCod"
                            oCon.Operation = SAPbouiCOM.BoConditionOperation.co_EQUAL
                            oCon.CondVal = Integer.Parse(RsGrp.Fields.Item(0).Value)
                            oForm.ChooseFromLists.Item("CFL_3").SetConditions(oCons)
    End if
    am getting   oCon.CondVal  correctly every time..
    But CFL is empty..
    Any Suggestion??
    regards,
    Ganesh k

    I can suggest you this:
    - Use breackpoints to see oCon.CondVal.
    - Try to set conditions to nothing.
    If pVal.EventType = SAPbouiCOM.BoEventTypes.et_CHOOSE_FROM_LIST Then
      If pVal.ItemUID = "item edit txt" And pVal.FormUID.StartsWith("FormUid") Then
        Dim val As String = oForm.Items.Item("GrpEditid").Specific.value
        Dim RsGrp As SAPbobsCOM.Recordset = ocompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
        RsGrp.DoQuery("Select ItmsGrpCod From .OITB ItmsGrpNam = '" & val & "'")
        Dim oCFLs As SAPbouiCOM.ChooseFromListCollection = oForm.ChooseFromLists
        oCFL = oCFLs.Item("CFL_3")
        ' +++++++++++++++++++++++++++++++++++++++++++++
        oCFL.SetConditions(Nothing)
        ' +++++++++++++++++++++++++++++++++++++++++++++
        oCons = oForm.ChooseFromLists.Item("CFL_3").GetConditions
        ' oCons = oCFL.GetConditions()
        oCon = oCons.Add()
        oCon.Alias = "ItmsGrpCod"
        oCon.Operation = SAPbouiCOM.BoConditionOperation.co_EQUAL
        oCon.CondVal = Integer.Parse(RsGrp.Fields.Item(0).Value)
        oForm.ChooseFromLists.Item("CFL_3").SetConditions(oCons)
      End if
    End if
    An working example.
    Here I update CFL conditions in base on combobox choise.
    Private Sub CFL_UpdateConditions(ByRef oForm As SAPbouiCOM.Form)
      Dim oCFLs As SAPbouiCOM.ChooseFromListCollection
      Dim oCons As SAPbouiCOM.Conditions
      Dim oCon As SAPbouiCOM.Condition
      Dim oCombo As SAPbouiCOM.ComboBox
      Dim sType As String = ""
      Try
        oCombo = oForm.Items.Item("eType").Specific
        If Not oCombo.Selected.Value Is Nothing Then
          sType = oCombo.Selected.Value
        End If
      Catch ex As Exception
        ' log exception
      End Try
      Try
        oCFLs = oForm.ChooseFromLists
        For Each oCFL As SAPbouiCOM.ChooseFromList In oCFLs
          If oCFL.UniqueID.Equals("1") Or oCFL.UniqueID.Equals("0") Then
         ' +++++
         oCFL.SetConditions(Nothing)
         ' +++++
         ' Adding Conditions to CFL1
         oCons = oCFL.GetConditions()
         ' Condition 1: CardType = "C"
         oCon = oCons.Add()
         oCon.Alias = "CardType"
         oCon.Operation = SAPbouiCOM.BoConditionOperation.co_EQUAL
         oCon.CondVal = "S"
         ' ... AND ...
         oCon.Relationship = SAPbouiCOM.BoConditionRelationship.cr_AND
         ' Condition 2: U_Type IS NULL or EQUAL to sType
         oCon = oCons.Add
         oCon.Alias = "U_Type"
         'oCon.Operation = SAPbouiCOM.BoConditionOperation.co_IS_NULL
         oCon.Operation = SAPbouiCOM.BoConditionOperation.co_EQUAL
         oCon.CondVal = sType.Trim
         ' Set conditions for CFL
         oCFL.SetConditions(oCons)
          End If
        Next
      Catch ex As Exception
        ' log exception
      Finally
          oCon = Nothing
          oCons = Nothing
          oCFLs = Nothing
      End Try
    End Sub

  • I can't edit text in pages document

    I created a poster and now it won't let me edit text....help please?? ty

    Menu > View > Show Layout/Invisibles
    Now go command a (Select All)
    What do you see?
    Do you see any boxes around your objects with light crosses on the corners? They are locked.
    click on them > Menu > Arrange > Unlock
    The other possibility is you have moved the objects to the Section Master:
    Menu > Arrange > Section Master > Make Master Objects Selectable
    Or if you click on the text area and then see small white boxes on the corners and a group of objects moves together
    Menu > Arrange > Ungroup
    You have shown me only the poster, out of context and without any of the surrounding format options, so it is hard to tell anything about it. Even whether you are in Pages. It could even be a pdf file.
    Peter

  • How to export all images that don't contain editable text

    Hi guys,
    Is there any hack, script or general function to export all images from a PDF withouth them containing editable text?
    For instance, i have a pdf that contains some scanned documents - these need exporting, i also have some tables in there that have editable text in them - these are being exported when i select export all images.
    Can anyone help?
    Cheers!

    Search for a word or words in them as a group. Search for .pdf file type and containing....
    Use a common word that they all might contain such as "a" or "the", etc.
    The files that have been OCR'd will show up in the search. This won't catch 100% of them, but it will allow you to separate most of them.

  • Skype group chat not working anymore

    Hi,
    I'm using Ubuntu 12.04 and Skype 4.3.0.37. I've premium account in skype and my username is : [Removed for privacy]. For last two days I'm experiencing an issue. I'm not getting any chat text from the skype groups I'm added to. Though I'm getting chat text from individual contacts. As well as if I create new skype group and add other persons from my contact then I'm getting the chat texts but if someone adds me in a new group then also I'm not getting the texts. Another thing is, though my status in skype is online still everybody in mu contact list is seing, my status as  away.
    I've already tried reinstalling the skype app but the same issue is still there.
    Please help.
    Thank You.

    Hi Skype Support Team,I'm also have the same issue like as above. I can not see any message on the chatting group now which does working some days lastweek. But still chatting with just each person normally. I'm using: #dpkg -l | grep skype
    ii  skype                                       4.3.0.37-0ubuntu0.12.04.1                           amd64        client for Skype VOIP and instant messaging service
    ii  skype-bin                                   4.3.0.37-0ubuntu0.12.04.1                           i386         client for Skype VOIP and instant messaging service - binary files #lsb_release  -a
    No LSB modules are available.
    Distributor ID:    LinuxMint
    Description:    Linux Mint 17.1 Rebecca
    Release:    17.1
    Codename:    rebecca #uname -a
    Linux truongpham-hb 3.13.0-37-generic #64-Ubuntu SMP Mon Sep 22 21:28:38 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux Thank you so much, Skype

  • Question regarding text forwarding to groups.

    I've started out last year getting myself an iPod Touch, which I was SO happy with that I then this summer went for the iPhone 3GS and just recently have gotten a hold on the new iPhone 4
    I love the design, the innovation and the way things work and look and feel.
    However there is one thing I'm really missing when it comes to what I consider basic phone functions, and that's that ability to send and forward text messages to groups of people.
    Personally I use it for sending out jokes and cute texts to friends and family, and needless to say it's very very timeconsuming to add them all every time I want to forward a text I get or write one of my own to the 20 to 30+ people.
    I'm thinking there are loads of other uses, both personal and business uses that this could have for other people as well, and my older Nokia phones have been able to do this quite easy and I'm wondering why it's not in the iOS software at all?!
    I've searched the App Store and the internet for a solution to this because frankly at first I was SURE the phone was able to do it, and that I just hadn't figured out how to yet. But apparently from reading forums and helpsites that focus on the iPhone, other people around the globe have the same desire as me and have found it not possible with the iPhone.
    There are a few apps that make group texting availeble but my problem is that most of the time I need to be able to forward the ones I get to a group, and that's apparently NOT possible with those apps
    So my question IS, has anyone else here the same need? And has anyone found a solution or know if Apple plan to implement it at some point?
    Because with all it's features shouldn't the iPhone above all else be easy to use? Make our everyday life less of a hassle? After all it IS a smartphone is it not? PHONE being the capital word here, texting I think, is a big essential part of what a mobile device should be able to do isn't it?!
    Any way I hope someone here has a solution.
    Thanks!
    Message was edited by: wenneberg

    Hi,
    Regarding CONTENT-TYPE: TEXT/HTM message, I have
    following questions:
    1. Is there any API to parse the content, means
    removing html tags?There are no Apis. We do have a piece of code to do that. If you want it please send an email to [email protected]
    2. Giving an pure text, how to re-construct an html
    type message?You can't.
    3. What's advantege of text/html type compared with
    text/plain? How popular text/html type is supported?
    All that you can do with HTML can be done with HTML mails, namely making things 'Bold' ,'Italics', 'Underline' ....... I hope you get it. HTML mails are must. You have to support it if you plan to build a mail client.
    cheers
    Projyal
    Thanks

  • After install Windows 10, the texts in Skype are not very neat, with low definition

    After  install Windows 10, the texts in Skype are not very neat, with low definition. This has happend just with Skype. Do you know how I can fix it?

    I HAVE FOUND A FIX! Searching through the support blogs paid off in a big way. A minor registry edit is all it took and my drive is working like new! Here's the fix. My system is Windows 10 64-bit.  Resolution 5: Create a registry subkey
    Note To use this method, you must be logged on to Windows as an administrator. If you need help verifying that you are an administrator, go tohttp://support.microsoft.com/gp/admin
    Important Follow the steps in this section carefully. Serious problems might occur if you modify the registry incorrectly. Before you modify it, back up the registry for restoration in case problems occur.
    To create the registry subkey, follow these steps:
        Press the Windows logo key + R to open the Run box. (or right-click on windows icon in lower left corner)
        Type regedit in the Run box, then press Enter. If you are prompted for an administrator password or for a confirmation, type the password, or click Allow
        In the navigation pane, locate the following registry subkey:
        HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\atapi
        Right-click atapi, point to New, then click Key.
        Type Controller0, and then press Enter.
        Right-click Controller0, point to New, and then click DWORD(32-bit) Value .
        Type EnumDevice1, and then press Enter.
        Right-click EnumDevice1, click Modify....
        Type 1 in the Value data box, and then click OK.
        Exit Registry Editor.

  • How do you edit text that is in a text box?

    How do you edit text that is in a text box?  I just want to change the font color of the text.  Solution in the Help files recommends selecting the text and then selecting Optional) To make further changes to the text box:
       Using the Select tool or the Text Box tool, click an edge of the text box to select it, and then drag a corner to resize it. Use the Properties toolbar to change the border and fill options.
       Double-click the text box to edit the text or change the text attributes. Drag across text to select it, and then select options from the Properties toolbar.
    This is what the help files recommend
    (Optional) To make further changes to the text box:
       Using the Select tool or the Text Box tool, click an edge of the text box to select it, and then drag a corner to resize it. Use the Properties toolbar to change the border and fill options.
       Double-click the text box to edit the text or change the text attributes. Drag across text to select it, and then select options from the Properties toolbar.
    When I try the above solution I don't have a  "Options" in the "Properties" toolbar.
    Why would they change a process that was so simple in previous editions to such a hidden awkward process?

    Try with a Brightness/Contrast adjustment layer and/or changing the blending mode.
    If the effect is too much for the rest of the bulb, you may be able to mask it out.
    It would help if you post a representative picture here on the forum page for us to look at.

  • Add or Edit Text Dialog Box Disappeared

    I am attempting to add text to my pdf using the add or edit text tool in Acrobat Pro X. However, the dialog box that allows me to change fonts, size, color, etc. has disappeared. Does anyone know how to make the dialog box come back?

    Hi,
    This is a new problem. It started about 2 days before I posted the question. I have not updated my Acrobat recently and I was previously able to use the dialog box with no problem. I have tried in several different documents and the dialog box is not showing up.
    Thanks for your assistance.

  • Remotely editing text files in Windows WinRM/PSExec/Powershell/cmd

    Hi!
    How can I remotely edit a text file in Windows?
    I am running and administering a number of Windows 7 workstations and Windows Server 2012 machines. I would like to be able to remotely edit text files on any of these machines. I can connect to any of these machines via psexec or powershell remoting. I
    can also connect via rdp, but for the workstations I would rather not kick the user off unless I absolutely have to.
    For example, we manage state configuration using
    Salt. Local configuration files are stored in C:/salt/conf. I would like to be able to edit these config files on the fly.
    This question on Stack Overflow covers the same topic, but none of the answers are particularly satisfying. Some of the possible solutions
    are:
    Remote Desktop: as I say, I would rather not have to kick a user off their workstation
    Edit a file over a UNC path: this only works for files on a share, and setting up arbitrary shares for quick edits seems like a bad idea.
    Install some manner of ftp or ssh server on all the target computers. This would certainly work, but it is it necessary with WinRM already active? I feel like installing and configuring extra software across all the machines in my organisation would be
    a last resort.
    Edit with a command line editor (e.g. vim, emacs) over a remote powershell session. This doesn't work. I don't understand the technical details, but a powershell remote session isn't interactive in the same way that ssh connections are.
    Edit using powershell's -replace operator, out-file and add-content cmdlets. This works, but is hardly the same as a fully featured text editor.
    Retrieve content from the remote, edit locally, and post back to the remote. This works, and is arguably the best solution I've found. Code sample from SO:
    PS C:\Users\Meredith> Invoke-Command -Session $ps -ScriptBlock {get-content c:/inetpub/myapp/web.config} > web.config
    edit web config
    PS C:\Users\Meredith> get-content web.config | Invoke-Command -Session $ps -ScriptBlock {set-content c:/inetpub/myapp/web.config}
    The last two options are the workflow that I've been using for now. Regex replacement for very simple changes, and copying to local and editing there for more complicated ones. Neither is ideal, but they work. It just feels incredibly old fashioned.
    I'm considering writing a plugin to my editor of choice (vim) to perform the remote fetch and save, to make my workflow a little bit smoother. Before I try that, I just want to know if there's anything that I've missed, or misunderstood.
    Cheers

    What is the "redirector"?
    I posted the same question to Stack Overflow, and was told about administrative shares. I wasn't aware of this, and it's exactly what I wanted. I can open the filetree of a remote machine with the path \\machinename\c$\. Perfectly simple, now that I know
    the answer.

  • Editing Text in Acrobat Pro DC

    I've followed all the instructions for editing text but when I go to select a text box the entire area is selected and the only choice is to move objects on the page (flip, left/right, etc).   I'm unable to click on the blue box to select that specific text box I need to adjust. There is no option for me to select Tools to follow the other help instructions  "If a bounding box doesn’t appear, choose Tools > Recognize Text > In This File."
    I'm trying to work on a PDF that someone else created (who is on vacation, lucky) and of course the client needs it. Any help would be greatly appreciated.
    Thank you!

    I don't have Acrobat DC here right now, so I can't give you step-by-step instructions for text recognition.
    But have a look at https://helpx.adobe.com/acrobat/how-to/edit-scanned-pdf-files.html?set=acrobat--fundamenta ls--edit-pdf
    [topic moved to Acrobat forum]

  • How do I leave editable text and images in a PDF?

    I recently bought a flyer template and it came as an editable PDF.  Here is one of the templates http://www.wendygarratt.com/images/flyer.pdf
    Every field, both text and graphic object, is fully editable in the free Adobe reader.  I have Acrobat X and have tried all the methods of producing something like this but nothing has worked.  I wish to produce not just one page template PDFs that can be edited like the one above, but I also have a 20+ page magazine, which currently is distributed in PDF form and I wanted certain image and text fields within the magazine to be customisable too. 
    I design the magazine using InDesign and the exported pages are composed of 1 large background image with text fields laid over the top.  I have tried exporting it as an interactive PDF, ticking the layers option for Acrobat, but when I try to create an editable form (Tools>Forms>Create>Open file) it does not recognise any of the text fields at all.
    Can someone please help me before I slam my head repeatedly in a door?  I have been searching for a solution for so long and I'm getting rather frustrated.
    Thank you in advance
    Wendy-G

    Thanks for the replies I've had so far, but I really need some detailed help to sort this.
    I want to be able to create a PDF that has editable text and editable graphics over a background image, that can be edited in the free Adobe Reader, as per this item - http://www.wendygarratt.com/images/flyer.pdf
    I know this was designed in LiveCycle and I have LiveCycle and Adobe Acrobat Pro X, but LiveCycle is new to me.  I am a quick learner (I use Photoshop, InDesign, etc) and need help in getting started.
    I am willing to work with someone to help get this sorted but it is urgent that I get to grips with this.
    Thanks so much for helping
    Wendy-G

  • How do I edit text in a fill-in form?

    How do I edit text in a fill-in form?  I am using Adobe Acrobat Pro version 10.1.8 in Mac OSX.  The document was created in Word, saved as a pdf, opened in Acrobat, and form fields added.  Now I need to change some of the text on the original form (mostly just dates).  Ideally, I wish there were a way to edit the forms overall - add or delete lines, edit text, etc.  I've done this before, but I always seem to need to go back to Word, edit the original document, and then re-create the form fields... it takes me a huge amount of time, making sure each field is formatted correctly (font, size, wrapping, text resizing, etc) so it looks ok when the user enters their data and prints it.  Please, tell me there is a better way!
    If the solution is upgrading to a higher version of Acrobat, I'm listening... but ideally I can get this batch done in the software I have, then worry about learning the newest version.

    Fonts are Licensed asset's subject to single user use. They are not intended to be exchanged, redistributed, etc.
    As part of the PDF standard they included in a document so that the document can be viewed reliably without the font be installed on the viewing station.
    To edit you must have the font installed on your computer. The ability for second parties to use the font would violate font licenses.

  • How can I edit text in a tagged PDF?

    I have created an accessible test form in Acrobat Pro X.  Now that it has all been tagged and reading order touched up, the client wants to change the text.  Is there any way to edit text at this point or do I have to create an entirely new tagged accessible form (very time consuming)?
    I have tried:
    TouchUp Reading order - when I select the block of text, nothing lights up on the TouchUp window
    Form > Edit Document Text - I can place a cursor but it won't do anything.
    Thank you for any help!

    For Tagged PDF the replace page approach ought to be avoided.
    The behavior seen when replace page is used for an existing page having annotations is not present.
    Insert of a tagged PDF into another PDF can be a problem as well. The "incoming" structure tree is always placed at the end of the existing structure tree.
    Manually remediating this can become nasty very quickly.
    Using the Touchup / Edit text tool on a 'good' tagged PDF ought to be avoided as well.
    Be well...

Maybe you are looking for