Can anyone spot the error in this script for iTunes?

This AppleScript is designed to copy the Name and Artist of an iTunes track, then populate the Album Artist field with both, separated with an oblique. But when I run the script in iTunes, it only pastes the Artist name in to the Album Artist field and not the whole string.
tell application "iTunes"
if selection is not {} then -- if tracks are selected...
set sel to selection
set numTracks to (length of sel)
set s to "s"
if numTracks is 1 then set s to ""
display dialog "Adds the name of the track and the name of the artist to the Album Artist field." & return & return & (numTracks & " track" & s & " selected.") buttons {"Cancel", "Continue"} default button 2 with title "Create Album Artist" giving up after 30
if gave up of result is true then return
repeat with t from 1 to numTracks
tell contents of item t of sel
set {album artist} to ({get artist} & " / " & {get name})
end tell
end repeat
else
display dialog "No tracks have been selected." buttons {"Cancel"} default button 1 with icon 0 giving up after 30
end if -- no selection
end tell

Hello
Try -
tell item t of sel
set album artist to (get artist) & " / " & (get name)
end tell
instead of -
tell contents of item t of sel
set {album artist} to ({get artist} & " / " & {get name})
end tell
In your original code, the left and right value of assignment are both list, i.e. -
left value = {album artist}
right value = {get artist, "/", get name}
Consequently 'album artist' is assigned to the 1st item of the list at right, which is the result of 'get artist'.
In order to avoid this, don't use list assingment, which is not necessary at all here.
Also, I think you may just tell item t of sel, not contents of item t of sel.
Hope this may help,
H

