ST03 Total Collector question

Recently, SAP_COLLECTOR_FOR_PERMONITOR job was failing due to TSV_TNEW_PAGE_ALLOC_FAILED error in RSCOLL00 program. To fix the issue, I configured the table TCOLL according to the note 966309, I checked off Gen.Total under Expert Mode >Worload Collector > Total Collector> Control > RFC Server Profile. I even applied the correction in the note 1074281 so that Total Collector would work properly. This seem to have solve the issue of SAP_COLLECTOR_FOR_PERMONITOR.
From my understanding when I checked off "Gen. Total" for RFC Server profile, it should not be calculating RFC steps number Under TOTAL for Day, Month and Week. However, the numbers for RFC steps seems approximate.
Any suggestion on why the RFC number are still being calculated? or, am i missing something here?
Best,
Manish

Hey Manish,
When you check off the "Gen. Total" for RFC Server profile,
it does not calculates the number of RFC steps in the "RFC Server profile" section, however, it should create the number of RFC per DAY in the workload and other sections...

Similar Messages

  • When i got my i phone they had me answer questions for security and now i went to itunes to buy something and they asked me totally different questions...so now i cant buy things from itunes..can i reset or change the questions

    when i got my i phone they had me answer questions for security and now i went to itunes to buy something and they asked me totally different questions...so now i cant buy things from itunes..can i reset or change the questions

    Welcome to the Apple community.
    You might try to see if you can change your security questions. Start here, change your country if necessary and go tomanage your account > Password and Security.
    I'm able to do this, others say they need to input answers to their current security questions in order to make changes, I'm inclined to think its worth a try, you don't have anything to lose.
    If that doesn't help you might try contacting Apple through Express Lane (select your country, navigate to iCloud help and enter the serial number of one of your devices)

  • Collector questions

    Hello Everybody!
    I would like to ask some questions about creating a collector. I
    modified the Apache Agent (utility) to tail -F logfile_path | awk
    '{print($0); fflush()}' | $SOCAT_BIN -d -u - $SOCAT_OPTIONS & to send
    the logfile to the Sentinel. I will check, but the point is that it
    transfer the lines.
    The Collector look for a Matching rule and I saw it in the debugger and
    also in the Sentinel web interface that I got the event/logfile. I also
    see in the debugger that the s_RXBufferString is exists. So I have to
    use the safesplit or split methods on this.s_RXBufferString, right? Or
    Should I use //.exec()? Or it is totally up to me to use whatever I
    want?
    If I saw it right, the /()()/.exec() makes/eval the regex and We got
    RegExp.$1-$9. If I use the /()()/.test() it will just give me wether the
    result of the regex is true or false. Right?
    When is it allowed to use field assignment (e.InitiatorUserName =
    this.username?
    What is the effect when I put the instance.SEND_EVENT into an another
    function for example normalize()? Or it is still OK to put elsewhere the
    send_event untill it is in one of the preparse(),parse(),normalize()
    functions?
    Do I have to create a variable like var empty_str or it is enough to do
    the this.emptry_str? The preparse(),parse(),normalize() are prototype
    javascript function so if I read it well, it is ok to use
    this.empty_str. Or will the this.empty_str dissappear after it jumps to
    the next function (because of the scope)?
    How can I decide when to use RXMapp and when s_RXBufferString? What if I
    don't see the s_Body, but have s_RXBufferString? I know that
    s_RXBufferString is line-oriented, but is i possible that my syslog/file
    data will be in the RXMap?
    What if i set the this.dun="testuser"; and in the Rec2Evt.map I add the
    UserTargetName,dun pair? It should be always present the TargetUserName
    when I look it in the Sentinel web interface, right?
    Are there any other source to learn how to create collector?
    Thank you for your answers!
    woodspeed
    woodspeed's Profile: https://forums.netiq.com/member.php?userid=7232
    View this thread: https://forums.netiq.com/showthread.php?t=51349

    woodspeed;246692 Wrote:
    > Hello Everybody!
    >
    >
    > I would like to ask some questions about creating a collector. I
    > modified the Apache Agent (utility) to tail -F logfile_path | awk
    > '{print($0); fflush()}' | $SOCAT_BIN -d -u - $SOCAT_OPTIONS & to send
    > the logfile to the Sentinel. I will check, but the point is that it
    > transfer the lines.
    > The Collector look for a Matching rule and I saw it in the debugger and
    > also in the Sentinel web interface that I got the event/logfile. I also
    > see in the debugger that the s_RXBufferString is exists. So I have to
    > use the safesplit or split methods on this.s_RXBufferString, right? Or
    > Should I use //.exec()? Or it is totally up to me to use whatever I
    > want?
    > If I saw it right, the /()()/.exec() makes/eval the regex and We got
    > RegExp.$1-$9. If I use the /()()/.test() it will just give me wether the
    > result of the regex is true or false. Right?
    > When is it allowed to use field assignment (e.InitiatorUserName =
    > this.username?
    > What is the effect when I put the instance.SEND_EVENT into an another
    > function for example normalize()? Or it is still OK to put elsewhere the
    > send_event untill it is in one of the preparse(),parse(),normalize()
    > functions?
    > Do I have to create a variable like var empty_str or it is enough to do
    > the this.emptry_str? The preparse(),parse(),normalize() are prototype
    > javascript function so if I read it well, it is ok to use
    > this.empty_str. Or will the this.empty_str dissappear after it jumps to
    > the next function (because of the scope)?
    > How can I decide when to use RXMapp and when s_RXBufferString? What if I
    > don't see the s_Body, but have s_RXBufferString? I know that
    > s_RXBufferString is line-oriented, but is i possible that my syslog/file
    > data will be in the RXMap?
    > What if i set the this.dun="testuser"; and in the Rec2Evt.map I add the
    > UserTargetName,dun pair? It should be always present the TargetUserName
    > when I look it in the Sentinel web interface, right?
    > Are there any other source to learn how to create collector?
    >
    > Thank you for your answers!
    Argh formatting! Let me take this from the top, and hopefully I
    won't miss anything:
    1) favor exec() over test(). Test is slower, can only handle a very
    small number of captures (9), where exec is generally same or better
    speed, I haven't hit a limit to the matches, and returns a consistent
    indexed array.
    2) I personally favor using e.FieldName over using the rec2evt.map,
    because especially as a programmer I find it gives better flow control.
    That goes against documented guidance a bit, but as long as you're okay
    with the possibility of needing to
    do a larger find and replace in the event of a schema name change, it's
    really not that big of a deal (and if you use notepad++, it's really a
    non-issue)
    3) instance.SEND_EVENT is a global variable, so you're fine to set
    it...anywhere. You can also just call e.send() and return false()
    from any of the primary functions (parse(), preparse(), normalize() and
    the custom versions of the same), although once again, you risk a
    breaking change later, but once again, if you have a good editor, it's
    not a big deal.
    4) Javascript in general favors use of var over setting properties on
    objects, and in my own code I tend to follow that rule. However, if
    you need a value to transit between the Record methods, putting it on
    the this object isn't a bad idea at all.
    5) RXMap is only populated if a value coming in from the connector does
    not follow the s_<propname>, i_<propname> nomenclature, or if it's one
    of a few special fields that we happen to want at the top of the
    metadata. For syslog stuff, you can generally safely not mess with
    it.
    6) So there are three fields that hold the "message string" for most
    connectors:
    s_raw_message_2 - the original and completely unfiltered string
    s_RXBufferString - for most collectors, same as above, for syslog we
    clean it up to be syslog RFC-friendly.
    s_body - we strip off the syslog header.
    Which field you parse depends on what you need. For an RFC-compliant
    syslog stream, s_Body is the most convenient because it has all the
    'standard' stuff parsed out and available through other connector
    metafields; s_RXBufferString is generally good, but for some exceptional
    event sources, our "clean up" actually is a bad thing, which leaves
    s_raw_message_2. As a general rule for your use case, I would
    recommend s_RXBufferString unless you find that s_Body gives you a clean
    value.
    7) for your Rec2Evt.map question, well yes - assumign that this.dun was
    present and p
    8) https://www.novell.com/developer/dev..._sentinel.html is the best
    place to start and it's our main resource. If you need more of an A-Z
    training, our training services group does offer a training class that
    you may want to look into.
    brandon.langley
    brandon.langley's Profile: https://forums.netiq.com/member.php?userid=350
    View this thread: https://forums.netiq.com/showthread.php?t=51349

  • Help! Total newbie question...

    I want to make a flash form where the viewer/user can watch a video clip of their choice (from a drop-down control or something else if there's a better way).
    I've found myself totally unable to find our how to do this.  I mean, frankly, I don't even know what kind of file to start from the "New..." form at the beginning of Flash (CS 3.0, btw)!
    I know how to create a Flash Player and link it to a single video.  What I envision is that after the page comes up, with a single player component (initially empty), the user chooses a video from the drop-down list and that video starts playing in the player.
    I guess I have these questions-
    What kind of file should I be starting with?  {I kinda assume I'll be making an SWF to put on a web page.}
    Where on earth do I learn how to get the simplest things (e.g., button clicks, etc.) to work?
    Could any of y'all please offer suggestions where I could find a sample of something similar?  -OR-
    Could any of y'all give me an example of how to do (code?) this?!?!
    I apologize for such dumb questions, but while I'm quite experienced with Premiere, Encore, Photoshop, etc., I am definitely NOT used to Flash!
    Thanks in advance!
    Jim 8^)

    This is going to be a pretty big learning curve for someone with no Flash experience. But, sometimes the best way to learn is to just dive in and start the project.
    I'd recommend using the help and tutorials for a while. You'll need to learn how to create buttons, use ActionScript, and more. My best guess is that you'll need to house each video file on your server with a unique location (URL) then create a pull-down button (or some method of selecting the files) that calls each specific video when the user selects it. I'm assuming you'll need to use a browser fscommand to loadMovie, but someone else may set me straight on that. My experience is limited in this specific task, but I think it might give you someplace to start looking.

  • Garbage collector question

    I have a question about the garbage collection. You cant activate the garbage collector when you want but in JProbe tool you can request it pushing a button. Can i do this in my application?. I tried using System.gc() and Runtime.getRuntime.gc() but i cant get the same result. Any ideas?
    Thanks in advance and excuse me, my english is not so good.

    In Jprobe if you request a garbage collection you get
    a deep garbage collection that release much of the
    used heap size. But if i put in my code System.gc()
    only a little of space is released.The amount of released memory depends of course on the number of "unused" objects. If you allocate an array of bytes that's allmost the maximum size of the heap the JVM can use and you make it available for garbage collection by releasing the refernce the effect running the garbage collector is much bigger than if you only allocate an array of, let's say 32 bytes, and do the same. A complex GUI application allocates and releases lots of objects so it's possible to release a huge amount of heap space whereas a not so compex application uses fewer objects and there are less object to release by the garbage collector.

  • Garbage Collector Questions

    Howdy all,
    I've got a few questions about flash's garbage collector.  I'm building a  game and have all elements in a container sprite called _gameContainer.
    _gameConatiners contains other sprites such as _hudContainer which  contains more containers such as _gameoverContainer, _menuContainer,  etc.  So there's a whole hierarchy of containers that are all contained  in _gameContainer which is added directly to the document class (not the  stage btw).
    So the whole thing should basically be Stage -> Document Class -> _gameContainer -> etc.
    When the player loses or wants to restart the game, I'm removing all  event listeners (which are defined as weak, but still rather make sure  there's no loose ends), stopping all music/sounds, removing  _gameContainer from the stage, and then setting _gameContainer to null.   From there I am re-calling my init function which creates everything  (_gameContainer, and everything inside of it, as well as creating all the  standard eventlisteners).
    Am I doing everything upside down?  Is this *a* proper way of restarting  a game?  Mind you I dont say "the" proper way since I'm sure there's a  hundred different ways to do this.
    Also, on a separate note... If I have something such as an enemy, I keep all  enemy logic contained in the class linked to the movieclip on the  stage.  Who should be calling add/removechild?  Should I be using a  factory method that takes care of all this, or should I have the engine  create the enemy, and then have the enemy remove itself from stage?   Currently I'm using a mix of both, but generally I'll have a function in  the engine/caller add it to stage, then have the class have an  ADDED_TO_STAGE event listener.  When it comes time to remove the class, I  have it call it's own removeself function such as: (_container is a  reference to it's container as mentioned above such as _hudContainer)
    protected function removeSelf():void
        if(_container.contains(this)) {
            _container.removeChild(this);
        _container.parent.parent.dispatchEvent(new Event(Engine.START_GAME));
    Thanks!

    Wonderful question Travisism.
    The garbage collection is strange.  First I'm curious why you lump displayObjects into _gameConatiners.  Does _gameConatiners get added to the stage at any point?  Why not just add the proper hud at the point its required?
    Anyhow.  By removing listeners ,removeChild(_gameConatiners), and setting _gameConatiners=null does not mean these classes are killed.  null only marks the memory locations as having no more references to them.  When this occurs these objects may be removed from memory.  Why do I say may, that is because it takes a specific amount of memory utilized to trigger the garbage collection.
    Now just merely setting _gameConatiners=null may not ever kill your objects off.  You would be required to profile this and make sure they are dieing properly.  From the sounds of it you have a lot of inner children.
    There is reason to believe that in some cases, when an object is removed from the main stacks that its children will be removed as well.  Though, if the inner workings are so large, often the objects within referencing each other effects the way the garbace collection is stating they are still in use.  Thus keeping these objects alive.
    Its always best to kill off every reference being used.  You can do this by ensuring each object in your movieClip class declared a kill method, and continue trickeling down each object.  This ensures each object will be properly marked.
    As far as your movieClips a factory method is only for the creation of objects, never for the removal.
    You're best bet is to have an object that holds all objects on the stage in a collection.  When you destroy the game. Itterate through this collection and remove them from the stage there.
    This would fit into your engine concept.  There is no reason to use a displayObject for that since its just an object.  Better Yet use a Vector.<DisplayObject> to optimize this.
    Back to your question is this *a* proper way to reset.
    Yeah and No.  The asnwer is based on the memory usage your application eats, and the amount of time to rebuild all objects.  Ideally you should Pool any resources that can be reused versus having to rebuild.
    For example.  If you have a screen that says Game Over.  why would you have to rebuild it on a reset?  There is no information that was changed.   Each clip instantiation takes memory allocated and time.
    Unfortunately without seeing what you have its difficult to say.  But init methods are good and it can be wise to rebuild objects to being again, but as i said it depends.
    Lastly, your line:
    _container.parent.parent.dispatchEvent(new Event(Engine.START_GAME));
    Should not have parent.parent references within.  If you are creating a new Event, at least fall back on eventBubbling to allow the event to travel to the parent.parent.
    You should never target parents like that in a class.  Best practices is to pass in parent.parent as a reference to the class.
    What if you were to add one more layer of parents to the _container.  Then you would have to continue modifying parent.parent.parent.  At least if you bubble the event you dont have to be concerend at all about who listens to it.

  • Mounting Time Capsule drive - total newbie question

    I'm a total Mac newbiew, so please bear with me.
    There are alot of threads in this forum that talk about 'manually mounting' a time capsule drive. What is this manual mounting, what's the point of doing it, and how do you do it?
    My Time Capsule shows up under the Shared menu in Finder and I can access it from there. Is access to the disk via this link slower than mounting it or something?
    Lastly, my TC is connected to my Mac Mini via an ethernet cable. How can I check that the Mac is talking to the TC disk via this connection rather than over the wireless network that the TC is providing?

    By "mounting" people are meaning seeing the Time Machine disk icon actually showing on the desktop. I can only think of 2 reasons for this, 1) time saving if people use the disk for other purposes as well as Time Machine and need to access it regularly, and 2) If it mounts, it proves you have connectivity.
    Doing it from the finder sidebar is effectively the same thing, only you are doing it instead of getting the system to do it. Your initial access to the drive may be noticeably slower for a couple of seconds until it mounts is all, nothing worth worrying about
    See here for more info if you are interested in mounting it automatically:
    http://discussions.apple.com/thread.jspa?threadID=1446928
    As for your last question, unless your wireless and wired connection talk to different networks, then turn off your wireless and used the wired connection.

  • Credit Check Total reporting question

    I have a question about Credit Check Total reporting a late.  I have been working very hard to rebuild my credit.  So I am paying very close attention to how I pay my bills.  My question is this According to Credit Check Total I had a late payment 18 months ago on EXP and EQ.  I know I haven't been late on anything in almost 4 years.  I do have several cc chargeoffs from 2010 and early 2011 that still show balances and have been gradually one by one settling or                       paying these off. So I guess it's possible one of these has reported the account and makes it look like a new late,  But then again I           wasn't able to start doing this till bout 6 months ago.  So IDK.  My problem is I can't figure out where the late is coming from.                     Anyone got any ideas on how to spot this.  I will take any and all suggestions on how to find it.  

    NormanFH wrote:
    alottacards wrote:
    RobertEG wrote:
    An account that has been charged-off is, by definition, seriously delinquent.The fact that they charged-off the debt does not end their ability to report prior or add new delinquencies. If a delinquency is reporting, does it not show a month/year?Have you inquired with the creditor? RobertEG  I have read enough on here to know absolutely you are right.  My problem is I can't seem to find the late  Probably can't do anything about it either way.   I would just like to be able to put my finger on what it is.  I have looked at the last reporting date of each of them, the last date before chargeoff, the chargeoff date, nothing matches 18 months agl. I'm perplexed. It;s just one of those weird things that is on my brain because I can't figure it out.  LOLOK, looking at my CCT page I think I know what you're seeing. It's on the overview page where it lists whats affecting your credit, correct? In mine for instance it says "Time since late" and then "4 months". I know that there are no late payments from 4 months ago, however there ARE collection accountsthat updated that recently. I think that is what you are seeing is not a late payment, but rather collection or other derog that last updated 18 months ago.Yep,  that's exacly what I see,  Just wish I knew what it was.  Don't like not knowing.  Oh well, I'm gonna just keep doing what I'm doing.  Keeping Util low,.  Paying on time and continuing to pay for old debts.   Thankyou for taking the time to help

  • HP Officejet Pro X576dw MFP (CN598A) Total memory question

    Hello,
    We bought a HP Officejet Pro X576dw MFP (CN598A), and we noticed something weird on the printer's web settings page.
    The specification on the hp website states that this printer comes with:
    - Memory, standard 768 MB (Not expandable)
    - Memory, maximum 768 MB
    But on the printer's web settings page, it shows the following:
    - Total Memory (KB) 415685
    - Available Memory (KB) 415199
    That's only like 405 MB of the memory installed.
    Does it mean that the OS of printer is taking about 363MB of memory or did we get a printer with a wrong memoery card installed?
    Can anyone with the same printer check the total memory information?
    Thanks.

    Good day,
    To get your issue more exposure, I would suggest posting it in the commercial forums since your product is a commercial product. You can do this at Commercial Forums.
    Enjoy your day!
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Total Newbie Question ... Sorry :-(

    I know it's a windows thing, and I am now converted to Mac but I gotta know this because it's doing my head in. It's a complete stupid green gilled newbie question.
    When installing new programs on a Mac can you create shortcuts to the programs on the Dock? I did what I THOUGHT it would be, i.e I made an Alias and stuck it in the dock, but on rebooting my Mac later on, in place of the shortcuts where 3 question marks which when clicked on did absolutely nothing???
    Help?
    A.L.I
    Windows XP Pro Desktop, Macbook Pro, 60GB iPod Video   Mac OS X (10.4.5)   OS X

    You aren't installing something from a dmg file are you? The dmg is a disk image – kind of a virtual CD. So when you double click the dmg and then get the little disk/hardrive/custom icon on your desktop that is the same as if you had mounted a CD. You then need to drag the application off of that "CD" into your application folder. Then it is truly installed.
    You can then "eject" the icon your your desktop. This is what happens when you shutdown and without remounting the image your dock shortcut can't find the original.
    Just a thought.

  • Time Machine Total Reset Question

    I recently had an iMac which refused to boot. I reinstalled from a combination of Time Machine restore and the original system disc. It still took 7 hours to get all the preferences and odd programmes which didn't seem to restore back to working order.
    I wanted to do a complete Time Machine backup starting from scratch using a fresh 500Gb ext hard drive. I did the following as suggested:
    1.On the Time Machine Preferences window, click the Options button. Note anything in the exclusions box, then click Cancel to return to the main window. Note the settings of other option(s), then turn Time Machine OFF and quit System Preferences.
    2.If you're backing-up to an external HD, eject, disconnect, and power it off for a few moments, then reconnect it.
    3.Delete the file /Library/Preferences/com.apple.TimeMachine.plist (in your top-level Library folder, not your home folder).
    (You may have to navigate to it; a Spotlight search won’t show it, and a Finder search won’t, either, unless you include System Files. If you have a problem finding the file, see item #A7.)
    4.Go back into Time Machine Preferences, re-select the drive, re-enter any exclusions and other options you noted in step 1. Note that the oldest and latest backup dates won't appear on this window until the next backup is done.
    5.A 120-second countdown to a backup should appear. If you close the window, it should begin immediately.
    The Mac HD has a used space of 150 Gb, but before the new TM backup started it counted thousands of files which were 'excluded' even though I hadn't asked for this. When the actual backup started it was saying that it was backing up a total of 68 Gb. Surely this can't be correct. I know that TM automatically omits a number of system files but surely not 82GB worth? I have a feeling that despite trashing com.apple.TimeMachine.plist it may be picking up from where the 'old' external hard drive (which contained the previous total TM backup) left off?
    All I want to do is start afresh using this new 500Gb EHD but ensure that the whole of drive is backed up. How do I do this or is there a better way of backing up the whole drive on a regular basis?
    Thank you.

    Answered in your other thread.

  • Totally novice question

    ok, probably i shouldn't be using a pro app if i can't answer this question, but i figure it's so easy that nobody here would mind giving me the surely obvious answer.
    i downloaded some youtube videos of a concert that i'm trying to piece together. 14 files in all.
    they all view fine in youtube, but some of the files (.mp4, their HQ options) are out of synch with audio/video, there's like a split second lag.
    normally for these type of things, i just use QT pro. but i brought the various files into FCP to adjust the audio track (-3 on the time line) and synch up the audio correctly.
    my question is this: how do you export a file in it's native/source format, or in other words, the same small .mp4. really, i just want to re-save the clip as it is, just with the slight audio track adjustment, but obviously it wants to re-write the file with the new rendered settings, etc.
    the point is that no matter how i export it (make QT movie, self contained, compression: NONE or animation), i get this huge new file from what was a simple .mp4 source file (i don't mind if it goes to .mov or whatever)
    i don't want to run it through compression again since it's already a compressed file, although i'm sure i could do it to make it look good.
    i seem to recall in old versions of iMOVIE that you could save as source or uncompressed QT file and the movie/clip would essentially be the same format as what was imported.
    can you do this in FCP??
    thanks in advance.

    yeah, i found a workaround for syncing the audio in QT pro and just doing that instead, seems to do what i need to do. i guess my question was how to export a sequence/file/clip from FCP exactly as it's source file, but all the uncompressed or current settings options for export seem to re-encode, render and create a huge file. what i was hoping for was an assemblage of all the source files in their original format with just a audio track tweak, but FCP seems overly complicated for such a seemingly simple task, or am i missing something?
    for example, if i imported a .mov 50 meg file into FCP, shouldn't i be able to export that file exactly as it is with no changes and have it be identical? (i know this makes no sense to do in real life, but it addresses my root question, can FCP export a file simliarly to a re-save?)

  • Total newbie question...  Just need some help.

    I am wondering how to change a header and have all my sheets (yes, using a template) reflect that change. Also, I made a team roster and I am wondering how to have all my sheets (stats for players) reflect the roster I created. Simple name stuff.
    Thanks for the help.
    [email protected]

    Coll,
    To both of your questions I would say: Have one master sheet and on your other sheets, reference the information on your master sheet. To mirror the contents of a cell in another Table or Sheet, type = and then click on the cell you want to reference.
    Hope this gets you started.
    Jerry

  • Total newbie question.

    I will soon be buying an iPad. All I need it for is Pages to write.
    My simple questions is this:
    In the App Store, how do I tell which apps are specifically for the iPad?

    Is there a search function in the app store?
    Yes ,a)look on the on the top right ,you'll see this>
    !http://img.skitch.com/20100409-1t2x8xisefbxr5r7ie5chqtmks.png!
    or b)if you click on the Home button !http://img.skitch.com/20100409-t6hq977yryrt8hc5ucpehyr3e4.png!
    you can use *Power search* found on the right below *Welcome Paul!* >Quick links (if that's the name that the account is under)
    I prefer the 1st
    A

  • Total Noob question: Projects

    Hi good People. Just got FCE HD 3.5 and got the Lynda training video with it and I am trying to learn my way around. Can someone point me in the right direction here.
    I was trying to create a new project and I did so with another project open, and it just added the new project to the old one. not realizing it at the time I opened some stuff I was working on in iMovie and of course it made a third project in the old project. So my question is. How do I separate these projects?
    Anyway, now I know that you have to close the old project before you start a new one, right?

    No. You can multiple projects open at the same time. You just have to be careful what your doing so the right material gets edited into the right project. A good naming convention is a good way to start, like instead of leaving the sequence name as Sequence 1, name it something, like the name of the project if nothing else.

Maybe you are looking for

  • After upgrading to Mountain Lion, Safari on my iMac and my MBA is showing mobile websites

    While using the Safari browser on my iMac today, I was redirected to the mobile version of a website repeatedly.  Just to see if it was something specific to my iMac, I tried the same website on my MBA and it did the same thing.  Both have been upgra

  • Purchasing- Set up Employee as Buyer

    I know how to set up an Employee as a Buyer through the application...but can someone tell me how to do this via the backend? I have a conversion to do and want to set up employees as buyers. Is there an API or something?

  • Calling a JavaScript function from an JApplet...

    Can anyone help? Is it possible to call a JavaScript function from within a JApplet? If so, what is the syntax? I've seen reference to the Netscape package but I've been led to believe it doesn't always work within Internet Explorer 6 which is the ta

  • Gimp-Print and Postscript

    I just purchased an HP PCL color laser printer. Ocassionally I'll need to print EPS files with it. What's the best way to accomplish this? 1. Use Gimp-Print drivers 2. Create a PDF and then print the document using the standard PCL language 3. Someth

  • InDesign CS6 and CS5 tools are incomplete

    Hello all, Why is Configurator 3.1 missing so many InDesign tools? Content Collector tools are missing. And especially missing are the Stroke/Fill activation buttons; the Default Fill/Stroke buttons; the Swap Fill/Stroke buttons; the Formatting Affec