Moving Texts from 6500 to 6700

I have recently upgradedgrom a 6500 to a 6700, however want to move my SMS messages across keeping the original time/date stamp on them.  Any ideas?
i have tried the phone to phone bluetooth facility but that changes the time/date to the current time.
Nokia Content Copier backs up the data from the 6500 but cannot move it to the 6700 (only the MMS move).
help!

scoobyc wrote:
i have tried the phone to phone bluetooth facility but that changes the time/date to the current time.
Nokia Content Copier backs up the data from the 6500 but cannot move it to the 6700 (only the MMS move).
Content Copier should work, it allways has done for me, though sometimes different models have trouble.
Are you using the very latest PC Suite? The 6700 has a very new version of the Nokia S40 operating system; so it's worth checking that you don't have a PC Suite that pre-dates it.

Similar Messages

  • Moving text from one place to another

    This is a Macintosh AppleScript questions on InDesign CS3.
    I want to move a portion of a paragraph several lines down. Here's what I want to do:
    Select from the word "Clutch:" to end of the line (including the paragraph return)
    Cut the selection
    Paste cut text at left margin, two lines down
    Repeat to end of story
    Can anyone help?

    It sounds like you want something like this:<br /><br />tell application "Adobe InDesign CS3"<br />    tell document 1<br />        tell prent story of text frame 1 -- or whatever<br />            considering case<br />                set parCount to count of paragraphs<br />                repeat with i from (parCount - 2) to 1 by -1 -- work from<br />end<br />                    if paragraph i contains "Clutch:" then<br />                        set theWord to (object reference of word 1 of<br />paragraph i whose contents = "Clutch:")<br />                        move (text from character 1 of theWord to character<br />-1 of paragraph i) to after character -1 of paragraph (i + 2)<br />                    end if<br />                end repeat<br />            end considering<br />        end tell<br />    end tell<br />end tell<br /><br /><br />-- <br />Shane Stanley <[email protected]>

  • Problems moving text from safari to numbers and pages

    Hi,
    I'm trying to copy some data from a website, for example, an address with multiple lines of text, and paste it into a cell in numbers, and from there into a cell in a table in pages.
    The trouble is that the original text is sometimes formatted on the web site with returns after each line, and when I try to paste that into numbers or pages, each line goes into a different cell, which is a pain in the ***, and I have to retype the whole thing.
    Is there some way that I can have this do what I want it to do, that is, paste the entire address into a single cell?
    Thanks.

    We must double click in the cell before pasting if we want that several 'paragraphs remain in a single cell.
    I clicked once in cell B2, but I clicked twice in cell C2
    Yvan KOENIG (from FRANCE samedi 25 octobre 2008 21:18:35)

  • Outlook 2010 freezes when pasting text from email into filename

    I use Microsoft Outlook 2010 (32-bit version), in a 64-bit computer (Dell laptop) using Windows 7 Enterprise, SP1.  (I work in a company and can't change what version of the Outlook program I am using.)  If I copy text out of an Outlook email,
    and then go to save the email by printing it to a PDF file using Adobe Acrobat X Professional, and I try to paste the copied text into the file name I am typing for the email being saved/"printed", then Outlook freezes on me.  I've
    noted that I can copy text from other programs (such as WordPerfect X3 or Adobe PDF files), and successfully paste them into the file name without Outlook freezing.  I can also copy text from an Outlook email, paste it as plain text into a WordPerfect
    X3 document, and then copy that same text again out of the WordPerfect X document, and I am able to successfully paste the text into the file name of the email I want to save without Outlook freezing (i.e., moving the text out of Outlook and then back
    again to Outlook somehow sanitized the text so it wouldn't freeze Outlook).  Note that my office switched from Windows XP to Windows 7 a few weeks ago, and I also received a clean installation of Office at that time.  This problem did not exist prior
    to the change to Windows 7.  Does anyone know what is causing the problem?  Is there some setting I need to change in Outlook?  (Maybe I had the Outlook setting correct in the old installation of Outlook, but the new Outlook installation wiped
    out my prior settings, and the new default setting recently installed is creating the problem?)

    Hi,
    First please make sure your Office is up-to-date.
    I suspect this may be related to some 3rd-party add-ins or the security software, first please run Outlook in Safe Mode to determine if 3rd-party add-ins are related:
    Press Win + R and type “outlook.exe /safe” in the blank box, then press Enter.
    If there’s no problem copying and pasting in Safe Mode, disable the suspicious add-ins to verify which add-ins caused this issue.
    Please also disable the anti-virus program temporarily to check if this makes a difference.
    Regards,
    Melon Chen
    TechNet Community Support

  • Move a block of text from one document to another

    How to make a script moving a block of text from a defined area to next document?

    Here is the beast.
    --[SCRIPT exportTextBlocks]
    Save the script as a Script, an Application or an Application Bundle: exportTextBlocks.xxx
    Move the newly created application into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Pages:
    Maybe you would have to create the folder Pages and even the folder Applications by yourself.
    select something in the source document
    menu Scripts > Pages > exportTextBlocks
    creates a new Pages document with the chunks of texts which where delimited by the markers.
    --=====
    The Finder's Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the "Show Script Menu in menu bar" checkbox.
    --=====
    Yvan KOENIG (Vallauris, FRANCE)
    26 avril 2009
    --=====
    Here it would be easy to edit it if required
    property marker : "______"
    on run
    my activateGUIscripting()
    tell application "Pages" to tell document 1
    set nDocSource to name
    set source to body text
    end tell -- Pages
    set source to my decoupe(source, marker)
    set extraits to {}
    repeat with i from 1 to ((count of source) - 1) by 2
    copy item (i + 1) of source to end of extraits
    end repeat
    copy "" to end of extraits
    set extraits to my recolle(extraits, marker & return)
    set destName to dateTimeStamp() & ".pages"
    set destDoc to my makeNewPagesDoc(destName, path to documents folder as text)
    tell application "Pages"
    set body text of document destName to extraits (* inserts the extracted blocks *)
    save document destName
    my selectIworkDoc(name, nDocSource) (* back to source document *)
    end tell -- Pages
    end run
    --=====
    on decoupe(t, d)
    local l
    set AppleScript's text item delimiters to d
    set l to text items of t
    set AppleScript's text item delimiters to ""
    return l
    end decoupe
    --=====
    on recolle(l, d)
    local t
    set AppleScript's text item delimiters to d
    set t to l as text
    set AppleScript's text item delimiters to ""
    return t
    end recolle
    --=====
    on dateTimeStamp()
    return (do shell script "date " & quote & "+P%Y%m%d-%H%M%S" & quote)
    end dateTimeStamp
    --=====
    on makeNewPagesDoc(n, d)
    local f, t
    set f to d & n
    set t to ((path to applications folder as text) & "iWork '09:Pages.app:Contents:Resources:Templates:Blank.template:") as alias
    tell application "Pages"
    open t
    save document 1 as n in file f
    end tell -- Pages
    return d as alias
    end makeNewPagesDoc
    --=====
    Use GUI scripting
    on selectIworkDoc(a, n)
    local m
    if a = "Pages" then
    set m to 9
    else if a = "Numbers" then
    set m to 10
    else if a = "Keynote" then
    set m to 11
    else
    error "The application “" & a & "“ is not accepted !"
    end if
    tell application a to activate
    tell application "System Events" to tell application process a to tell menu bar 1 to tell menu bar item m to tell menu 1 to click menu item n
    end selectIworkDoc
    --=====
    on activateGUIscripting()
    tell application "System Events"
    if not (UI elements enabled) then set (UI elements enabled) to true (* to be sure than GUI scripting will be active *)
    end tell
    end activateGUIscripting
    --=====
    --[/SCRIPT]
    Yvan KOENIG (from FRANCE dimanche 26 avril 2009 22:32:24)

  • Need help moving text

    Using CS4 on Win7 Pro. My client bought a template that has a flash piece and I am a total novice in Flash but I do know that you edit the FLA file and export it as a movie. So I opened the FLA file and I'm able to edit the text (all that I want to do right now) but some of the text I'm replacing is longer than the original so it gets hidden under a replay button and some is shorter and is spaced too far away from the replay button (I also want to change the color of that and I think I can figure that one out). There is plenty of room to the left for the text to move to as the original file does have varying lengths of text and it does adjust for that but I can't figure out how to change it for what I've done (I haven't received the final text yet so this is a practice run)... I changed the text by going to the timeline and selecting text from the icon (Edit Symbols) in the upper right of the screen. But where do I tell it where the text should start or how wide it needs to be? I tried moving them individually in the timeline but that didn't change it.
    Here's the file: http://do-rightweb.com/fertility/flash/header_vJT.fla (I only want to leave this up temporarily because it is huge. The test location of the file in action is here: http://do-rightweb.com/fertility/
    In the future I may have to swap out some of the images leaving the transitions which I think I can do by adding them as a layer deleting the ones I'm replacing...
    So if anyone can lend a hand in helping me figure out how to adjust the text width I would be totally jacked! Any help and advice about swapping images or changing colors would be greatly appreciated too. Or even a link to a video to help me understand how to reverse engineer this would be cool.
    Thanks in advance for your help and assistance!

    Hi,
    Since the text animation is done using the timeline in this file you have to manually edit the positioning of the each symbol element in every keyframe i.e
    You have to go in to the editing mode for txt_c instance of txt_2 > Layer 8 where the required elements are placed
    1. You have to position the Layer 1(under Layer 8) items at every key frame for the display text
    you may have problem while positioning second text onwards as you will not be seeing them on stage. For this you may want to duplicate the symbol(txt_5) at key frame 37 and edit it to have only the second text and remove everything else. And you can swap the existing symbols at key frame 44 and key frame 54. You can repeat this for the rest of the text.
    2. Next you have to position the numbers which spread across three layers (txt_3, txt_4 and Layer 6) under Layer 8. They are for prefix number, suffix number and the dot respectively
    Thanks!

  • Not receiving texts from some iphone users.. anybody know whats up with that?

    Just got Samsung S4 and I'm not receiving texts from some iPhone users.
    Do i have something set up wrong?

    It appears you have moved from an iPhone to an android phone. The problem you are having is because you did not deactivate your iMessage service before leaving.
    If you still have your iPhone, you can re-activate it and then
    turn on iMessage in the settings
    uncheck your email and phone number
    turn off iMessage
    Settings>Messages
    If you don't have your phone or don't want to go thru the hassle of reactivating it, you can simply call Apple at 800-694-7466 and ask them to turn off your iMessage.

  • Moving sms from android os to apple os

    how can i mov3e sms texts from an htc to apple 5c?

    Hi,
    1. No, simply moving over the datafiles will not work.
    The restriction on cross-platform transportable database is that the source and destination platform must share the same endian format.
    You need to check the Endian format for the datafiles first and then may have to convert that by using RMAN.
    2. It may work( again check for endian formats) but not recommended for large databases.
    3. exp/imp is not good option here.
    follow:
    ====
    1. upgrade your Database on Solaris to 11.1.0.7
    2.You can use the transportable tablespace option to perform this job as from 10g onwards transportable tablespace can be used across plateforms.
    You can also do a "RMAN CONVERT DATABASE" to do this task.
    With Regards,
    Saurabh Sood
    www.askdba.org/weblog

  • Dunning Proposal - Accounting Text from vendor Master

    Hi,
    In F150, if you click on the change button, it will take you to Dunning proposal and on the selection screen, you have a check point Check Account long text and Check Document Long Text..
    1. What is the difference between the two?
    2. When you execute this Dunning Proposal, again you get a button for Change Texts, from where the texts can be maintained for each Vendor.. The requirement is to have the text displayed in the output report of Dunning Proposal against each vendor.. How is that possible? I changed Variant to bring in the field Text but it shows blank.
    Regards,
    SAPFICO
    Edited by: SAPFICO on Apr 4, 2011 12:18 PM

    Hi All,
    Any Pointers???
    Regards,
    SAPFICO
    Edited by: SAPFICO on Apr 8, 2011 7:22 AM

  • I made my own apple id because my family was getting my texts from other people. I want to add my device to my dads find my iphone app on his icloud but can't figure out how, without having to log in to his apple id on my phone. how do i add my device?

    I made my own Apple ID because when I was logged into my dad's my family was receiving my texts from other people. I want to add my device to my dad's "find my iphone" app but without signing into his Apple ID on my phone because that was causing them to get my texts. I was told by Apple I could add my device to his by signing into icloud.com but there is no option that I can find to add my device. And I don't want to log back in to his.. Any ideas???

    Also when I apply the safety copy it only imports the app the phones have had in common, so none of the apps that only the iPhone 4 had doesn't come in, only the ones I and the iPhone 4 has had in common. So you say the only way I can use the Apple ID to download on the old iPhone 4 is if I delete the apps that are in the phone and then download them again? How will that change the ID to download/update from. Won't it still have mine to update/download from?

  • My phone has been smashed I need to get records of all my iMessages and texts from the last month. How do I get these?

    My phone has been smashed I need to get records of all my iMessages and texts from the last month. How do I get these?

    Do you have a backup of your iPhone which contains these messages?
    If so, you can restore a new iPhone from that backup during setup.
    If not, the messages are gone.

  • When I attempt to send a text from the new iPad, a dialog box appears with the option to either sign in with Apple ID Password or Create New Account. I try signing in using my Apple ID password but IMessage informs me that email address cannot be verified

    When I attempt to send a text from the new iPad, a dialog box appears with the option to either sign in with Apple ID Password or Create New Account. I try signing in using my Apple ID password but IMessage informs me that email address cannot be verified because it is already in use ??? What am I doing wrong?

    settings -> iTunes & App Store
    click on apple ID listed there
    select Sign Out
    sign in with the proper account
    from then on, when the store ask for your password it should be with the correct ID

  • I switched from an iPhone to a Droid and can't receive texts from iPhones now, help?

    I switched from my iPhone 4s to a Droid and I do not have that phone anymore. I can not recieve texts from anyone with an iPhone and can not get in contact with my girlfriend or siblings now. I think their phones are trying to send their texts as iMessages to my phone that does not recieve iMessages. How can I just delete my Apple account and recieve texts again?

    Sounds like you didn't turn of iMessage on your iPhone before making the switch.  If you registered your iPhone with Apple using a support profile, try going to https://supportprofile.apple.com/MySupportProfile.do and unregistering it.  Also, try changing the password associated with the Apple ID that you were using for iMessage.

  • Select text from all_views returns an empty string

    My application allows the user to select between the Data Provider for ODBC and the Data Provider for Oracle. (ODP)
    When using the ODBC provider the statement:
    Select text from all_views where view_name='MYVIEW'
    returns the expected string.
    If I connect via ODP however it returns an empty string.
    (If I use 'Select *' it tells me the text_length is 154 in this specific case - so there is definately text available.)
    I'm thinking it has something to do with the fact that the data type is LONG.
    In both cases I retreive the data using rdr.GetChars(), which should work.
    If I use the dbms_metadata.get_ddl function instead, it does return the string (Probably because the return type is not LONG)
    Unfortunately that function only works for Views in the current schema, while the original Select works for any view.
    (And I dont know what version of Oracle this function was added in - I have to support older versions too.)
    Similarly, if I use one of the XML functions to retreive the text as XML it works fine.
    (Again it is probably returned as a VARCHAR2 instead of a LONG.)
    The strange thing is that when I created my own table containing a LONG column I was able to load and retreive data without any problems.
    The problem appears to be specific to this column in all_views.
    Anyone know a solution to this?
    Thanks
    Mike

    Thanks that was it.
    I had not seen those properties since I am working with the 'generic' objects (DbCommand rather than OracleCommand, etc.)
    What is strange is that I was able to retreive data from my own LONG column WITHOUT setting this value to -1.
    (It defaulted to 0 in both cases.)
    The only difference was that when I retreived data from my own column I specified CommandBehaviour.SequentialAccess.
    When I retreived the all_views.text column I did not specify a behaviour at all.
    However the Oracle docs said that SequentialAccess is not supported ... so I guess that is not correct.
    (Maybe it doesn't 'work', but it certainly seems to cause things to work differently)
    Thanks
    Mike

  • Moving Favorites from PC to Mac

    Hello,
    I'm moving favorites from IE 7 on Windows XP to Mac Leopard. Do I just move the files over and import or is there something specific regarding conversions I need to complete? Thanks.

    Hi theBigD23,
    Save your Favorites in IE 7 to the desktop (or wherever you want). Use a flash drive, email the file to yourself, or any method at your disposal to get that file over to the Mac.
    In Safari, choose File > Import Bookmarks. Navigate to the bookmark file from the PC and click Import.

Maybe you are looking for