Similar Messages

  • Can anyone spot the problem with this coding??

    can anyone spot this problem with my program. it keeps saying
    "missing return statement } " with a little arrow beneath the bracket.
    many thanks
    public class Game extends GameInterface
         GameInterface gameInt = new GameInterface();
         String boardString;
         // final static char NOUGHT='O', CROSS='X';
         private int square = 0;
         Player player1 = new Player();
         Player player2 = new Player();
         String firstPlayer, secondPlayer;
         public Game() // Constructor
              boardString = "0123456789";
    public boolean initialise(boolean first)
                   gameInt.setPlayerNames(player1,player2);
              MyPrint.myPrintln("Player one name is " + player1.getName());
              MyPrint.myPrintln("Player two name is " + player2.getName());
              String P1 = player1.getName();
              String P2 = player2.getName();
    }

    It means you declare your method to return something, but you don't actually return anything.

  • Can ANYONE spot the memory leak??

    Hi, I have some code here, and there is a SERIOUS memory leak. Basically, I realized the leak was there when a report tried to execute this 100,000+ times and it bogged the system down to a crawl. Can anyone spot the leak? I will explain the variables below the code:
    char* getDescription(char* chFlag, char* chDEID, char* chKey, int keysize)
    //first, we need to allocate new Byte arrays....
    jbyteArray JchFlag = (*env1)->NewByteArray(env1,1);
    jbyteArray JchDEID = (*env1)->NewByteArray(env1,2);
    jbyteArray JchKey = (*env1)->NewByteArray(env1,40);
    //next, we need to put the correct info in those byte arrays....
    (*env1)->SetByteArrayRegion(env1,JchFlag,0,1,(jbyte*)chFlag); (*env1)->SetByteArrayRegion(env1,JchDEID,0,2,(jbyte*)chDEID); (*env1)->SetByteArrayRegion(env1,JchKey,0,40,(jbyte*)chKey);
    getDescriptionID =(*env1)->GetMethodID(env1,myjclass,"getDescription","([B[B[BI)Ljava/lang/String;");
    result              =(jstring)((*env1)->CallObjectMethod(env1,myjobject,getDescriptionID,JchFlag,JchDEID,JchKey,keysize))  ;   
        returnvalue = NULL;
        if(result == NULL)
           strcpy(holder1, "**********Error Finding Description**********");
        else { //now, we convert the jstring to a char *, so we can return the proper type...                       
                returnvalue=(char*)((*env1)->GetStringUTFChars(env1,result,&isCopy)) ;
                strcpy(holder1,returnvalue);           
                if(isCopy == JNI_TRUE)                    
                    (*env1)->ReleaseStringUTFChars(env1,result,returnvalue);                         
    (*env1)->DeleteLocalRef(env1,result);
    return holder1;
    //return description;
    }//end getDescription function
    -myjclass is global, it gets its value in the initialization.
    -any variables that are not declared in this function are, of course, globally defined.

    Hello Friends,
    I had also tried to use the ReleaseStringUTFChars after making the check of whether it does a copy or not.
    For me in Windows, it works fine most of the time. But when I go on increasing the no. of strings in a Vector of objects to more than 500 or something , then it occasionally fails.
    Just before ReleaseStringUTF, I do have the copied string in char* .
    Soon after Releasing, I do get a junk in the character array.
    I dont know why it happens like this.
    Please advice.
    Everyone suggest ReleaseStringUTF.
    But why it fails in Windows.
    And any one know about how it will behave in Alpha.
    It totally fails in Alpha.
    I could not get the string at all.
    Please help
    LathaDhamo

  • I'm trying to update my iphone 3GS to the 4.3.4 version and I am getting the error message "This version of itunes (version 9.1.1) is the current version.  How do I update my PHONE and why is an itunes update being confused for my iphone?

    I'm trying to update my iphone 3GS to the 4.3.4 version and I am getting the error message "This version of itunes (version 9.1.1) is the current version.  How do I update my PHONE and why is an itunes update being confused for my iphone?

    You need iTunes 10.0 or greater to update your phone...iTunes isn't confused at all. If you're on a Mac, you'll need OS X 10.5.8 or greater to update iTunes to 10.0 or greater.

  • Can anyone spot the syntax error?

    I've been looking at this for about a day now and can't see the error, which is:
    Insert Failed: java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO statement.
      public String addSaleList(SaleList sL) {
        try {
          //Gets the connection to customer database.
          Class.forName(Driver);
          Connection myCon = DriverManager.getConnection(Url);
          System.out.println(sL.saleListID + " " + sL.saleID + " " + sL.product
                             + " " + sL.number);
          String sqlQry = "INSERT INTO salelist(saleID, product, number)" +
              "VALUES(?,?,?)";
          PreparedStatement myStmt = myCon.prepareStatement(sqlQry);
          myStmt.setInt(1, sL.saleID);
          myStmt.setString(2, sL.product);
          myStmt.setInt(3, sL.number);
          myStmt.executeUpdate();
          return "Sale confirmed";
        catch (Exception e) {
          System.out.println("Insert Failed: " + e);
          return ("Insert Failed: " + e);
      public class SaleList {
        public int saleListID;
        public int saleID;
        public String  product;
        public int  number;
        public SaleList(int saleListID, int saleID, String product, int number) {
          this.saleListID = saleListID;
          this.saleID = saleID;
          this.product = product;
          this.number = number;
      SaleList saleL = new SaleList(0,10,"b",2);
      lblStatus.setText(sM.addSaleList(saleL));

    Hey this is the stack trace:
    java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO statement.
         at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6958)
         at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:7115)
         at sun.jdbc.odbc.JdbcOdbc.SQLExecute(JdbcOdbc.java:3150)
         at sun.jdbc.odbc.JdbcOdbcPreparedStatement.execut(JdbcOdbcPreparedStatement.java:214)
    at sun.jdbc.odbc.JdbcOdbcPreparedStatement.executeUpdateJdbcOdbcPreparedStatement.java:136)
         at myproject.SaleModel.addSaleList0 120 a 1
    (SaleModel.java:69)
         at myproject.SalesGUI.actionPerformed(SalesGUI.java:395)
         at java.awt.Button.processActionEvent(Button.java:382)
         at java.awt.Button.processEvent(Button.java:350)
         at java.awt.Component.dispatchEventImpl(Component.java:3615)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)

  • Anyone spot the problem with this program???

    Everytime I compile part of my program it keeps on saying....
    "missing return statement
    ^
    1 error"
    can anyone spot it on my program???
    //GAME
    public class Game2 extends MyPrint
         GameInterface gameInt;
         String s = "?123456789";
         Player player1;
         Player player2;
         public Game2() // Constructor
         public int makeMove()
              gameInt = new GameInterface ();
              player1 = new Player ();
              player2 = new Player ();
              myPrintln("Enter name of player");
              String FP = c.input.readString();
              myPrintln(FP, SYSTEM);
              myPrintln("Enter name of other player");
              String SP = c.input.readString();
              myPrintln(SP, SYSTEM);
              gameInt.pictureBoard(s);
              myPrintln("");
              //boolean whoWon=false;
              int loop = 0;
              while(loop<=6)
                   player1.setName(FP);
                   myPrintln(player1.getName() + " (X) to play");
                   char name1 = c.input.readChar();
                   name1 = c.input.readChar();
                   boolean playTurn = true;
                   gameInt.play(name1, true);
                   gameInt.pictureBoard(gameInt.display());
                   myPrintln("");
                   player2.setName(SP);
                   myPrintln(player2.getName() + " (O) to play");
                   char name2 = c.input.readChar();
                   name2 = c.input.readChar();
                   playTurn = false;
                   gameInt.play(name2, false);
                   gameInt.pictureBoard(gameInt.display());
                   myPrintln("");
                   loop++;
    cheers
    Dave

    Change public int makeMove() into: public void makeMove()
    and the compiler will keep quiet (or finds more things to complain about)

  • Can anyone spot the syntax error of db delete?

    Hi
    I'm trying to get a database delete statement to work for a relations table - it just has studentId and courseId as foreign keys which make up a joint primary key.
    The line is
    db.update("delete from enrollments2 where (studentsid = '" + getStudentId() + "," + " coursesid = " +  getCourseId() + "')");The error is
    ERROR: invalid input syntax for integer: "78, coursesid = 75"Somehow I am putting non integer into an integer... I can't seem to spot the mistake though. Any help would be appreciated.

    The correct syntax I should mention was
    db.update("delete from enrollments2 where (studentsid = '" + getStudentId() + "'and coursesid = '" +  getCourseId() + "')");I'll leave that in for the time being and try to come back to it tonight... its on my todo list.
    Thanks for the snippet by the way, it always saves a lot of time when someone provides a useful snippet towards a solution. I hadn't heard of prepared statements until now too, interesting.
    Message was edited by:
    occams_razor
    -->> missed a 2 out there as enrollments2 is my test case

  • Can anyone point the errors made on my code?

    I want to write a java Applet that implements a Graphical User Interface(GUI) from the the AWT package(not SWING package) to display a Pie Chart. The program should read a string from the user, then determine and display a Pie Chart that represents the percentage of vowels(a,e,i,o,u), consonants and others lettres in that string.
    This is just the interface design. I get an error where i set up the border for the TextArea, and I can only get the button and the TextArea to display is I add the "South" and "North" respectively, while the recganglt won't even show up. Why? Anyone?
    import java.util.*;
    import java.awt.*;
    import java.awt.Graphics.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.applet.*;
    public class PieChart extends Applet implements ActionListener
         private PieCanvas canvas;
         Button pro;
         Panel buttonPanel;
         Color back, colorV, colorC, colorO;
         String c1, c2, c3;
         public void init()
              String in =getParameter("background");
              c1 =getParameter("vowelColor");
              c2 =getParameter("consonantColor");
              c3 =getParameter("otherColor");
              back =Color.black;
              colorV = Color.red;
              colorC = Color.yellow;
              colorO = Color.green;
              if(in!=null)
              back =Color.decode(in);
              setLayout(new BorderLayout());
              setBackground(back);
              canvas =new PieCanvas();
              buttonPanel =new Panel();
              setLayout(new BorderLayout());
              pro =new Button("Process");
              buttonPanel.add(pro);
              pro.addActionListener(this);
              JTextArea textArea =new JTextArea("This is an editable JTextArea " + "that has been initialized with the setText method. " +
                   "A text area is a \"plain\" text component, " +
                   "which means that although it can display text " + "in any font, all of the text is in the same font.", 5, 40);
    textArea.setFont(new Font("Serif", Font.ITALIC, 16));
              textArea.setLineWrap(true);
              textArea.setWrapStyleWord(true);
              JScrollPane areaScrollPane =new JScrollPane(textArea);
              areaScrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
              areaScrollPane.setPreferredSize(new Dimension(10, 50));
              areaScrollPane.setBorder(new SoftBevelBorder(SoftBevelBorder.LOWERED));
              add("North", textArea);
              add("Center", canvas);
              add("South", buttonPanel);
         /*public void actionPerformed(ActionEvent event)
              if(event.getSource()==pro)
                   canvas.repaint();
                   canvas.shape="rect";
                   canvas.shapename="A Rectangle...";
                   canvas.shapecolor=c1;
    class PieCanvas extends Canvas
         public String shape="";
         public String shapename="";
         public String shapecolor="";
         public final int MAX_WIDTH = 300;
         public void paint(Graphics g)
              g.drawRoundRect(70,10,70,50,20,7);
              /*int x, y;
              if(shape.equals("rect"))
                   if(shapecolor!=null)
                        g.setColor(Color.decode(shapecolor));
                   else
                   g.setColor(Color.blue);
                   g.drawRect(MAX_WIDTH/4, MAX_WIDTH/4, MAX_WIDTH/2, MAX_WIDTH/4);
                   g.setColor(Color.white);
                   g.drawString(shapename, MAX_WIDTH/4, MAX_WIDTH/8);*/
    }

    Okay, let's go through Error Identification for Dummies.
    1. Compile the program. Does this produce error messages? If so, what are they?
    2. Run the program. Does this throw exceptions? If so, what are they? Post the stack trace.
    3. If it runs without exception, does it do what you want it to do? If not, what did you want and what did it do? Be precise.

  • Can anyone spot the problem?

    Hey i've been workin on an applet which accepts two boolean equations with 3 variables and returns an answer telling if they are logically equal. When it comes to the PLUS and MINUS cases the program works fine. However in the TIMES and DIVIDE cases it returns at least one wrong answer, despite the fact i'm using the logical AND gate. For example if i enter x*y the program returns
    answer 1 = O, when (x,y)=(0,0)
    answer 2 = 1, when (x,y)=(1,0)
    answer 3 = O, when (x,y)=(0,1)
    answer 4 = 1, when (x,y)=(1,1)
    were answer 2 is wrong using an AND gate.
    Here is the for loop which passes the values
                 for (int y = 0; y < 2; y++)
                   for (int x = 0; x < 2; x++)
                       int d = MyParser.answer(x, y);
                       int doub = MyParser2.answer(x, y);
                       String eq = "";
                       if (d == doub) {
                         equal++;
                         count++;
                         eq = "equal\t";
                       else {
                         count++;
                         eq = "not equal";
                       tb1.append("\nAnswer was " + d + "\t " + eq + " " +
                                  "\t answer 2 was " + doub);
                   }and here is the code for the parser
    package Applet1;
    public final class Parse
      public Parse (String equation)
        parse (equation);
       public int answer(int x,int y, int z)
         return this.value(x,y,z);
       public int answer(int x,int y)
         return this.value(x, y);
       public int answer(int x)
         return this.value(x);
       public int value(int x)
         return val(x, 0, 0);
       public int value(int x, int y)
         return val(x, y, 0);
       public int value(int x, int y, int z)
         return val(x, y, z);
       public String getEquation()
        return equation;
      private String equation;
      private byte[] code;
      private int[] stack;
      private int[] constant;
      private int pos = 0, constantCt = 0, codeSize = 0;
      private static final byte
      PLUS = -1,   MINUS = -2,   TIMES = -3,   DIVIDE = -4,
      UNARYMINUS = -5, VARIABLEX = -6, VARIABLEY = -7, VARIABLEZ = -8;
      private char next()
        if (pos >= equation.length())
        return 0;
        else
        return equation.charAt(pos);
      private void skip()
        while (Character.isWhitespace(next()))
        pos++;
      private int val(int variableX, int variableY, int variableZ)
       try
         int top = 0;
         for (int i=0; i < codeSize; i++)
           if (code[i] >= 0)
             stack [top++] = constant [code ];
    else if (code [i] >= UNARYMINUS)
    int y = stack[--top];
    int x = stack[--top];
    int w;
    int ans = (int) Double.NaN;
    switch (code[i])
    case PLUS: ans = x | y;
    break;
    case MINUS: ans = (x) & (~y);
    break;
    case TIMES: ans = x & y;
    break;
    case DIVIDE: ans = x & ~y;
    break;
    if (Double.isNaN(ans))
    return ans;
    stack [top++] = ans;
    else if (code[i] == VARIABLEX)
    stack [top++] = variableX;
    else if (code[i] == VARIABLEY)
    stack [top++] = variableY;
    else if (code[i] == VARIABLEZ)
    stack [top++] = variableZ;
    catch (Exception e)
    double b = Double.NaN;
    int i = (int) b;
    return i;
    double d2;
    if (Double.isInfinite(stack[0]))
    d2 = Double.NaN;
    int i2 = (int) d2;
    return i2;
    }else
    return stack[0];
    private void error (String message)
    throw new IllegalArgumentException
    ("Parse error: " + message + "\n");
    private int stackUse()
    int s = 0;
    int max = 0;
    for (int i = 0; i < codeSize; i++)
    if (code[i] >= 0 || code [i] == VARIABLEX || code[i] == VARIABLEY || code[i] == VARIABLEZ)
    s++;
    if (s > max)
    max = s;
    } else if (code[i] >= UNARYMINUS)
    s--;
    return max;
    private void parse (String equation)
    if (equation == null || equation.trim().equals(""))
    error ("No Data to be parsed");
    this.equation = equation;
    code = new byte[equation.length()];
    constant = new int [equation.length()];
    parseExpress();
    skip();
    int stackSize = stackUse();
    stack = new int[stackSize];
    byte[] c = new byte[codeSize];
    System.arraycopy(code,0,c,0,codeSize);
    code = c;
    int[] A = new int[constantCt];
    System.arraycopy(constant,0,A,0,constantCt);
    constant = A;
    private void parseExpress()
    boolean neg = false;
    skip();
    parseVaries();
    if (neg)
    code[codeSize++] = UNARYMINUS;
    skip();
    while (next() == '+' || next() == '-')
    char op = next();
    pos++;
    parseTerm();
    if (op =='+')
    code[codeSize++] = PLUS;
    else
    code[codeSize++] = MINUS;
    skip();
    private void parseTerm()
    parseFactor();
    skip();
    while (next() == '*' || next() == '/')
    char op = next();
    pos++;
    parseFactor();
    code[codeSize++] = (op == '*')? PLUS:MINUS;
    skip();
    private void parseFactor()
    parseVaries();
    skip();
    while (next() == '^')
    pos++;
    parseVaries();
    code[codeSize++] = UNARYMINUS;
    skip();
    private void parseVaries()
    skip();
    char ch = next();
    if (ch == 'x' || ch =='X')
    pos++;
    code[codeSize++] = VARIABLEX;
    else if (ch == 'y' || ch == 'Y')
    pos++;
    code[codeSize++] = VARIABLEY;
    else if (ch == 'z' || ch == 'Z')
    pos++;
    code[codeSize++] = VARIABLEZ;
    else if (ch == '(')
    pos++;
    parseExpress();
    skip();
    if (next () !=')')
    error("Right parenthesis needed");
    pos++;
    else if (ch == ')')
    error ("Need a left parenthesis");
    else if (ch == '+' || ch == '-' || ch == '*' || ch =='/' || ch =='^')
    error ("Operator" + ch + "\n found in unexpected position");
    else if (ch == 0)
    error ("Incorrect entry");
    else
    error ("Illegal character " + ch);
    Its not pretty i know and its missing a part to parse Digits and i'm using type casting for strange reasons, but it does work. Except for in these two cases, can anyone see why
    Thanks
    podger

    I'm not even entirely certain what you are trying to accomplish here.
    It looks wrong in any case.
    I can't see anything in the way of debugging, so heres my help for today:
    public void printCode(){
          System.out.println(equation + ":");
          for(int i=0; i<code.length; i++){
            switch(code){
    case PLUS: System.out.print("Plus "); break;
    case MINUS: System.out.print("Minus "); break;
    case TIMES: System.out.print("TIMES "); break;
    case DIVIDE: System.out.print("DIVIDE "); break;
    case UNARYMINUS: System.out.print("-"); break;
    case VARIABLEX: System.out.print("x "); break;
    case VARIABLEY: System.out.print("y ");break;
    case VARIABLEZ:System.out.print("z ");break;
    System.out.println();
    I suggest you parse a couple of expressions, and print out the code generated using this handy little method.
    Parse parse = new Parse("x+y");
    parse.printCode();       
    parse = new Parse("x*y");
    parse.printCode();(x+y) : x y Plus
    (x*y) : x
    I think you will find the problem in your parseExpress method (well one of your problems anyway)
    Also take a look at your ParseTerm function - I'm pretty sure that a * is meant to represent "TIMES" and not "PLUS"
    Did you ever thing about using switch statements rather than ifs?
    Good luck,
    evnafets

  • FileExtract - Can anyone spot the deliberate mistake please?

    Basically, the program includes my add-in along with SAPbouiCOM.dll both embedded.
    The code below now extracts SAPbouiCOM.dll perfectly, but my program is condensed to 1Kb!!!
    I bet there's something obvious here, but I just can't spot it!
    Private Sub ExtractFile(ByVal path As String)
            Try
                Dim AddonExeFile As IO.FileStream
                Dim thisExe As System.Reflection.Assembly
                thisExe = System.Reflection.Assembly.GetExecutingAssembly()
                Dim sTargetPath As String
                Dim sSourcePath As String
                Dim sTargetPathdll As String
                Dim sFile As System.IO.Stream
                sTargetPath = path & "\" & sAddonName & ".exe"
                sSourcePath = path & "\" & sAddonName & ".tmp"
                sTargetPathdll = path & "\" & "Interop.SAPbouiCOM.dll"
                For Each resourceName As String In thisExe.GetManifestResourceNames()
                    sFile = thisExe.GetManifestResourceStream(resourceName)
                    If LCase(resourceName) <> LCase("Addoninstaller.Interop.SAPbouiCOM.dll") Then
                        ' Create a tmp file first, after file is extracted change to exe
                        If IO.File.Exists(sSourcePath) Then
                            IO.File.Delete(sSourcePath)
                        End If
                        AddonExeFile = IO.File.Create(sSourcePath)
                        Dim buffer() As Byte
                        ReDim buffer(sFile.Length)
                        sFile.Read(buffer, 0, sFile.Length)
                        AddonExeFile.Write(buffer, 0, sFile.Length)
                        AddonExeFile.Close()
                        If IO.File.Exists(sTargetPath) Then
                            IO.File.Delete(sTargetPath)
                        End If
                        ' Change file extension to exe
                        IO.File.Move(sSourcePath, sTargetPath)
                    Else
                        ' Create a tmp file first, after file is extracted change to exe
                        AddonExeFile = IO.File.Create(sTargetPathdll)
                        Dim buffer2() As Byte
                        ReDim buffer2(sFile.Length)
                        sFile.Read(buffer2, 0, sFile.Length)
                        AddonExeFile.Write(buffer2, 0, sFile.Length)
                        AddonExeFile.Close()
                    End If
                Next
            Catch ex As Exception
                MsgBox(ex.Message)
            End Try
        End Sub

    Hi Daniel,
    I'm a bit lazy - so I'm not going to go through your code -> I'll give you a code snippet I use (it is basically the same as in the SAP example)
    "in someSub"
    ' Extract exe to installation folder
                ExtractFile(strDest, "YourAddonName", "exe")
                ' Extract dlls to installation folder
                ExtractFile(strDest, "Interop.SAPbobsCOM", "dll")
    "end someSub"
    ' This function extracts the given add-on into the path specified
        Private Sub ExtractFile(ByVal path As String, ByVal FName As String, ByVal ext As String)
            Dim AddonExTFile As IO.FileStream
            Dim thisExT As System.Reflection.Assembly
            Dim file As System.IO.Stream
            Dim sTargetPath = path & "\" & FName & "." & ext
            Dim sSourcePath = path & "\" & FName & ".tmp"
            Try
                Try
                    thisExT = System.Reflection.Assembly.GetExecutingAssembly()
                    file = thisExT.GetManifestResourceStream(sInstallName & "." & FName & "." & ext)
                    ' Create a tmp file first, after file is extracted change to ext
                    If IO.File.Exists(sSourcePath) Then
                        IO.File.Delete(sSourcePath)
                    End If
                    AddonExTFile = IO.File.Create(sSourcePath)
                    Dim buffer() As Byte
                    ReDim buffer(file.Length)
                    file.Read(buffer, 0, file.Length)
                    AddonExTFile.Write(buffer, 0, file.Length)
                    AddonExTFile.Close()
                    If IO.File.Exists(sTargetPath) Then
                        IO.File.Delete(sTargetPath)
                    End If
                    ' Change file extension to exe
                    IO.File.Move(sSourcePath, sTargetPath)
                Catch ex As Exception
                    MsgBox(ex.Message)
                End Try
            Finally
                AddonExTFile = Nothing
                thisExT = Nothing
                file = Nothing
                sTargetPath = ""
                sSourcePath = ""
                GC.Collect()
            End Try
        End Sub
    AND remenber to include your exe and dll as embedded resources in your Add-On installer

  • Can anyone see the video at this website?

    Hi folks,
    I'm using Safari 5.0.3 and I'm trying to watch coverage (live) of the Egyptian protests. When I go to this webpage I can hear the report but I can't see the video. Then a little popup shows up saying there's a plug-in problem. Is there a plug-in I need to have to view this or is this some other problem? Any help is greatly appreciated.
    Renee

    Yeah, here it is. Looks like Thread 9 might be worth taking a closer look at but none of this means anything to me.
    Process: WebKitPluginHost [229]
    Path: /System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app/Contents/MacOS /WebKitPluginHost
    Identifier: com.apple.WebKit.PluginHost
    Version: 6533 (6533.13)
    Build Info: WebKitPluginHost-75331300~12
    Code Type: X86 (Native)
    Parent Process: WebKitPluginAgent [228]
    Date/Time: 2011-02-02 17:58:36.111 -0600
    OS Version: Mac OS X 10.6.6 (10J567)
    Report Version: 6
    Interval Since Last Report: 1191942 sec
    Crashes Since Last Report: 4
    Per-App Interval Since Last Report: 537144 sec
    Per-App Crashes Since Last Report: 4
    Anonymous UUID: BF950AA3-BFFE-429A-A5F7-E93239A73347
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000010
    Crashed Thread: 9
    Thread 0: Dispatch queue: com.apple.main-thread
    0 ...dia.FlashPlayer-10.6.plugin 0x13be9c82 0x139c0000 + 2268290
    1 ...dia.FlashPlayer-10.6.plugin 0x13befb3a 0x139c0000 + 2292538
    2 ...dia.FlashPlayer-10.6.plugin 0x13bf094b 0x139c0000 + 2296139
    3 ...dia.FlashPlayer-10.6.plugin 0x13c16586 0x139c0000 + 2450822
    4 ...dia.FlashPlayer-10.6.plugin 0x13c1c0d8 0x139c0000 + 2474200
    5 ...dia.FlashPlayer-10.6.plugin 0x13dfff17 unregister_ShockwaveFlash + 27591
    6 ...dia.FlashPlayer-10.6.plugin 0x13e6f4e9 unregister_ShockwaveFlash + 483737
    7 com.apple.QuartzCore 0x94442f80 CAOpenGLLayerDraw(CAOpenGLLayer*, double, CVTimeStamp const*, unsigned int) + 1026
    8 com.apple.QuartzCore 0x944438b7 -[CAOpenGLLayer _display] + 512
    9 com.apple.QuartzCore 0x941c8f45 CALayerDisplayIfNeeded + 621
    10 com.apple.QuartzCore 0x941c8310 CA::Context::commit_transaction(CA::Transaction*) + 362
    11 com.apple.QuartzCore 0x941c7f58 CA::Transaction::commit() + 316
    12 com.apple.CoreFoundation 0x97e38e02 __CFRunLoopDoObservers + 1186
    13 com.apple.CoreFoundation 0x97df448a CFRunLoopRunSpecific + 490
    14 com.apple.CoreFoundation 0x97df4291 CFRunLoopRunInMode + 97
    15 com.apple.HIToolbox 0x95712004 RunCurrentEventLoopInMode + 392
    16 com.apple.HIToolbox 0x95711dbb ReceiveNextEventCommon + 354
    17 com.apple.HIToolbox 0x95711c40 BlockUntilNextEventMatchingListInMode + 81
    18 com.apple.AppKit 0x90d9778d _DPSNextEvent + 847
    19 com.apple.AppKit 0x90d96fce -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    20 com.apple.AppKit 0x90d59247 -[NSApplication run] + 821
    21 com.apple.WebKit.PluginHost 0x1895440f 0x18953000 + 5135
    22 com.apple.WebKit.PluginHost 0x1895404d 0x18953000 + 4173
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x98cd3982 kevent + 10
    1 libSystem.B.dylib 0x98cd409c dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x98cd3559 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x98cd32fe dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x98cd2d81 pthreadwqthread + 390
    5 libSystem.B.dylib 0x98cd2bc6 start_wqthread + 30
    Thread 2:
    0 ...dia.FlashPlayer-10.6.plugin 0x13bdfc32 0x139c0000 + 2227250
    1 ...dia.FlashPlayer-10.6.plugin 0x13be007f 0x139c0000 + 2228351
    2 ...dia.FlashPlayer-10.6.plugin 0x13bd4b06 0x139c0000 + 2181894
    3 ...dia.FlashPlayer-10.6.plugin 0x13bef150 0x139c0000 + 2290000
    4 ...dia.FlashPlayer-10.6.plugin 0x13bef9b5 0x139c0000 + 2292149
    5 ...dia.FlashPlayer-10.6.plugin 0x139d8cfc 0x139c0000 + 101628
    6 ...dia.FlashPlayer-10.6.plugin 0x13e0497e unregister_ShockwaveFlash + 46638
    7 ...dia.FlashPlayer-10.6.plugin 0x13e04ab5 unregister_ShockwaveFlash + 46949
    8 libSystem.B.dylib 0x98cda85d pthreadstart + 345
    9 libSystem.B.dylib 0x98cda6e2 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x98cdb0a6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x98cdad62 pthread_condwait + 1191
    2 libSystem.B.dylib 0x98cdc9f8 pthreadcondwait$UNIX2003 + 73
    3 ...dia.FlashPlayer-10.6.plugin 0x13e0487f unregister_ShockwaveFlash + 46383
    4 ...dia.FlashPlayer-10.6.plugin 0x139d8d34 0x139c0000 + 101684
    5 ...dia.FlashPlayer-10.6.plugin 0x13e0497e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x13e04ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x98cda85d pthreadstart + 345
    8 libSystem.B.dylib 0x98cda6e2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x98cad15a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x98cdace5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x98d09ac8 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x13e04841 unregister_ShockwaveFlash + 46321
    4 ...dia.FlashPlayer-10.6.plugin 0x13ba248f 0x139c0000 + 1975439
    5 ...dia.FlashPlayer-10.6.plugin 0x13e0497e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x13e04ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x98cda85d pthreadstart + 345
    8 libSystem.B.dylib 0x98cda6e2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x98cad15a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x98cdace5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x98d09ac8 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x13e04841 unregister_ShockwaveFlash + 46321
    4 ...dia.FlashPlayer-10.6.plugin 0x13cf4822 0x139c0000 + 3360802
    5 ...dia.FlashPlayer-10.6.plugin 0x13e0497e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x13e04ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x98cda85d pthreadstart + 345
    8 libSystem.B.dylib 0x98cda6e2 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x98cdb0a6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x98cdad62 pthread_condwait + 1191
    2 libSystem.B.dylib 0x98cdc9f8 pthreadcondwait$UNIX2003 + 73
    3 ...dia.FlashPlayer-10.6.plugin 0x13e0487f unregister_ShockwaveFlash + 46383
    4 ...dia.FlashPlayer-10.6.plugin 0x13b4821d 0x139c0000 + 1606173
    5 ...dia.FlashPlayer-10.6.plugin 0x13b48a3e 0x139c0000 + 1608254
    6 ...dia.FlashPlayer-10.6.plugin 0x13b48b8b 0x139c0000 + 1608587
    7 ...dia.FlashPlayer-10.6.plugin 0x13e0497e unregister_ShockwaveFlash + 46638
    8 ...dia.FlashPlayer-10.6.plugin 0x13e04ab5 unregister_ShockwaveFlash + 46949
    9 libSystem.B.dylib 0x98cda85d pthreadstart + 345
    10 libSystem.B.dylib 0x98cda6e2 thread_start + 34
    Thread 7: com.apple.CFSocket.private
    0 libSystem.B.dylib 0x98ccc0c6 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x97e34c83 __CFSocketManager + 1091
    2 libSystem.B.dylib 0x98cda85d pthreadstart + 345
    3 libSystem.B.dylib 0x98cda6e2 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x98cea5fe recvfrom$UNIX2003 + 10
    1 libSystem.B.dylib 0x98d0a3c7 recv$UNIX2003 + 54
    2 ...dia.FlashPlayer-10.6.plugin 0x13e1b59b unregister_ShockwaveFlash + 139851
    3 ...dia.FlashPlayer-10.6.plugin 0x13e1a3d5 unregister_ShockwaveFlash + 135301
    4 ...dia.FlashPlayer-10.6.plugin 0x13b47c66 0x139c0000 + 1604710
    5 ...dia.FlashPlayer-10.6.plugin 0x13e0497e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x13e04ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x98cda85d pthreadstart + 345
    8 libSystem.B.dylib 0x98cda6e2 thread_start + 34
    Thread 9 Crashed:
    0 com.apple.VideoToolbox 0x99456a63 VP3VideoDecoder_DecodeFrameCompleteCallback + 43
    1 com.apple.AppleVAFramework 0x9503b978 VP3GetSupportedPixelFormats + 1336
    2 AVAHDVP3.dylib 0x187bf076 HDDecThread_HWSliceDecoder_SampleID::outputframe(int, int, int, int, bool) + 200
    3 AVAHDVP3.dylib 0x187ce7fe slicedecoder_completion_NVIDIAVP2(void*) + 3108
    4 libSystem.B.dylib 0x98cda85d pthreadstart + 345
    5 libSystem.B.dylib 0x98cda6e2 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x98cad15a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x98cdace5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x98d09ac8 pthreadcond_timedwait_relativenp + 47
    3 com.apple.audio.CoreAudio 0x986393c7 CAGuard::WaitFor(unsigned long long) + 219
    4 com.apple.audio.CoreAudio 0x9863c3f9 CAGuard::WaitUntil(unsigned long long) + 289
    5 com.apple.audio.CoreAudio 0x98639cf6 HP_IOThread::WorkLoop() + 1892
    6 com.apple.audio.CoreAudio 0x9863958d HPIOThread::ThreadEntry(HPIOThread*) + 17
    7 com.apple.audio.CoreAudio 0x986394a4 CAPThread::Entry(CAPThread*) + 140
    8 libSystem.B.dylib 0x98cda85d pthreadstart + 345
    9 libSystem.B.dylib 0x98cda6e2 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x98cd2a12 _workqkernreturn + 10
    1 libSystem.B.dylib 0x98cd2fa8 pthreadwqthread + 941
    2 libSystem.B.dylib 0x98cd2bc6 start_wqthread + 30
    Thread 9 crashed with X86 Thread State (32-bit):
    eax: 0x001701a0 ebx: 0x00000000 ecx: 0x001701a0 edx: 0x00170190
    edi: 0x001701a0 esi: 0x00000001 ebp: 0xb0417c78 esp: 0xb0417c40
    ss: 0x0000001f efl: 0x00010206 eip: 0x99456a63 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x00000010
    Binary Images:
    0xe1000 - 0xe4ff2 +com.macromedia.Flash Player.plugin 10.1.102.64 (10.1.102.64) <0E4F768E-4FF0-90B4-7387-C86A3EC48C43> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x783000 - 0x78dff7 com.apple.IOFWDVComponents 1.9.9 (1.9.9) <5B4E7BD7-EF5A-2F5C-DF8E-3D4A7B59F779> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x7c1000 - 0x7ebffb com.apple.QuickTimeIIDCDigitizer 7.6.6 (1756) <96489BA5-A106-36A1-FA42-F7F2D6AA098C> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x7f3000 - 0x7f7ff3 com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <F402CF88-D96C-42A0-3207-49759F496AE8> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x125de000 - 0x125deff7 com.apple.VideoDecodeAcceleration 1.1 (4) <2870DAF2-D95D-CCF7-D0F9-26A0DAD0E69F> /System/Library/Frameworks/VideoDecodeAcceleration.framework/VideoDecodeAcceler ation
    0x126c8000 - 0x126d6fe7 libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <07211458-FD06-9FEF-3DF4-2E5F0304D4BC> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x126da000 - 0x126ecff7 libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <8D606435-1A3C-FE0B-824A-1386809FFFF5> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x1275a000 - 0x12760ffb com.apple.audio.AppleHDAHALPlugIn 1.9.9 (1.9.9f12) <82BFF5E9-2B0E-FE8B-8370-445DD94DA434> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x139c0000 - 0x143adff3 +com.macromedia.FlashPlayer-10.6.plugin 10.1.102.64 (10.1.102.64) <7F846A86-5E18-B6E5-4DA2-E5B46E7CF5B2> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.6.plugin/Contents/MacOS/FlashPlay er-10.6
    0x14446000 - 0x14482fe3 com.apple.QuickTimeFireWireDV.component 7.6.6 (1756) <5723A7A8-2C99-561B-8D87-C8B0716436FA> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1448e000 - 0x144ddfe3 com.apple.QuickTimeUSBVDCDigitizer 2.6.5 (2.6.5) <9DABC446-2388-C209-8912-3A33F6178B18> /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x144e8000 - 0x14660fe7 GLEngine ??? (???) <3A6C5513-7428-2242-2892-B429C72343CB> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x14692000 - 0x14a97fe7 libclh.dylib 3.1.1 C (3.1.1) <745CBD72-DF1F-EC12-BE51-4EEA9847EADF> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x14b0f000 - 0x14b33fe7 GLRendererFloat ??? (???) <1274B762-2FB9-48FE-EAFD-C459B2B4BECC> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x187b7000 - 0x187e4ff3 AVAHDVP3.dylib ??? (???) <F2A201E1-085A-5219-8425-93239B564168> /System/Library/Extensions/AppleVADriver.bundle/Contents/MacOS/AVAHDVP3.dylib
    0x18953000 - 0x1896efe7 com.apple.WebKit.PluginHost 6533 (6533.13) <3332FD2F-AFC1-396F-B2FF-2B58DC6476DA> /System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app/Contents/MacOS /WebKitPluginHost
    0x18977000 - 0x18977ff7 WebKitPluginHostShim.dylib ??? (???) <7FC31FB4-EEF0-6595-36A1-A8C27CFE598A> /System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app/Contents/MacOS /WebKitPluginHostShim.dylib
    0x1acfe000 - 0x1adb7fff com.apple.GeForceVADriver 1.6.26 (6.2.6) <63726FC1-B3AA-90BF-19C6-54E9BB0B0B67> /System/Library/Extensions/GeForceVADriver.bundle/Contents/MacOS/GeForceVADrive r
    0x70000000 - 0x700cbff3 com.apple.audio.units.Components 1.6.3 (1.6.3) <5DA35A22-1B05-6BD3-985A-26A7A2CD6289> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8f0c8000 - 0x8f811ff7 com.apple.GeForceGLDriver 1.6.26 (6.2.6) <518182BB-5A3C-5F4C-3A84-17BB8E385BBF> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0x90003000 - 0x90047fe7 com.apple.Metadata 10.6.3 (507.15) <A23633F1-E913-66C2-A073-E2B174C09B18> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9008e000 - 0x90091fe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x90101000 - 0x90108ff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6877F0D8-0DCF-CB98-5304-913667FF50FA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x90109000 - 0x9010ffff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9015e000 - 0x9028dfe3 com.apple.audio.toolbox.AudioToolbox 1.6.5 (1.6.5) <0A0F68E5-4806-DB51-764B-D97554B801AD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x902df000 - 0x902e1ff7 libRadiance.dylib ??? (???) <10048B4A-2AE8-A4E2-21B8-C6E7A8C5B76F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x902e2000 - 0x9037ffe3 com.apple.LaunchServices 362.2 (362.2) <F3952CAB-322F-A12F-57AF-8B91B1D76DDE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x90490000 - 0x904eafe7 com.apple.CorePDF 1.3 (1.3) <696ADD5F-C038-A63B-4732-82E4109379D7> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x904eb000 - 0x904f2ff3 com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x904f3000 - 0x90500ff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x90501000 - 0x9062ffe7 com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90630000 - 0x90630ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x90632000 - 0x90675ff7 com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x90676000 - 0x906b3ff7 com.apple.SystemConfiguration 1.10.5 (1.10.2) <362DF639-6E5F-9371-9B99-81C581A8EE41> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x906f5000 - 0x906f8ff7 libCoreVMClient.dylib ??? (???) <973B9E1F-70B3-2E76-B14B-E57F306AD2DF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x90800000 - 0x90849fe7 libTIFF.dylib ??? (???) <AC1FC806-F7F4-174B-375F-FE5D6008666C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9084a000 - 0x9084aff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9084b000 - 0x90957ff7 libGLProgrammability.dylib ??? (???) <A077BFEA-19C6-9F48-2F36-8E4E55376F49> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x90958000 - 0x90bcbfe7 com.apple.Foundation 6.6.4 (751.42) <ACC0BAEB-C590-7052-3AB2-86C207C3D6D4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90bcc000 - 0x90becfe7 libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <751955F3-21FB-A03A-4E92-1F3D4EFB8C5B> /usr/lib/libresolv.9.dylib
    0x90bed000 - 0x90ca3ff7 libFontParser.dylib ??? (???) <33F62EE1-E457-C6FD-369E-E86745B94A4B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x90ca4000 - 0x90ca4ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x90ca5000 - 0x90cecffb com.apple.CoreMediaIOServices 134.0 (1160) <D4F40A28-4E31-3210-7C2B-59D8A1903FB2> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x90ced000 - 0x90cfbfe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x90d4f000 - 0x9162fff7 com.apple.AppKit 6.6.7 (1038.35) <ABC7783C-E4D5-B848-BED6-99451D94D120> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91750000 - 0x91a70ff3 com.apple.CoreServices.CarbonCore 861.23 (861.23) <B08756E4-32C5-CC33-0268-7C00A5ED7537> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x91ac2000 - 0x91affff7 com.apple.CoreMedia 0.484.20 (484.20) <105DDB24-E45F-5473-99E1-B09FDEAE4500> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x91b00000 - 0x92a52fef com.apple.QuickTimeComponents.component 7.6.6 (1756) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x92a9a000 - 0x92adeff3 com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x92adf000 - 0x932ce557 com.apple.CoreGraphics 1.545.0 (???) <1AB39678-00D5-FB88-3B41-93D78348E0DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9393c000 - 0x9395bff7 com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x93967000 - 0x93968ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x93969000 - 0x939e9feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x939ea000 - 0x93a92ffb com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x93aa3000 - 0x93aa4ff7 com.apple.audio.units.AudioUnit 1.6.5 (1.6.5) <BE4C2495-B758-AD22-DCC0-56A6791E948E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93b6e000 - 0x93b72ff7 libGFXShared.dylib ??? (???) <9E14BE2F-C863-40E9-41A6-1BE9045663A0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x93b73000 - 0x93b81ff7 com.apple.opengl 1.6.12 (1.6.12) <9F13B279-F289-18AC-5D86-DCD52BAF087D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93c0c000 - 0x93c47feb libFontRegistry.dylib ??? (???) <4FB144ED-8AF9-27CF-B315-DCE5575D5231> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x93c48000 - 0x93c6afef com.apple.DirectoryService.Framework 3.6 (621.9) <F2EEE9D7-D4FB-14F3-E647-ABD32754F557> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93c6b000 - 0x93d24fe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x93d25000 - 0x93d46fe7 com.apple.opencl 12.3 (12.3) <DEA600BF-4F54-66B5-DB2F-DC57FD518543> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x93d47000 - 0x93d53ff7 libkxld.dylib ??? (???) <F0E915AD-6B32-0D5E-D24B-B188447FDD23> /usr/lib/system/libkxld.dylib
    0x93daf000 - 0x93dc3ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x93dc4000 - 0x93e56fe7 com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x93e5e000 - 0x93e68fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93e69000 - 0x93f33fef com.apple.CoreServices.OSServices 357 (357) <CF9530AD-F581-B831-09B6-16D9F9283BFA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x93f3b000 - 0x93f3dff7 com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93f46000 - 0x93faaffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93fab000 - 0x941a8ff7 com.apple.JavaScriptCore 6533.19 (6533.19.1) <85A6BFDD-CBB6-7490-748D-8EA8B9B7FDD8> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x941b3000 - 0x941bdffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x941be000 - 0x94529ff7 com.apple.QuartzCore 1.6.3 (227.34) <CC1C1631-D8D1-D416-171E-A1683274E479> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9452a000 - 0x9456cff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9456d000 - 0x94591ff7 libJPEG.dylib ??? (???) <46AF3A0F-2B8D-87B9-62D4-0905678A64DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94592000 - 0x94597ff7 com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x94598000 - 0x9459bff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <B624AACE-991B-0FFA-2482-E69970576CE1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x946c1000 - 0x9489cff3 libType1Scaler.dylib ??? (???) <A7AB841A-3F40-E0B8-ADDD-44014C7287C9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x9489d000 - 0x948deff7 libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <16DAE1A5-937A-1CA2-D98F-2AF958B62993> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x948df000 - 0x94925ff7 libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x94926000 - 0x94d3cff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x94d3d000 - 0x94d4dff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94d4e000 - 0x94d9eff7 com.apple.framework.familycontrols 2.0.2 (2020) <AF7F86F1-F7BF-CBA8-7A4A-D8F7A19F9601> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x94d9f000 - 0x94e4dff3 com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94e4e000 - 0x94ea6fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x94ea7000 - 0x94eabff7 IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x94eac000 - 0x94edefe3 libTrueTypeScaler.dylib ??? (???) <6E9D1A50-330E-F1F4-F93D-9ECC8A61B21A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x94f1b000 - 0x94f33ff7 com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x94fa9000 - 0x94fd1ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x94fd2000 - 0x94fd2ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94fd3000 - 0x9504efff com.apple.AppleVAFramework 4.10.12 (4.10.12) <89C4EBE2-FE27-3160-0BD1-D0C2ED5F3605> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x951ec000 - 0x9526effb SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9526f000 - 0x9531fff3 com.apple.ColorSync 4.6.3 (4.6.3) <AA1076EA-7665-3005-A837-B661260DBE54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x95320000 - 0x95381fe7 com.apple.CoreText 3.5.0 (???) <BB50C045-25F5-65B8-B1DB-8CDAEF45EB46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x95382000 - 0x953cffeb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x955ad000 - 0x9567efe3 ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <8FDB4C40-D453-DA53-2A66-9A53998AB23C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x9567f000 - 0x956dcff7 com.apple.framework.IOKit 2.0 (???) <A769737F-E0D6-FB06-29B4-915CF4F43420> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x956dd000 - 0x95a01fef com.apple.HIToolbox 1.6.4 (???) <4699C8BB-DE74-C530-564B-D131F74C9B54> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x95a6d000 - 0x95a75ff7 com.apple.DisplayServicesFW 2.3.0 (283) <48D94761-7340-D029-99E3-9BE0262FAF22> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x95b6b000 - 0x95b9eff7 com.apple.AE 496.4 (496.4) <7F34EC47-8429-3077-8158-54F5EA908C66> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x95b9f000 - 0x95bb1ff7 com.apple.MultitouchSupport.framework 207.10 (207.10) <E1A6F663-570B-CE54-0F8A-BBCCDECE3B42> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x95bb2000 - 0x95bc6fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x95bc7000 - 0x95bd8ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x95bd9000 - 0x95c52ff7 com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x95c53000 - 0x95d96fef com.apple.QTKit 7.6.6 (1756) <4D809734-4E1B-8E18-C825-86C5422FC3DC> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x95d97000 - 0x95e32ff7 com.apple.ApplicationServices.ATS 4.4 (???) <ECB16606-4DF8-4AFB-C91D-F7947C26040F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95e4c000 - 0x95ea2ff7 com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x95ea3000 - 0x96025fe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <35DB7644-0780-D2AB-F6A9-45F28D2D434A> /usr/lib/libicucore.A.dylib
    0x96026000 - 0x96069ff7 libGLU.dylib ??? (???) <BB66EDB2-D5FE-61C9-21BE-747F9862819C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x960c2000 - 0x960c2ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x960c3000 - 0x9615bfe7 edu.mit.Kerberos 6.5.10 (6.5.10) <8B83AFF3-C074-E47C-4BD0-4546EED0D1BC> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96573000 - 0x965a3ff7 com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x965a4000 - 0x965f5ff7 com.apple.HIServices 1.8.2 (???) <F6EAC2D1-902A-9374-FC4B-43B50E054416> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x965f6000 - 0x96664ff7 com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x96665000 - 0x96665ff7 com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x970b2000 - 0x970d9ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x970f3000 - 0x971cefeb com.apple.DesktopServices 1.5.9 (1.5.9) <CED00AC1-924B-0E45-7D5E-1CEA8929F5BE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x97416000 - 0x974c0fe7 com.apple.CFNetwork 454.11.5 (454.11.5) <D8963574-285A-3BD6-6B25-07D39C6F67A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x974c1000 - 0x974d1ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x974d2000 - 0x975d4fef com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x975fc000 - 0x975ffffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9761e000 - 0x9764fff7 libGLImage.dylib ??? (???) <E3EC8E92-4DDD-E7B8-3D38-C5A5160A4930> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x976f0000 - 0x977cdff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x97806000 - 0x9780cfe7 com.apple.CommerceCore 1.0 (6) <41C2A87D-93D8-56C1-9292-0400699F23C1> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x9780d000 - 0x979c6feb com.apple.ImageIO.framework 3.0.4 (3.0.4) <C145139E-24C4-5A3D-B17C-809D528354B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x979c7000 - 0x97a06ff7 com.apple.ImageCaptureCore 1.0.3 (1.0.3) <7E02D104-F31C-CF72-71B4-DA5DF7B48337> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x97a0d000 - 0x97d06fef com.apple.QuickTime 7.6.6 (1756) <F08B13B6-31D7-BD18-DA87-A0CDFCF13B8F> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x97db8000 - 0x97f33fe7 com.apple.CoreFoundation 6.6.4 (550.42) <C78D5079-663E-9734-7AFA-6CE79A0539F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x97f34000 - 0x97f35ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x97f36000 - 0x97f5cffb com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x97f5d000 - 0x97f68ff7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <CB2510BD-A5B3-9D90-5917-C73F6ECAC913> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x97f75000 - 0x98076fe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x980d7000 - 0x98115ff7 com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x98116000 - 0x98180fe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x98181000 - 0x98185ff7 libGIF.dylib ??? (???) <DA5758A4-71B0-DD6E-7402-B7FB15387569> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x98186000 - 0x982b2ffb com.apple.MediaToolbox 0.484.20 (484.20) <D67788A2-B772-C5DB-B12B-173B2F8EE40B> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x982b3000 - 0x982b3ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x982b4000 - 0x982edff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <E0D512DD-365D-46A0-F50C-435BC250424F> /usr/lib/libcups.2.dylib
    0x98307000 - 0x983b4fe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x983b5000 - 0x98618fff com.apple.security 6.1.1 (37594) <B6F2A8BF-C1B7-A0E2-83FB-4FF265E9BDDC> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x98619000 - 0x98693fff com.apple.audio.CoreAudio 3.2.6 (3.2.6) <F7C9B01D-45AD-948B-2D26-9736524C1A33> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x98694000 - 0x98703ff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x98706000 - 0x9883dff7 com.apple.CoreAUC 6.04.04 (6.04.04) <050D9D16-AAE7-3460-4318-8449574F26C7> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9883e000 - 0x9883eff7 com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9883f000 - 0x9883fff7 com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x98840000 - 0x9884bff7 libGL.dylib ??? (???) <48405993-0AE9-292B-6705-C3525528682A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x98859000 - 0x98874ff7 libPng.dylib ??? (???) <E14178E0-B92D-94EA-DACB-04F346D7534C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x98971000 - 0x9897aff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9897b000 - 0x98ba6ff3 com.apple.QuartzComposer 4.2 ({156.28}) <08AF01DC-110D-9443-3916-699DBDED0149> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x98ba7000 - 0x98cabfe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <BDEFA030-5E75-7C47-2904-85AB16937F45> /usr/lib/libcrypto.0.9.8.dylib
    0x98cac000 - 0x98e53ff7 libSystem.B.dylib 125.2.1 (compatibility 1.0.0) <62291026-D016-705D-DC1E-FC2B09D47DE5> /usr/lib/libSystem.B.dylib
    0x98e80000 - 0x98e9cfe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x98f14000 - 0x98f29fff com.apple.ImageCapture 6.0.1 (6.0.1) <E7ED2AC1-834C-A44E-531E-EC05F0496DBF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x98f2a000 - 0x9935fff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x993cc000 - 0x99885ffb com.apple.VideoToolbox 0.484.20 (484.20) <E7B9F015-2569-43D7-5268-375ED937ECA5> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9988e000 - 0x99a70fff com.apple.imageKit 2.0.3 (1.0) <B4DB05F7-01C5-35EE-7AB9-41BD9D63F075> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0xba900000 - 0xba916ff7 libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <B339B85B-1B6D-81D8-1281-7B8C8A517329> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe7 libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <EF3E3210-927F-DB9F-4CD4-4039A2AE2F84> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <62291026-D016-705D-DC1E-FC2B09D47DE5> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,4, BootROM MBP53.00AC.B03, 2 processors, Intel Core 2 Duo, 2.53 GHz, 4 GB, SMC 1.49f2
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.36.1)
    Bluetooth: Version 2.3.8f7, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MJA2250BH FFS G1, 232.89 GB
    Serial ATA Device: HL-DT-ST DVDRW GS23N
    USB Device: Internal Memory Card Reader, 0x05ac (Apple Inc.), 0x8403, 0x26500000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0x24400000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0x04600000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8213, 0x06110000

  • Can't find the error on this small code :S

    Hi , i've just compiled this code and i can't find what is wrong! :(
    The compiler is ok, but the output print its not what i was expect.
    If u insert 121 (capicua) the answer is: This number its not a capicua :S
    what is wrong?
    thanks!!
    Note: Don't create another code plz.
    import java.io.*;
    public class Capicua {
         public static void main (String[] args) throws Exception {
              int digit, num;
              int inverted = 0;
                   BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
                   System.out.print(" Insert number: ");
                   num=Integer.parseInt(br.readLine().trim());
                   while(num > 0) {
                   digit = num % 10;
                   num = num /10;
                   inverted = inverted * 10 + digit;
                   if(num == inverted) {
                        // to be capicua the number inserted must
                        //be equals to the inverted
                        System.out.println("Its Capicua!");      
                   }else{
                        System.out.println("This number is not a Capicua!");
    }

    Please use code tags (see button above posting box) when posting code. It makes it much easier to read.
    So, it appears that capicua means palindrome--the number reads the same backwards and forwards. Is that correct?
    There are ways of doing this without converting the 121 to a number, but I won't explain that unless you want.
    I think your problem is this line:
    if (num == inverted)
    You have changed "num" within your while loop. Therefore, num is no longer the original input 121.
    Try adding println statements like this to watch what happens:
    while(num > 0) {
      digit = num % 10;
      num = num /10;
      inverted = inverted * 10 + digit;
      System.out.println("digit = " + digit);
      System.out.println("num = " + num);
      System.out.println("inverted = " + inverted);
    }

  • Can anyone spot any errors....

    <%
         // +------------------------------------------------------------------------
         // | LEARNING STYLE DATA QUERY
         // +------------------------------------------------------------------------
         boolean learningstyle = false;
         String lstyleresult = "";
         int vscore=0;
         int ascore=0;
         int kscore=0;
         for (int i=0;i<visualnos.length;i++)
                   if(arraydata[Integer.parseInt(visualnos)-1].equals("Y"))
                        vscore++;
         for (int i=0;i<auditorynos.length;i++)
                   if(arraydata[Integer.parseInt(auditorynos[i])-1].equals("Y"))
                        ascore++;
         for (int i=0;i<doingnos.length;i++)
                   if(arraydata[Integer.parseInt(doingnos[i])-1].equals("Y"))
                        kscore++;
         lstyleresult = "Visual: "+vscore+"/"+visualnos.length+"<br /><br />Audio: "+ascore+"/"+auditorynos.length+"<br /><br />Kinetic: "+kscore+"/"+doingnos.length;
         RS=Stmt.executeQuery("select userid from learningstyle where userid='"+sr_studentid+"' order by submitted desc,id desc");
         if (RS.first())
              PreparedStatement statement = ConnStar.prepareStatement("select data from learningstyle where userid='"+sr_studentid+"' order by submitted desc,id desc");
              learningstyle = true;
              String data = RS.getString("data");
              String[] arraydata = data.split(",");
              String[] visualnos = {"4","6","8","12","13","17","22","24","25","29","33","35","37"};
              String[] auditorynos = {"1","3","9","11","14","16","18","21","26","28","32","36","38"};
              String[] doingnos = {"2","5","7","10","15","19","20","23","27","30","31","34","39"};
         else if
              PreparedStatement statement = ConnStar.prepareStatement("select data from learningstyle where userid='"+sr_studentid+"' and input_type='manual' order by submitted desc,id desc");
              learningstyle = true;
              String data = RS.getString("data");
              String[] arraydata = data.split(",");
              String[] visualnos = {"1","2","3","4","5","6","7","8","9","10","11","12","13"};
              String[] auditorynos = {"14","15","16","17","18","19","20","21","22","23","24","25","26"};
              String[] doingnos = {"27","28","29","30","31","32","33","34","35","36","37","38","39"};
         else
              learningstyle = false;
    %>
    // line 77
    sorry to annoy everyone.... its bugging me it wont work... the following are the two errors im getting.. line 77 at the bottom of the code
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: 0 in the jsp file: /profiles/includes/learning_style_profile.jsp
    Generated servlet error:
        [javac] Compiling 1 source file
    E:\jakarta-tomcat-5.0.18\work\Catalina\localhost\star\profiles\learning_profile_jsp.java:1602: '(' expected
                    ^
    An error occurred at line: 77 in the jsp file: /profiles/includes/learning_style_profile.jsp
    Generated servlet error:
    E:\jakarta-tomcat-5.0.18\work\Catalina\localhost\star\profiles\learning_profile_jsp.java:1621: illegal start of expression
          out.write("\r\n\r\n");
                               ^
    2 errors

    You have written an "else if" without any test
    statement
    i.e. you have written:
    if (something = true){
    // Some code here
    else if {
    // Some code here
    else {
    // More code
    code]
    Can you see the problem with the second part of the
    whole if statement?
    It should be:if (something = true) {
    // Some code
    else if (somethingelse = true) {
    // More code
    else {
    // etc etc
    code]
    Please note the above is psuedo code and you
    shouldn't test for true like I have above.
    Message was edited by:
    c0demonk3yThose should be == comparisons, not = assignments.

  • Can anyone provide the VI of current measurement for Agilent34901A channel21 and 22?

    I want to measure the current by the Agilent34901A channel21 or 22. The HP34901A installed on the Agilent34970A is connected to the computer via GPIB Bus. Does anyone have the subvi for this measurement?

    If you have the 34970A driver from NI, open HP34970A EZ Voltage.vi. On the diagram, the first string you'll see is "MEAS:VOLT:". Change this to "MEAS:CURR:". Save the modified VI as HP34970A EZ Current.vi. If you want, you can add this VI to HP34970A Single Point.vi just by adding an item to the "Function" slider and adding a new case.

  • Can you spot any glitches in this workflow for my projects

    I have been going back and forth on this topic of what format to use for my projects and have proposed various solutions which have not worked out because of some issue I overlooked. After much thought and a lot of reading, I came up with this one: I want to produce dvds for computer viewing only, using FCP HD and DVDSP 3. I'm using graphic sources ONLY, created in Motion 2 and Photoshop CS2 with music files created in Logic Pro 7, no footage. I plan to use the DVPro HD 720p 24 for the format in FCP and Motion. Since I am not using captured footage in the projects, I thought I could use just the portion of the area of the 720p screen that I would need for DVD output, which is 720 x 480, by marking it off with guides. All of the graphics from Photoshop and Motion would be brought in at the regular 720p dimensions but the content would be only in the same 720 x 480 area of the screen. When the project is done I would export it as a Quicktime movie at full size and bring it into Compressor 2. I would then use the setting for preparing it for DVDSP but I would crop the size to just that same 720 x 480 area where I limited my content. My hope is that because the dimensions are those for NTSC DV, that my pixel aspect ratio will remain square and not getsquished, and with progressive scanning it will look fine on a computer screen. Does this plan sound like it will accomplish the result I'm looking for?

    The lumina shifts out of the wipes are a result of the H.264 encoding...it isn't on the original footage. I can't figure that one out...I tried exporting out of FCP, converting with QT AND Compressor and got the same result. Scratching my head there...
    The 3-way CC was good in many cases, but when it came to the marsh grasses, it had some difficulty. Mainly in separating the blues and greens, and getting rid of the general haze of the shot. MB and CF were able to dig out the colors, but yes, Magic Bullet had more...vivid sepiad colors. That is a result of using the Color Reversal template and futzing with it, and my inexperience with MB. Color Finesse was much more familiar to me, and I was able to get STUNNING results. This is why I chose that shot for CC, because it appeared to need the most work.
    I was able to get better results with the 3-way with other footage. Most of the other footage was shot with a distinct blue tint to it, but that is easily fixable.
    I don't fault my DP too much. I asked for test footage to play with, and he did a days work, on his own time, for me to work on. The other stuff I was previously working on was for a project I am just wrapping up, and the footage was not allowed to be posted.
    All in all I feel this footage has a very cinematic feel. It is easy to work with at full resolution, doesn't take up all that much space and very very pretty to look at. The big issue that will arise is the fact that the 23.98 timeline offers ONLY NDF timecode...not DF. I have to deliver a 59.94 d5 at 10-bit uncompressed, and that allows for DF, but my timing will have to be adjusted. Just how it will is something I will be exploring as the projects plods on.
    Shane
    "There's no need to fear, UNDERDOG is here!"

Maybe you are looking for

  • Mail doesn't pass on geolocation

    Lion Mail doesn't pass on geolocation information from images. If I send myself a geolocated image from my iPhone, view it in Lion Mail, and then either right click and send to iPhoto or choose to save to iPhoto that the geolocation information doesn

  • Versions Set not saving in Organizer 9

    Using Organizer and PSE 9 on a Mac, about 13,000 photos in single catalog.  Had been using Versions Sets with no problem, but now the edited image is not being added to the version set.  It works okay if I do the edit in Organizer - the edited versio

  • Object Model - cl_salv_hierseq_table Check box in the parent entry

    Hi, I am doing a report with cl_salv_hierseq_table (Object Model) , in that i  need to put a check box in the t_table_level1 level. I know that SALV is not have an option to edit. My requirement is from the list user select multiple parent entries (i

  • MapViewer Bean Feature Selection

    I have written a java applet that uses the Mapviewer bean to set up and render a map based on Oracle spatial data. So far, so good. I have written tools to Zoom in, Zoom out, Pan etc etc. I now need to extend this as follows: 1. Given the primary key

  • Cannot download ACR 4.41

    I have been trying for the last hour to download ACr 4.41 from the link given on this page. I have tried three different computers, 2 x Xp1 x Vista, and two different browsers, I.E and Firefox. I get the the download button but all that happens id a