XCode 4 : No editing insertion point history??? What the...

Hello…
After countless hours of searching, I wasn't able to find a way to move forward and backward in my editing places in my code. It is as if the Xcode4 does not hold any insertion point history.
The current Forward/Backward scheme of XCode4 ( by using "Control" + "Command" + "Arrow", or three finger touchpad swipe, or the two little arrows on the left top corner of the code) is to move between file history.
It completely destroys my productivity, to the point I am seriously considering to switch back to Xcode3. If anyone knows how to do editing point history navigation in Xcode4 the way we did it in Xcode 3 I would be more than happy to listen to his suggestions.
Message was edited by: Iron_0

Hi xnav, thanks for the response..
I tried opening two tabs with the same file. In order this solution to work, every time you need to do an editing to click on the tab of the file on the background, activate it, and do the change there. On the next change you need to click the tab of the previous file again, and do it there. It is not very convenient as on every change you will need to click on the other tab. And also in case of scrolling you need to scroll the other tab too so that they point at the same place…
It's so confusing… In Xcode3 I had implement an app that consisted of 45 classes and the biggest one was 15000 lines of code and the navigation in the lines of the same class was like a breeze using the back button. In my current new app I hardly have 2000 lines of code in my main class and I straggle to do any progress at all. Splitting the code into different classes may sound as the way to go, but there are cases that this is not effective and things need to be held at the same class..
Anyway, thanks so much everyone for the responses and suggestions.. I really appreciate the time you spent for them… I hope in the end something useful to come out of this..
Message was edited by: Iron_0

