Human Logic Bug help me!!!!

hai friends
see the code and help me
boolean human=null;
public boolean testHuman()
if(notlieing)
human=true;
else{
human=false
return human;
when i run this program with various human being it alaways return null
if my logic is wrong then
how i know whether a human is telling the truth or not....using java program.
help me with source code...
thanks in advance.

Firstly,
- don't get what your condition (notlieing) is supposed to do (not that it would be too important)
- do you really intend to use GLOBAL variables (or the concept of that) for returned values????
How about:public boolean testHuman() { return(notlieing);}
human = testHuman();- anyway, what I really think your problem is:
boolean has by default only two possible values (true, false). Of course, to allow comparison to null, one of them must equal (its representation) to null (I think it's false), therefore, I assume that your condition (notlieing) simply always fails. The other possibility would be that you don't give all details.

Similar Messages

  • How does logical volume helps in performance in AIX..Should have posted IBM

    We are setting up a new DB server and the disks are in RAID5 config,Does putting data and index in different logical volumes helps in performance

    (I hope I'm not falling for April Fools joke here...)
    Hi Maran,
    As someone already answered, if both volumes are striped against all available disks, you can put everything in one volume and expect equal or better performance.
    However, I want to warn you from optimizing the disk structure without knowing that your database will really bottleneck on disk access to index and data blocks. My storage manager and I wasted countless hours with such optimizations before realizing that we are wasting our time because the application code contains so many functions that disk IO is not even close to being an issue.
    -- Chen

  • HT4059 I purchased an iBook and accidentally paused while downloading. Now I cannot download the rest. Message keeps telling to return to purchase site to download, but everything I click on "Download", the message would reappear. Circular logic. Help!

    I purchased A book on iBooks and accidentally paused it while downloading. Now I cannot continue it's downloading. I get a message saying I have already purchased the book and to go to Purchased page to download it. Trouble is, every time I do that, tapping the "Download" button, the same message reappears. EVERY TIME. Circular logic. Help!

    Okay, you need to contact support definitely about what's going on. Here is a form that will send an e-mail into support for you:
    http://www.apple.com/emea/support/itunes/contact.html
    As far as the prices, the difference is likely the laptop version is the SD version and the iPad one is available in HD. That's the only reason you'll see a price difference. It has nothing to do with the device with movies/movie rentals. Apps yes, these no.

  • I/O Error result code -36: Logic bug, or Mac OSX bug?

    Hello-
    I encountered a problem in Logic Pro 8 today that severely damaged one of my audio files in my session. I was working in the sample editor, and I went to copy and paste an audio fragment. When I tried to paste the audio, this error came up:
    "I/O Error, result code = -36"
    After that, the cursor turned into a black and white spinner, and the audio file that I was working with suddenly was altered in a way that somehow erased a portion of it in the song. I had to ability to undo, view the changes in the audio file, etc, etc. It was damaged irreversibly, and I had to end up re-recording that segment. Does anyone know why this happens, and is it a bug in Logic?
    BTW, I have over 500 gigs free on the external drive that I am recording to, and nothing has changed, hardware-wise on my system in over 6 months... Any help would be greatly appreciated.

    Adam Nitti wrote:
    Hello-
    I encountered a problem in Logic Pro 8 today that severely damaged one of my audio files in my session. I was working in the sample editor, and I went to copy and paste an audio fragment. When I tried to paste the audio, this error came up:
    "I/O Error, result code = -36"
    After that, the cursor turned into a black and white spinner, and the audio file that I was working with suddenly was altered in a way that somehow erased a portion of it in the song. I had to ability to undo, view the changes in the audio file, etc, etc. It was damaged irreversibly, and I had to end up re-recording that segment. Does anyone know why this happens, and is it a bug in Logic?
    BTW, I have over 500 gigs free on the external drive that I am recording to, and nothing has changed, hardware-wise on my system in over 6 months... Any help would be greatly appreciated.
    This sounds like one of two things that I have seen with this error :
    1.- your external hard drives' connection to the computer is not 100% stable (loose cable...dusty environment...)
    2.- Your audio device, is ti FireWire too? Is it daisy chained to this external hard drive? Maybe the order of the daisy chaining needs to be looked at.
    Cheers

  • AStar Search Logic (Bug)

    I have been working on a simple implementation of the A* Search Algorithm. I thought it was working, but apparently I didn't test it enough with different terrain movement costs (grass is easier to pass through than mountains, etc.). And now I'm wondering if my logic is even correct:
    loop through each waypoint:
        do until next waypoint is found:
            do for each adjacent node:
                if checked node is on the closed list:
                    if checked node is not on the open list:
                        make the checked node's parent = the current node
                        put the checked node on the open list
                        checked node g cost = parent node g cost + 1 (straight) or sqrt of 2 (diagonal)
                    if checked node is on the open list:
                        if the checked node's g cost < the parent node's g cost:
                            --------Should I do this next line?--------
                            switch the two nodes (in terms of parent)
                            checked node g cost = parent node g cost + 1 (straight) or sqrt of 2 (diagonal)
        let h cost = distance between current node and next waypoint
        let f cost = g cost + h cost
        make the current node the node with the lowest f cost
        put it on the closed list and remove it from the openI think that just about covers it.
    I can't seem to find good documentation on A*, so I tried several similar ways (particularly regarding the parent values), but none seem to work. The full source code can be found at http://students.hightechhigh.org/~dturnbull/11thGradeDP/Programming/AStar/AStar.zip (along with the Jar itself). A screenshot of the bug and the corresponding debug log can be found at http://students.hightechhigh.org/~dturnbull/11thGradeDP/Programming/AStar/Debug/.
    (In the screenshot, the other two paths should have the same f cost as going through the middle disregarding terrain cost. Why then, would it choose to go through the high movement cost terrain?)
    Can someone please point me in the right direction?

    First I'd like to say that, considering you're an 11th grade student, you really did a nice job! Your aplication looks nice and you have even commented your code with Javadoc standards.
    But now the criticism. ; )
    You have one big problem: your AStar class. It's far too big (almost 2000 lines!) and has far too much responsibility: it's handling events, the GUI, game logic, etc. Some of the methods are over 100 lines long(!), making them very hard to follow.
    It's best to create a non-GUI application first and when your game logic is done (and works), build a GUI around it [1].
    When creating a larger application, it can be helpfull to underline all nouns and verbs in the problem description: the nouns are your classes and the verbs are the methods from those classes.
    You could end up with these five classes:
    |                                                                      |
    | + TerrainType: enum                                                  |
    |______________________________________________________________________|
    |                                                                      |
    | - cost: int                                                          |
    | - passable: boolean                                                  |
    | - label: char                                                        |
    |______________________________________________________________________|
    |                                                                      |
    | -TerrainType(cost: int, passable: boolean, label: char) << constr >> |
    | + getCost(): int                                                     |
    | + isPassable(): boolean                                              |
    | + getLabel(): char                                                   |
    | + toString(): String                                                 |
    |______________________________________________________________________|
    |                                            |
    | + Coordinate                               |
    |____________________________________________|
    |                                            |
    | x: int                                     |
    | y: int                                     |
    | Direction: enum                            |
    |____________________________________________|
    |                                            |
    | + Coordinate(x: int, y: int): << constr >> |
    | + distance(that: Coordinate): int          |
    | + equals(o: Object): boolean               |
    | + get(direction: Direction): Coordinate    |
    | + toString(): String                       |
    |____________________________________________|
    |                                                  |
    | + Tile                                           |
    |__________________________________________________|
    |                                                  |
    | - coordinate: Coordinate                         |
    | - terrainType: TerrainType                       |
    |__________________________________________________|
    |                                                  |
    | + Tile(x: int, y: int, type: char): << constr >> |
    | + equals(o: Object): boolean                     |
    | + getCoordinate(): Coordinate                    |
    | + getTerrainType(): TerrainType                  |
    | + hashCode(): int                                |
    | + toString(): String                             |
    |__________________________________________________|
    |                                       |
    | + Path                                |
    |_______________________________________|
    |                                       |
    | - tiles: List<Tile>                   |
    | - end: Coordinate                     |
    | - cost: int                           |
    | - estimate: int                       |
    |_______________________________________|
    |                                       |
    | + Path(end: Coordinate): << constr >> |
    | + Path(that: Path): << constr >>      |
    | + add(tile: Tile): void               |
    | + compareTo(that: Path): int          |
    | + contains(tile: Tile): boolean       |
    | + getLastTile(): Tile                 |
    | + reachedEndCoordinate(): boolean     |
    | + toString(): String                  |
    |_______________________________________|
    |                                                               |
    | + Grid                                                        |
    |_______________________________________________________________|
    |                                                               |
    | - grid: Tile[][]                                              |
    | - width: int                                                  |
    | - height: int                                                 |
    |_______________________________________________________________|
    |                                                               |
    | + Grid(width: int, height: int, data: String[]): << constr >> |
    | + findPath(start: Coordinate, end: Coordinate): Path          |
    | + getNeighbours(tile: Tile): List<Tile>                       |
    | + getTile(c: Coordinate): Tile                                |
    | - processData(data: String[]): void                           |
    | + toString(): String                                          |
    |_______________________________________________________________|Note that the TerrainType is an enum [2].
    I used the following data for the grid:// 'b'=brick, 'X'=building, 'm'=mud, '.'=dummy
    String[] data = {
        "bbbbbbbbbbbbbbbb",
        "bXXXXbXXXXXXXXXb",
        "bX..XbX.......Xb",
        "bX..XbX.......Xb",
        "bX..XbX.......Xb",
        "bX..XbX.......Xb",
        "bX..XbX.......Xb",
        "bX..XbX.......Xb",
        "bX..XmX.......Xb",
        "bX..XmX.......Xb",
        "bX..XbX.......Xb",
        "bX..XbX.......Xb",
        "bX..XbX.......Xb",
        "bX..XbX.......Xb",
        "bXXXXbXXXXXXXXXb",
        "bbbbbbbbbbbbbbbb"
    }And the algorithm in the Grid class for finding a 'cheapest' path between two points (the A* algorithm) could be written as:public Path findPath(Coordinate start, Coordinate end) {
      Queue<Path> allPaths = new PriorityQueue<Path>();
      Set<Tile> visited = new HashSet<Tile>();
      Path firstPath = new Path(end);
      firstPath.add(getTile(start));
      allPaths.offer(firstPath);
      visited.add(getTile(start));
      while(!allPaths.isEmpty()) {
        Path cheapestPath = allPaths.poll();
        Tile lastTile = cheapestPath.getLastTile();
        List<Tile> neighbours = getNeighbours(lastTile);
        for(Tile tile : neighbours) {
          if(visited.add(tile)) {
            Path copy = new Path(cheapestPath);
            copy.add(tile);
            allPaths.add(copy);
            if(copy.reachedEndCoordinate()) return copy;
      return null;
    }Due to the fact that all paths are stored in a PriorityQueue, I always get the cheapest path. Of course the Path class needs to implement the Comparable interface in order to let the PriorityQueue order the paths correctly [3].
    So, I'm sorry I cannot help you with the bug in your code, but perhaps this is of help to you.
    Good luck.
    [1] Google for "MVC pattern".
    [2] If you're new to enum's, read this tutorial: http://java.sun.com/docs/books/tutorial/java/javaOO/enum.html
    [3] This tutorial explain how to do that: http://java.sun.com/docs/books/tutorial/collections/interfaces/order.html

  • Logic Bugs and upgrades

    [ Edited by Apple Discussions Moderator; Please start a new topic about your technical issue. ]
    I just bought Logic. Will I have to buy upgrades in the future in order to get BUG fixes?? How can a company sell a product that does not work properly and is defective? I am hoping this is not the case.......

    This forum is so full of general complaining about Logic that I can't help thinking why those people bought Logic in the first place - surely there are other applications to use for those people. If somebody feels that Logic is so buggy that he/she needs an urge to complain and complain, I wish they would go ahead and change to some other program.
    I do understand that in this kind of user's forum the problems arise and that's OK when there are specified problems and (hopefully) solutions. I'm just so tired about general complaining.
    OK, I got it of my chest and now I can continue to do music with my favorite tool - Logic...

  • How to write code for this logic, plz help me very urgent

    Hi All,
    i am new to sap-abap, i got this work and i m working on this can any body help me in writing code, plz help me, this is very very urgent.
    here  i m giving my logic, can anybody send me the code related to this logic.
    this is very urgent .
    this program o/p should be in ALV format and need to create one commond 'SAVE" on this o/t list  if  user clicks save processedon and processedby fields in ZFIBUE should be updated automatically.
    i am creating one custom table zfibue having fields: (serialno, bukrs, matnr,prdha,hkont,gsber,wrbtr,budat, credate, cretime,processed, processedon, processedby,mapped)
    fields of zfibue:
    serailno = numc
    bukrs = char
    matnr = char
    prdha = char
    hkont = char
    gsber = char
    wrbtr = char
    budat = date
    credate = date
    cretime = time
    processed= char
    processedon = date
    processedby = char
    mapped = char      are   belongs to above type data types
    and seelct-optionfields:  s_bukrs for bseg-bukrs
                                        s_hkont for bseg-hkont,
                                         s_budat for bkpf-budat,
                                         s_processed for zfibue-processed,
                                          s_processedon for zfibue-processedon,
                                          s_mapped. for zfibue-mapped
    parameters: p_chk1 as checkbox,
                      p_chk2 as checkbox.
                      p_filepath type rlgrap-filename.
    1.1 Validate the user inputs (S_BUKRS and S_HKONT) against respective check tables (T001 and SKB1). If the validation fails, provide respective error message. Eg: “Invalid input for Company Code”.
    1.2 Fetch SERIALNO, BUKRS, MATNR, PRDHA, HKONT, GSBER, WRBTR, BUDAT, CREDATE, CRETIME, PROCESSED, PROCESSEDON, PROCESSEDBY, MAPPED from table ZFIBUE into internal table GT_ZFIBUE where BUKRS IN S_BUKRS, HKONT IN S_HKONT, BUDAT IN S_BUDAT, PROCESSED IN S_PROCESSED, PROCESSEDON IN S_PROCESSEDON, and MAPPED IN S_MAPPED.
    1.3 If P_CHK2 = ‘X’, go to step 1.11. Else continue.
    1.4 If P_CHK1 = ‘X’, continue. Else go to step 1.9
    1.5 Fetch MATNR, PRDHA from MARA into GT_MARA for all entries in GT_ZFIBUE where MATNR = GT_ZFIBUE-MATNR.
    1.6 Sort and delete adjacent duplicates from GT_MARA based on MATNR.
    1.7 Loop through GT_ZFIBUE where PRDHA = blank.
              Read Table GT_MARA based on MATNR = GT_ZFIBUE-MATNR.
              IF sy-subrc = 0.
                     Move GT_MARA-PRDHA to GT_ZFIBUE-PRDHA.
                  Modify Table GT_ZFIBUE. “Update Product Hierarchy
                 Endif.
        Fetch PRDHA, GSBER from ZFIBU into GT_ZFIBU for all entries in GT_ZFIBUE where PRDHA = GT_ZFIBUE-PRDHA.
        Read Table GT_ZFIBU based on PRDHA = GT_ZFIBUE-PRDHA.
              IF sy-subrc = 0.
                     Move GT_ZFIBU-GSBER to GT_ZFIBUE-GSBER.
                  Move “X” to GT_ZFIBUE-MAPPED.      
                  Modify Table GT_ZFIBUE.
                 Endif.   
    Endloop.
    1.8 Modify database table ZFIBUE from GT_ZFIBUE.
    1.9 Fill the field catalog table GT_FIELDCAT using the details of output fields listed in section “Inputs/Outputs” (above).
       Eg:                 LWA_ FIELDCAT -SELTEXT_L = 'Serial Number’.
                              LWA_ FIELDCAT -DATATYPE = ‘NUMC’.
                              LWA_ FIELDCAT -OUTPUTLEN = 9.
                              LWA_ FIELDCAT -TABNAME = 'GT_ZFIBUE'.
                              LWA_ FIELDCAT-FIELDNAME = 'SERIALNO'.
              Append LWA_FIELDCAT to GT_FIELDCAT
    Note: a) The output field GT_ZFIBUE-PROCESSED will be editable marking INPUT = “X” in field catalog (GT_FIELDCAT).
             b) The standard ALV functionality will be used to give the user option for selecting all or blocks of entries at a time.
             c) The PF-STATUS STANDARD_FULLSCREEN from function group SLVC_FULLSCREEN will be copied to the program and modified to include a “SAVE” button.
    1.10 Call the function module REUSE_ALV_GRID_DISPLAY passing output table GT_ZFIBUE and field catalog GT_FIELDCAT. Additional parameters like I_CALLBACK_PF_STATUS_SET (= ‘ZFIBUESTAT’) and I_CALLBACK_USER_COMMAND (=’HANDLE_USER_ACTION’) will also be passed to handle user events. Go to 2.14.
    1.11 Download the file to P_FILEPATH using function module GUI_DOWNLOAD passing GT_ZFIBUE.
    1.12 Exit Program.
    Logic to be implemented in  routine “Handle_User_Action”
    This routine will have the following interface:
    FORM Handle_User_Action  USING r_ucomm LIKE sy-ucomm
                                                               rs_selfield TYPE slis_selfield.
    ENDFORM.
    Following logic will be implemented in this routine:
    1.     If r_ucomm = ‘SAVE’, continue. Else exit.
    2.     Loop through GT_ZFIBUE where SEL_ROW = ‘X’. “Row is selected
    a.     IF GT_ZFIBUE-PROCESSED = ‘X’.
    i.     GT_ZFIBUE-PROCESSEDON = SY-DATUM.
    ii.     GT_ZFIBUE-PROCESSEDBY = SY-UNAME.
    iii.     MODIFY ZFIBUE FROM work area GT_ZFIBUE.
    Endif.
    Endloop.

    Hi Swathi,
    If it's very very urgent then you better get on with it, don't waste time on the web. Chop chop.

  • Creative Alchemy Bug help

    C ?
    i have recently installed the supposed latest software of Creative Alchemy (along with some other Creative media software via Windows Update) for my X-fi sound blaster which is built-in to my PC. after installing it the sound on my PC suddenly disappeared. i do not know the reason why if this might b a bug or the program is in conflict with my other audio softwares (like VLC player, Windows classic media player, media monkey among others). I NEED URGENT HELP PLEASE

    Well try deleting creative alchemy, and then reinstall your card's latest drivers

  • Logical Debugging Help

    Help!
    I've written an application that isn't working exactly like I think it should. The program is supposed to compare two files. If there is a string in file one that is not in file two, then it is supposed to write that string to a third file. To help clarify, the first file is a final list of students that are taking the class. The second file is a list of students that attended for that session (they will be registering electronically). Therefore, I need the program to exam the two lists and tell me who was absent. At the moment, it will work for the first absent person (ie. it writes the student information to the third file so I know they are absent) but it seems to just stop working after that. I'm sure there is a problem with the logic...but I can't figure out where. Below is the code that i'm using. I'd appreciate any assistance!
    Thanks!
    John
    public void actionTaken(){
    try {
    //File with final registration list
    classList = new BufferedReader(new FileReader("classList.txt"));
    //File that has recorded attendance
    studentInput = new BufferedReader(new FileReader("studentInput.txt"));
    // String written to this file if they were absent.
    absent = new BufferedWriter(new OutputStreamWriter(new FileOutputStream("Absent.txt", true)));
    // First while loop examines every line that is in the classList.txt file. Should advance to the next line after the nested while loop executes.
    while ((cLT = classList.readLine()) != null){
    // Nested while loop examines every line in the studentInput.txt
    while ((sIT = studentInput.readLine()) != null){     
    //If statement checks to see if a student has logged in.
    if (cLT.equals(sIT)){
    countTemp++; //countTemp is tripped if the student has logged in.
    studentInput.close(); //Closes file after the entire file has been examined.     
    //If statement checks the countTemp to see if the student registered.
    if (countTemp == 0){ //Writes to the absent file if this line is true.
    absent.newLine();
    absent.write(cLT);
    absent.close();
    countTemp = 0; //reinitialized to test next student name.
    classList.close(); //Closes file after the entire file has been examined.
    } catch (IOException x) {

    You close the student attendance file (studentInput) after you read the first student name from the class list!!!
    Unless the files are going to get really big, I wouldn't do it this way. I'd create a Map of students who attended. Then I'd go through the names list and see if the names are present in the map. That way you could re-use the map for every student name.
    If you don't want to do it that way, you're going to have to make assumptions about the ordering of the two name lists, and whether one is necessarily a subset of the other.

  • BUG:  Help (F1) dialog constantly pops up in dialogs

    Every time I go to use Photoshop CS3 Extended (and I've heard this problem also exists in CS4), the Help (F1) dialog inevitably pops up repeatedly over and over again.  I searched Google and came up with "out of memory" as the "cause" - I checked Task Manager and, out of 4GB RAM, only 800MB in use.  Actually, I also have Visual Studio 2008 installed and about half the time, the VS debugger wanted to hook into CS3 - in other words, Photoshop is crashing but instead of completely bailing, it fires up the Help dialog.  Only by rapidly clicking the close button on the help dialog and then immediately pressing ESC do I manage to get out of this infinite loop.  The main dialog that I've encountered this problem within is the styles dialog for a layer.  Seriously annoying BUG because it happens every single time.  And don't try to tell me it isn't.  I know crappy programming when I see it and this is crappy programming.  Especially since I paid $$$ for this product.
    I have all the latest updates installed according to the software.  Running this on Windows XP SP3, fully patched, all drivers updated.  I seem to recall this product supposedly recently started using the GPU for rendering layers and I also know that the latest Adobe Premiere Elements has issues with NVidia + Asus or something like that (I have an ATI Radeon HD 4870 card on a Gigabyte board - custom-built machine, no overclocking).  This is also a relatively new XP install and CS3 Extended has only been used a few dozen times.  I'm pretty sure I ran into the issue on my first use even.  So wiping the preferences isn't going to do a single bit of good (that seems to be the recommended course of action around here).  I also had the same issue on my older computer (same software) but I chalked it up to it just being a six year old installation of Windows XP.

    John Joslin wrote:
    igeterrors wrote:
    I have all the latest updates installed according to the software.
    What version number is reported in Help >About...  ?
    I'm pretty sure I ran into the issue on my first use even.  So wiping the preferences isn't going to do a single bit of good (that seems to be the recommended course of action around here).
    Not true – the preference files can be corrupted at any time; even before the program is used.
    And a re-install will not affect these files, which are generated independently in another location.
    Adobe Photoshop CS3 Extended 10.0.1.  Using the "Help -> Updates..." feature says there are no updates.  Checking the Adobe site:
    http://www.adobe.com/support/downloads/product.jsp?product=39&platform=Windows
    Also confirms I have the latest CS3 build.
    For your second response:  Then that is a bug too.  There is this little thing called a "Checksum" that has been around since, well, forever.  If the product is so shoddily written that it can blow up its own config at install, then, at the very least, automatically detect the broken config and repair or replace it.
    http://en.wikipedia.org/wiki/Checksum

  • Soundtrack Pro making a LOT of files - used to working in Logic, need help

    So I'm used to working with Logic Studio/7.2/etc, and it's my first foray into working with Soundtrack Pro at work. My questions are this: When I use the razorblade tool (since I can't find an equivalent to the split tool in logic) in soundtrack to cut up a sequence, it seems to be creating a LOT of extra files:
    http://www.1217design.com/pics/stp_question.png is an example of what I mean. Is this supposed to happen? The recorded files themselves were done in FCP and sent to Soundtrack Pro via the Send to STP Multitrack session function.
    What I'm trying to find out is: Is this supposed to be happening? How can I stop this from happening? Are all of these extra files necessary in order to export the final project? And what will happen if I delete them?
    I just want to know because the folder is now 4.71gb for a 30 second audio file (the final aif export is roughly 30mb), and there's over 200 of these extra files that have been created in the process of working on this project.
    If this is what is necessary to work in Final Cut then I won't be able to work with FCP due to size issues (which is a shame as I feel so much more comfortable working within that environment than I do working in FCP).
    Thanks for the help in advance,
    Sean

    Sean A wrote:
    By doing this, will it still create all of those extra files? That's what I'm trying to figure out. Is it just from the blade tool being used?
    For all edits, yeah, baby, STP will generate more files than cows create methane.
    First, I know what works for me, but I'm still learning, so I strongly encourage you to keep a COMPLETE BACKUP of all projects until you know your workflow. Also, you may have Preferences set up differently than I do, so you may not find the same paths as what I describe here.
    When you have an audio file the way you want it, and you're confident that you won't need those edit files again (be SURE) Process > Flatten All Actions (or Audible Actions) and Save that audio file. Then -- as I understand it so far -- you can safely trash all the edits related to that file. (If you use Photoshop or similar visual programs, it's the same idea.)
    During my first few weeks of intensive STP work, my drive grew more and more sluggish, for no reasons known to me. I saw disk space shrinking rapidly. Finally I figured it had to have something to do with STP, so I started searching and eventually I found my edits piling up in home/Documents/Soundtrack Pro Documents, especially (for me) in Edited Media. Since they all came from projects I'd finished and exported to AAC and MP3, I was comfortable trashing them all. Suddenly, whoa, I had an extra 12 GB of disk space available.
    Just keep those edit files until you are CERTAIN that you know what you're doing and that you're DONE. Otherwise, when some project needs one precious little 3MB turn of a phrase, you may find yourself confronting suicidal or homicidal tendencies.
    I welcome further clarification and/or correction from people who know more and can explain it better.
    Best,
    chuck

  • My imac is infected with a bug.Help

    my imac is infected with a bug.Help

    If the problem could be adware or malware, a product you may have inadvertently downloaded
    to do something and then found the computer acted up, there are ways to remove those things.
    However it helps to know what computer model build year and OS X the machine is running.
    Then what the problem is, with detail to describe what it is doing wrong, or not doing right...
    If you have odd issues in Safari browser, there are methods and descriptions here that may help:
    •Remove unwanted adware that displays pop-up ads and graphics on your Mac - Apple Support
    •Adware Removal Guide:
    http://www.thesafemac.com/arg/
    •Tech Guides: (malware, adware, & performance guides)
    http://www.thesafemac.com/tech-guides/
    Until communication is established, we can only wait to see what you can tell us about the problem.
    For the most part, Macs just do not get infected.
    In any event, a reply could help...
    Good luck & happy computing!

  • Logic Enironment HELP!!! External Midi NOT SYNCING UP with Ensoniq ASR-X.

    I need help setting up an environment for my Ensoniq ASR-X. As it Stands, I have been able to get my Axium 49 to trigger sounds in the ASR-x and I have also been able to get Logic to start the ASR's sequencer but for some reason I get latency and a phase effect from the ASR.
    All I want to do is toggle between making the ASR-X a slave so I can record tracks that are made on the machine into logic or make Logic the SLAVE so I can press the play button on the ASR and record my audio and midi at the same time into Logic 8.
    If that's too much, Then please just help me to get my machine into an environment that will work inside logic.
    Thanx!
    P.S.
    Amy advice on how to set up the midi routing between my Axium 49, M-Audio Fast Track Pro USB interface and ASR-X to work together more smoothly would be much appreciated.

    Hi. Thanks for taking the time to reply. I did try that and it didn't solve the problem.
    What I did last night was to trash all my Logic Express files and the Logic pro install files as per the advice on the Logic Pro Troubleshooting Basics page. Then I reinstalled and updated Logic Pro.
    That seemed to fix the problem. It may have been that having a 7.1.1 version of Logic Express and a 7.2 version of Logic Pro on the same machine was causing a confusion over preferences (if that makes sense; I'm not a computer expert). At any rate, I have my insert slots back now and I'm happy.
    Thanks again for taking the time to respond.
    iMac G5 1.8 gHz   Mac OS X (10.4.8)   80g hard drive, Matshita DVD-R UJ-825, 1 GB RAM

  • JList bug help

    there's a bug in JAVA about JList that when you select an item the selectvalue sends it twice
    i got an answer but it doesn't work
    i build a Jlist from a list of items in a DB, first there put in an string[] then in a vector & then in the JList
    can anyone please help me

    Swing related questions should be posted in the Swing forum.
    there's a bug in JAVA about JList that when you select an item the selectvalue sends it twiceThis is not a bug.
    i got an answer but it doesn't workIts nice of you to share this answer. Are we supposed to quess what you have attempted to do.
    can anyone please help me Read the Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/components/list.html]How to Use Lists for a working example on how to write your ListSelectionListener.

  • How do I talk to a human who can help me?

    How do I talk to an apple person who can help me?

    There are no humans here. We are all aliens. If there still are humans at Apple then you can try calling them.
    Apple Store Customer Service at 1-800-676-2775 or visit online Help for more information.
    To contact product and tech support: Apple - Support - Contact Apple Support.
    For Mac App Store: Apple - Support - Mac App Store.
    For iTunes: Apple - Support - iTunes.

Maybe you are looking for

  • Error in running Sample Application

    When I run sample applications I get the following message in a command window: PANIC: YS::ERROR::ILLEGAL IN JspApp at line 239 of .\wrkctx.c abnormal program termination. Any idea what is wrong. I am running OAS 4.0.8.1 on Windows NT. Gajendra Siroh

  • ITunes 7 upgrade fails: The folder path 'C:' contains an invalid character

    I see this message when I try to upgrade to ITunes 7. The path selected is C:\\Program Files\iTunes (the default one). Also tried to manually browse to this directory, in case something was wrong with default path. Also tried running Registry Mechani

  • I bought an app, and it doesn't run

    I downloaded a pay app, " Gastos Celular " , and it doesn't work. When I try to open it, it just shows the app for a second and then, the app shutdown. I restarted my iphone 5, and try to reinstall the app, but nothing change. I wonder if apple can g

  • Movtement type 101: Reason for movement made mandatory

    We have made reason for movement made mandatory for movement type 101. Now, we go for posting 'Service Entry Sheet', system does not allow it to post. While posting service entry sheet, can we enter 'Reason for movement'. Regards,

  • Calling sqlplus from unix script

    hello, I am trying to connect to sqlplus from shell: #!/bin/bash SERVER_NAME=ORA1 sqlplus -s SYS/PASSWD@$SERVER_NAME AS SYSDBA <<EOF select * from v\$version EOF However, the output is: Usage: SQLPLUS [ [<option>] [<logon>] [<start>] ] where <option>