Similar Messages

  • In Address Book, how to stop notes insert point jumping to the top? of the page

    Completely maddening thing that address book - and no other app I have ever encountered does, as you are typing information into the notes field of a contact, it will suddenly jump the cursor up to the start of the page, often leaving one word half finished and adding onto the front of some other bit of information is a totally crazy way.
    I use three Macs, all of them do it. Has anyone else encountered this?
    It seems to be since the ghastly faux leather Lion address book has been introduced, ( I assume Mr Jobs had nothing to do with that )
    Any ideas on how to prevent it happening?  Im not a touch typist, so I have to keep looking at the kbd, then I wont realise until half way through a sentence it has decided to split it in half and put some of it at the top of the page.  Crazy.    
    Thanks
    Stephen

    Completely maddening thing that address book - and no other app I have ever encountered does, as you are typing information into the notes field of a contact, it will suddenly jump the cursor up to the start of the page, often leaving one word half finished and adding onto the front of some other bit of information is a totally crazy way.
    I use three Macs, all of them do it. Has anyone else encountered this?
    It seems to be since the ghastly faux leather Lion address book has been introduced, ( I assume Mr Jobs had nothing to do with that )
    Any ideas on how to prevent it happening?  Im not a touch typist, so I have to keep looking at the kbd, then I wont realise until half way through a sentence it has decided to split it in half and put some of it at the top of the page.  Crazy.    
    Thanks
    Stephen

  • I have google as my homepage. Is there a way to automatically have the insertion point go to the search box on the page in Firefox 4?

    I have windows and have been using safari. It automatically goes to the search box when opening a new tab with google as the homepage. This is the actual search box on the page, not on the menu bar.

    Do you really have Google as your home page or the default Firefox home page about:home ?
    It should work with the www.google.com page.

  • [CS3] [JS] add XML  Element to Insertion Points

    hi list,
    i'll do some text parsing in indesign cs3 intended to add some xml elements to my document.
    i just wonder why i can't markup an insertion point. is the following approach correct? The code works fine, only the return value (stored in the _xml variable) is not the new element but the parent element. The same code works without using the insertion point (marking up the text object [xmlElements.add(_dokument.xmlTags.item("index") , erg[0]))] ).
    Any ideas or thoughts?
    var _dokument = app.activeDocument;
    main ();
    // ** main ()
    function main() {
    //Set the find options.
    app.findGrepPreferences = NothingEnum.nothing;
    app.changeGrepPreferences= NothingEnum.nothing;
    //find any string encloased by @
    app.findGrepPreferences.findWhat = "@.*?@";
    erg = _dokument.findGrep();
    while (erg.length > 0) {
    _xml = _dokument.xmlElements[0].xmlElements.item("text").xmlElements.add(_dokument.xmlTags.item( "index") , erg[0].insertionPoints[0]);
    erg[0].contents = "";
    erg = _dokument.findGrep();

    hi dave,
    gui testing is always a good idea :-) but in this case the behaviour is different:
    your observation is correct (anyway at least a strange behaviour compared to any xml editing tool i know == how adobe intended to insert an empty element?), tagging in the gui a tagged insertion point tags the whole story.
    in the script a new element is added but the return value is the parent element (the xmlElement of the whole story).
    this causes a problem when i add an attribute (the intention of the above script is to add references) which is added to the parent element.
    gregor

  • How to locate the first insertion point on every page?

    I need to paste some same anchored objects on every page for exporting RTF format.
    So I need to locate the first insertion point on every page.
    Then, I use the code below (make a simple example):
    for(i = 0; i < app.documents[0].pages.length; i ++){
         app.select(app.documents[0].pages[i].textFrames[0].insertionPoints[0])
         app.paste()
    But when a file has a very long table spread over several pages, the location operation will select the insertion point before the table --- the starting point of the table.
    For instance, a table start on page 3 and end on page 10
    app.documents[0].pages[4~10].textFrames[0].insertionPoints[0])  can't select the first insertion point from page 4 to page 10. (In terms of scripting, the insertion point exists before the very long table starting on page 3.)
    How can I solve the problem? Thanks in advance.

    I dont know exactly what you are trying to do but you can try this. If you have table which runs trough multiple pages, you can first divede this tabel, that cells on separate pages would represent stand alone table. Than you can fit textframe to this table. When addressing indention poin you will get right position.
    In your case when table start at 3rd and ends on 10th page you would get 8 tables in 8 textframes on its own page. If textframes are linked and table is smaller than textframe you will have problem when addressing first insertion point on 4th or any other page. That why you should fit textframe to table:
    var bl=app.activeDocument.pages[1].textFrames[0].insertionPoints[0].baseline
    var tf=app.activeDocument.pages[1].textFrames[0];
    var gb=[tf.geometricBounds[0],tf.geometricBounds[1],bl,tf.geometricBounds[3]];
    tf.geometricBounds=gb;
    Now when you set
    app.activeDocument.pages[1].textFrames[0].insertionPoints[0] you will get position before table or
    app.activeDocument.pages[1].textFrames[0].insertionPoints[-1] you will get position after table

  • Jump to insertion point?

    Hi
    I can't remember if Pages will do this. I've been searching the help and this forum.
    Anyway, I'd like to be able to jump to wherever the text insertion point is in the document.
    This means that I can scroll away from the insertion point if I wish, but I have a command to take me back there.
    The classic Nisus Writer could do this, I'd just press the Enter key and it would scroll to the insertion point and briefly highlight the line.
    It was very handy
    Thank you for any assistance you can give.

    As far as I know, there is no such a feature.
    _Go to "Provide Pages Feedback" in the "Pages" menu_, describe what you wish.
    Then, cross your fingers, and wait _at least_ for iWork'10
    Yvan KOENIG (Vallauris, FRANCE samedi 8 août 2009 22:36:44)

  • Program switches insertion point out of field!

    I'm entering IPTC metadata (City, State, Country), and the insertion point is definitely being switched out of the different fields by the program. It's especially evident when I'm typing in a field, and hit tab to go to the next field; if I pause (and thus do not type), the program will take the insertion point out of the field. But it is also true that I'll click in a field, and then, (if I don't type) suddenly, the field will go "black," and the field is no longer selected.
    Note: I have this problem ONLY if I have multiple images selected.

    I see this as well, and agree that it is a tremendous pain. It appears that Lightroom is stealing the focus away from the text field when Lightroom needs to process the data you are entering. I can't tell you how many times I have had Lightroom go bonkers because the focus was stolen and it interpreted my keystrokes as shortcuts!

  • Whats the best settings to rip DVD to Mpeg Streamclip for use in FCE??

    Hi there.
    Ok, I using MPEG Streamclip to rip a DVD for editing on FCE.
    Whats the best settings to get it to my hard drive?
    MPEG4?? Compression rate??
    Chris

    Assuming your DVD plays widescreen, the better settings in MPEG Streamclip would be:
    Export to QuickTime
    Compression = Apple Intermediate Codec
    Frame size = 1920x1080
    Pretty much everything else should remain at default settings.
    Keep in mind that if you have an NTSC DVD, the resulting QT/AIC video will be 60i.
    In FCE, select the AVCHD 1920x1080i60 easy setup, create a new sequence, import the converted file and edit away. The quality should be very nice.

  • Whats the problem in this vi?

    Dear all,
    with loads of help from many members of this group we designed the following attached vi.
    but we made some changes recently to get a running/scroll display. basically the program has two loops, one for data acquistion and one for data generation. the acquistion loop designed to update 1 data point at a time and generation loop designed to update 1000 points at a time. but now the vi works in a funny way. when the program starts it runs the acquisition loop first and when the stop key is pressed it runs the generation loop. to stop the program, i have to abort it. can anyone point me what the mistake is and direct me in the right way please.
    Attachments:
    broadband_filt_unfilt.vi ‏714 KB

    Dear all,
    thanks for your suggestions. i changed the looping structure and it is working fine. thanks dev for mentioning that example program once again. i should've had a look on that program more carefully the first time u mentioned. i simply followed the principle on that program and it did the magic.  thanks once again.
    anyway, but as usual i have one problem now. i am not sure whether u remember the case loop u helped me with in the earlier stages for recording purposes. briefly it had been designed to record for a given number of time, depending on the number of data per cycle. it  had two options, when we press the record button, it can record for the defined amount of time or the recording can be stopped before the defined amount of time is over and so the record button will be ready for the next go.
    but for some reasons, i m lacking the second option now. i can record without any problem for the defined amount of time but if i stop the recording during that period, i cant able to restart the recording again. but i have to stop the program and have to start to do that. can u tell me whats the reason for this please.
    i attached the program as usual.
    Many thanks.
    Rishe.
    Attachments:
    narrowband_filt_unfilt.vi ‏812 KB

  • What's the gesture to get a text insertion point in iOS 7 Keynote?

    I was editing a new presentation. I find I have to tap repeatedly to edit an existing text area so I can get a simple insertion point and not a word selection or selecting the entire area or starting a re-positioning of the area. I have yet to figure out what Apple wants me to do so I can accomplish this.
    I can often get an insertion point after scrabbling away with taps, multiple taps, holds, short drags, and multiple-touch variants, but by the time I do, the sequence is too involved to remember, and who knows how many steps back I'd have to go to identify the start of the gesture?
    And, see another question I just posted: In the course of clawing away at the slide, the entire deck scaled down to half size. So not only does this bug make it hard to get any work done, it seems to be destructive. (WAIT. Found it. My scrabbling turned out to include an ordinary pinch-to-zoom gesture. Never mind. I'll amend my other question.)
    I give up. I've used up all my guesses and I want to know the answer to the riddle. How do I get a between-characters insertion point in an object containing text, but not currently open?

    There is an online help system for all ios iWork apps. This is the link to the keynote one
    http://help.apple.com/keynote/ipad/2.0/#/tancda09fdf9
    I think to place the insertion point you tap and hold until the magnifying loop shows up, then you let go when the cursor is where you want it.
    Jason

  • Re post: Editing-- Insert video and move audio, preserving sync

    Forgive me, a newbie, for posting this twice, but I think the iM6 group folks, not the iM8 folks, may have the a clue about this issue.
    I really love iM6. I do have FCExp, but I've gotten so comfortable with iM6 that I hate to change. But I am frustrated by one thing.
    I may be trying to do something too advanced for iMovie (6HD) but almost everything else with this product is so amazing, I can't imagine that they didn't build this in. I must be overlooking something.
    I am making dvds from a VHS conversion of some 60-70s 8mm home movies. A labor of love for an aging parent. The amateur filmmaker used to project them with records playing, and at some point he collected all his chosen LP music onto a cassette (not on the video cassette, a music only cassette). So, I play the VHS and the music at the same time and use an analog to Firewire converter and load all into iM6. So far so good. Then, because I need to seriously mess with the music to put it more or less in sync with the video segments, I extract the audio so it now shows up as a second track. Still no problem. Now in editing I clip or split the audio into separate pieces and checkerboard them, alternating between the two audio tracks in the timeline so I can adjust volumes, cross fade, etc.
    The first volume I did took a lot of twiddling and tweaking to keep all the clips in their proper places. I'd work at the end of the piece, then at the beginning then back to the end with the result that the audio clips were always sliding out of position. I can't quite figure out how to keep two audio tracks in sync with the video. BUT I did finally finish and when I started the next one, I swore that I'd always finish a segment and then move on to the next, always left to right, never tweaking the finished stuff to the left (earlier on the time line). This has made the job much easier but I have one big problem now. I did not think to put some black at the head of the project to put the titles on!
    You'd think I could just put the cursor at 0:00 and insert a 6 second title over black and it would move all the video and audio to the right by six seconds. But what happens is only the video slides over. The two audio tracks don't move and are now six seconds early. Sure, I could go ahead and re-adjust all the 30 or 40 audio clips, but I can't help thinking that "Apple wouldn't make me do this..."
    Has anyone any idea how to lock all the edited material together so I could insert some space to the left without losing sync?
    PS does anyone share my frustration on THIS: when I copy a little piece of sound from one of those tracks and then paste the copy, there's no telling where it will land... It never goes to the cursor position. If I'm lucky it lands somewhere on the timeline after the project end and I can drag it back to where I want it. But on an hour project this is annoying.

    I think I solved my own problem, and Klaus, you were correct, Lock to Play head is the key.
    In order to select ALL the clips on both tracks you click and drag a box across all the clips you want to lock and then select Advanced/Lock Audio Clip at Playhead and all the clips will be locked to their video positions, though in my case only a few of them sprouted little yellow pushpins. I was then able to slug 6 seconds of Black in ahead of my video, and voila!, both video and attached audio moved over staying in sync. I knew Apple wouldn't let me down, though the answer was not explicit in any Apple documentation. I guess I'd better buy the book now.

  • Editing-- Insert video and move audio over preserving sync

    I really love iM6. I do have FCExp, but I've gotten so comefortable with iM6 that I hate to change. But I am frustrated by one thing.
    I may be trying to do something too advanced for iMovie (6HD) but almost everything else with this product is so amazing, I can't imagine that they didn't build this in. I must be overlooking something.
    I am making dvds from a VHS conversion of some 60-70s 8mm home movies. A labor of love for an aging parent. The amateur filmmaker used to project them with records playing, and at some point he collected all his chosen LP music onto a cassette (not on the video cassette, a music only cassette). So, I play the VHS and the music at the same time and use an analog to Firewire converter and load all into iM6. So far so good. Then, because I need to seriously mess with the music to put it more or less in sync with the video segments, I extract the audio so it now shows up as a second track. Still no problem. Now in editing I clip or split the audio into separate pieces and checkerboard them, alternating between the two audio tracks in the timeline so I can adjust volumes, cross fade, etc.
    The first volume I did took a lot of twiddling and tweaking to keep all the clips in their proper places. I'd work at the end of the piece, then at the beginning then back to the end with the result that the audio clips were always sliding out of position. I can't quite figure out how to keep two audio tracks in sync with the video. BUT I did finally finish and when I started the next one, I swore that I'd always finish a segment and then move on to the next, always left to right, never tweaking the finished stuff to the left (earlier on the time line). This has made the job much easier but I have one big problem now. I did not think to put some black at the head of the project to put the titles on!
    You'd think I could just put the cursor at 0:00 and insert a 6 second title over black and it would move all the video and audio to the right by six seconds. But what happens is only the video slides over. The two audio tracks don't move and are now six seconds early. Sure, I could go ahead and re-adjust all the 30 or 40 audio clips, but I can't help thinking that "Apple wouldn't make me do this..."
    Has anyone any idea how to lock all the edited material together so I could insert some space to the left without losing sync?
    PS does anyone share my frustration on THIS: when I copy a little piece of sound from one of those tracks and then paste the copy, there's no telling where it will land... It never goes to the cursor position. If I'm lucky it lands somewhere on the timeline after the project end and I can drag it back to where I want it. But on an hour project this is annoying.

    Hmmm. this was supposed to go to the iM6HD group. I wonder if there's a way to move it.

  • Shapes disappear when editing anchor points (CS5)

    Hello,
    Some of my shapes simply disappear on mouse button release after moving anchor points or adjusting the bezier angle. The edit history does not mention any deletion; the event is registered as "move point" so I can "edit->undo move point" to have my shapes reappear.
    This looks like a bug to me, but I'm quite new to Flash - I may have missed something.

    Here is what they are referring to if this does not happen on everyone's then it is a common enough issue to figure out a solution but as far as I know it has always been this way, if anyone is seeing it differently we should know how they work around it so we can all benefit.
    I agree if you want to draw a shape over other objects say as a clipping mask then you should not have to have a stroke which can be one distracting and two you prevent you from seeing an important small detail that might be important.
    It might also be useful to be able to make this guide vary in width to mimic a stroke to see how it will effect the underlying art. I know why not just use the stroke and give it a color and transparency which is not the point the idea that you are creating art and you want to investigate you possibilities before driving yourself crazy selecting stroke colors and widths is the issue. It is more for the visual process and not finalized art and we are use to using the layer color to let use know what layer it is on so a color will only interfere.
    It would be good to change this behavior and get everyone's input here of how they would like to see this drawing capability improved IMO.
    I think it is a good issue to bring to the surface once again.
    Path without stroke

  • Email insertion point lost

    I find that if Mail for iOS 5.0.1 encounters a background event while I am composing an outgoing e-mail, the insertion point becomes invisible. Receiving or auto-checking for e-mail seem to be the events which trigger this behavior. By typing and deleting, I can find out where Mail thinks it is, and once the e-mail is either sent or canceled, all is back to normal. This happens 100% of the time. If I turn off auto-checking of the server, I can make it go away, at the expense of lost automation.
    Is this a configuration error, a bug, or what?

    This is the PREMIERE PRO video editing forum... you need a forum for Microsoft PowerPoint or Acrobat
    If you go to the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the Adobe product you use

  • Insufficient content for edit, four point editing, ignore out point on source

    Hello folks,
    I'm a long time FCP 7 and Avid editor currently using 8.2 for two short form museum films and have been running into all sort of questions.  This one comes up multiple times a day.  I tried to search for this here but didn't find my exact issue or answers. 
    I am trying to do a four point edit and I keep getting the "Insufficient Content for Edit" error.  My source is marked in and out for 5 sec and my timeline in and out is marked for 8 sec.  Four points total.  I have already checked the Ignore Source Out point in the Fit Clip window and have checked the "Remember" box as well.  My source definitely have enough footage to fill the marked 8 sec in the timeline.  So why isn't PP ignoring the source out point when I commit the edit?  Of course, I works properly if I go to the Source window and remove the out point manually but that's a pain and shouldn't be the way.  Is PP not capable of this? or Am I doing something wrong?  What is the point of the "Ignore Source Out Point" if it doesn't apply to this very common situation?
    Thanks for any help you folks can offer.
    CHL

    I think I know what the issue is.
    When the Fit Clip dialog opens for me and the source is shorter than the destination, "Ignore Source In Point" and "Ignore Source Out Point" are grayed out. In other words, when the source is shorter than the destination, my only option is to ignore sequence in or out points.
    If my source is longer than my destination then it allows me to check ignore source in or out. However, if I have Premiere remember this choice, when I try to insert a source clip that is shorter than the destination, I get the error that you get.
    It's obviously a terrible setup and shouldn't be like this, but that's why it's happening.

Maybe you are looking for

  • I am trying to setup

    i typed my qquestion in subject line  i am trying to setup my mobile HP ePrint cannot signup and enter printer code issued me I think i forgot my password as i cant enter info

  • Getting 415 Unsupported Media Type error when calling a windows web service

    I have a BPEL process that invokes a windows web service. This process is working currently on the production system. When trying to run the process in a new test clustered environment, I'm getting the error below (bolded). We're using 10.1.3.3 Oracl

  • External hard drives and mac/windows compatibility - Need Help pls

    I have an external Harddiskdrive with 200 GB formatted in HFS+ with my Mac. And here's my Problem: A friend of me would have some of the MP3's on this HDD, but he is a PC user with Windows XP. So he could not see the drive in his Workspace. Is there

  • How to rename mailbox in N97 mini

    I set 3 mailboxex with the automatic configuration wizard in N97 mini. The mailboxex have been automatically named by the SW. Can someone tell me how to rename them? Thank in advance Seiseralm Solved! Go to Solution.

  • Performance point service errors in share point wfe servers event viewer

    HI i am facing a problem in performance point service , i seen two errors  in event viewer of a sharepoint wfe server An exception occurred while the width of the Web. Diagnostic information that may help determine the cause of the following in this