PLEASE HELP CREATE 3 LETTER DIAMOND SHAPED MONOGRAM in Illustrator!!!

I have been able to fill a shape with text by using Object>Envelope Distort>Make with Top Object...
HOWEVER, when I fill something like a diamond shape, it looks VERY odd. Does anyone know a different way to fill a shape with THREE LETTERS? I want to make a block diamond shape monogram.
Thanks!!!!

You'll need to draw something like that with the Pen tool. I think I've seen fonts that can help, with three version of each letter, one for each position. JFGI.

Similar Messages

  • Please help- creating rollover sound

    Hi everyone, I really hope you can help me.
    What I want to create is a group of 13 images and upon rollover each image would make a different sound. I don't want the sound to stop once you move the mouse though because I want a few different sounds playing at the same time. At this point I don't really care whether they play for their whole duration or just for another 15 seconds! I'm doing this for Uni and the guy said it wasn't that hard.
    I have some basic knowledge in HTML code, but I am a complete newbie to flash. I've downloaded Flash C5 and that's about as far as I've got! I'm not entirely sure which template if any I would need to use.
    If some kind soul out there will help me with my Uni work I'll be ever grateful! I can't pay back in knowledge since I don't know anything, but I could bake you cookies?!

    Break the project down into sections and learn to get each section working before you try to put it all together.
    So first, learn to convert an image into a movie clip...
    Second, apply an action to that movie clip.... and since movie clips can behave like buttons, the action would be an on RollOver.... so on rollover....do this.....
    separately learn to create a movie clip that simply plays a sound..... that's all it does.
    Only after each section is working separately , combine them...
    Image which is a movie clip... that then has a rollover action applied to it, and that rollover plays a sound.
    Exact actionscript will depend on if you are using AS2 or AS3, but by breaking it down, tons of stuff on Google about each topic.
    Best of luck,
    Adninjastrator

  • Please help create this matrix report

    Hi,
    I'm using Reports6i.
    I want to create a matrix report like below.
    Country            JUN2008       JUL2008
                      Teu    Feu     Teu   Feu
    INDIA             13        9       1     10  .....
    .With the query i've written, i get the data like
    Country      Dt       Cnt       Typ
    IN     JUN2008           9             Feu
    IN     JUN2008           13     Teu
    IN     JUN2008           10             Feu
    IN     JUN2008           1     TeuPlease Help
    Edited by: Divya on Jun 21, 2011 5:55 AM

    Which tool are you using to create the report Divya?
    You may use PIVOT to create the matrix like report.
    For Ex;
    SELECT *
    FROM (SELECT product_code, quantity
    FROM pivot_test)
    PIVOT (SUM(quantity) AS sum_quantity FOR (product_code) IN ('A' AS a, 'B' AS b, 'C' AS c));
    A_SUM_QUANTITY B_SUM_QUANTITY C_SUM_QUANTITY
    210 90 160

  • Please help creating data model where query has & in select

    Below is the actual code of the part of select having a problem.
    When I had '&' instead of chr(36), a window opens up saying 'Please enter values for lexical references in sql then has *&' and empty box and check box then flex field.
    So I replaced '&' with chr(36) below
    After I put the code in, it is asking me the question ====>
    'Do you want to create a bind parameter? : //wwwapps.ups.com/WebTracking/processInputRequest?sort_by
    ,'=HYPERLINK("http://wwwapps.ups.com/WebTracking/processInputRequest?sort_by=status'||CHR(36)||'tracknums_displayed=1'||CHR(36)||'TypeOfInquiryNumber=T'||CHR(36)||'loc=en_US'||CHR(36)||'InquiryNumber1='||mbl.tracking_number||CHR(36)
    ||
    'track.x=0'||CHR(36)||'track.y=0","'||mbl.tracking_number||'")' "Tracking Link (Click to Track)",

    Hi,
    Looks like no more problems creating data models after replacing the '&' and ':' with their chr(x) counterparts. But when they I run the report, it shows the hyperlink code below instead of the hyperlink tracking number they can just click on. Also when I try the query in toad, it works.
    =HYPERLINK("http://wwwapps.ups.com/WebTracking/processInputRequest?sort_by=status&tracknums_displayed=1&TypeOfInquiryNumber=T&loc=en_US&InquiryNumber1=&track.x=0&track.y=0","")

  • Someone please help creating comparable objects

    I have been given a second part to an assignement that wants me to create a program for comparing student obejects. The assignment description and code are below. I can' t see how the find to method interlocks with the findsmallest because find smallest is already finding the smallest value. I also don't see where the new diffinitions for UMUC_Comparable goes.
    In the second part of this project, you will also find the smallest element in the array, but now the array will be of UMUC_Comparable objects. It will use the compareTo method to compare objects to find the smallest one. This method will also have the name findSmallest, but will take an array of UMUC_Comparable objects. This findSmallest method will have a definition as follows:
    UMUC_Comparable findSmallest(UMUC_Comparable[] array);
    The findSmallest method will use the compareTo method in the UMUC_Comparable interface. You will be using it with the Student objects from module V, section III, so you do not have to rewrite the compareTo method; you can simply use the one defined in the Student object in module V.
    For the second part of this project, you should:
    Create a main that creates an array of Student objects, as in section III of module V. You can use the same array as defined module V. You do not have to read these objects in from a file.
    Call the findSmallest method to find the smallest Student object.
    Use the getName and getAverage methods in the Student object to print out the smallest object.
    Note that the return from the method is a UMUC_Comparable object, not a Student object, so you must cast the returned object to a Student object before printing it out. You can do so as follows:
    Student[] students ....; // Fill in the declaration // of the student array.
    Student s = (Student)findSmallest(UMUC_Comparable[] array);
    /* File: Student.java
    * Author: Darrell Clark
    * Date: December 3, 2006
    * Purpose: Shows how to find the smallest Int value in an array
    import java.util.*;
    import java.io.*;
    public class Student {
    private int average;
    private String name;
    /* public constructor. Note that because no default
    * constructor exists, Student objects will always
    * be constructed with a name and an average.
    public Student(String name, int average) {
    this.average = average;
    this.name = name;
    } // end method
    * return name
    public String getName() {
    return name;
    } // end method
    * return average
    public int getAverage() {
    return average;
    } // end method
    * compare to method for locating smallest value
         public static int findSmallest(int[] array) {
              int min = Integer.MAX_VALUE;
              for (int i = 1; i < (array.length); i++) {
                   if (array[i] < min)
                        min = array;
              return min;
    * compare student value
    public int compareTo(Student student) {
    return (this.average - student.average);
    } // end method
         public static void main(String[] args) {
    Student[] studentArray = { new Student("Tom", 87),
    new Student("Cindy", 100),
    new Student("Pat", 75),
    new Student("Anne", 92),
    new Student("Matt", 82)};
    for (int i = 0; i < studentArray.length; i++) {
    System.out.println(studentArray[i].name + " " +
    studentArray[i].average);
    } // end for
    } // end method
    } // end class

    Were you given the UMUC_Comparable interface, or do you have to write it?
    (1) In the latter case, that is where to start. It includes the method
    compareTo(UMUC_Comparable). This will almost certainly return an
    int - check out the API documentatuon for the Comparable interface.
    (2) What I think the assignment is asking you to do is rewrite the Student
    class so that it implements UMUC_Comparable.
    Then you write the findSmallest(UMUC_Comparable[]) method. There is
    already a static method like this in the (existing) Student class. It's anybody's
    guess where this method is supposed to go - perhaps you could ask
    whoever gave you the assignment. The problem is that it can't go in
    UMUC_Comparable because that's an interface. And it doesn't really belong
    in Student because it is a sort of utility function that deals with any
    UNUC_Comparable array.
    (3) Let's assume that findSmallest(UMUC_Comparable[]) goes in the
    Student class. So you replace the existing findSmallest() with the new one.
    The new one goes through the array using the UMUC_Comparable's
    compareTo() method to find the smallest UMUC_Comparable.
    (4) Finally in main() you create a test array, use the newly rewritten
    findSmallest() to find the smallest Student, and print their name and
    average.

  • Please help create folder to remove .htm from URL

    I wanted to remove the .htm from a specific URL on my site. I
    created a new folder named 'careers' and placed my original
    dreamweaver page in the folder. I can now access that page / url by
    typing www.nameofmysite.com/careers but a page comes up first that
    lists 'parent directory' in addition to the actual page that I want
    to direct the traffic to. How do I remove this unecessary page that
    contains the parent directory and have traffic go directly to
    carrers page without having to type in .htm? Any help would be
    appreciated.

    Place your careers.htm page inside a Folder called Careers.
    Rename your careers.htm page index.htm. The server will look
    for the index
    page. If it doesn't find one, it will list the folder's
    contents.
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "below average" <[email protected]> wrote in
    message
    news:ffl7ba$8dm$[email protected]..
    > I wanted to remove the .htm from a specific URL on my
    site. I created a
    new
    > folder named 'careers' and placed my original
    dreamweaver page in the
    folder.
    > I can now access that page / url by typing
    www.nameofmysite.com/careers
    but a
    > page comes up first that lists 'parent directory' in
    addition to the
    actual
    > page that I want to direct the traffic to. How do I
    remove this
    unecessary
    > page that contains the parent directory and have traffic
    go directly to
    carrers
    > page without having to type in .htm? Any help would be
    appreciated.
    >

  • PLEASE HELP itunes wont let me burn a disk

    Is there a way to burn the playlist on your ipod.
    Also Im having trouble burning music..When i go to place them in my playlist it wont let me put them in there...
    why???????????

    I have the same error and cannot burn music that was purchased from itunes or uploaded from my own cds

  • Please Help: create a procedure that needs a sys view

    Hi gurus,
    I am trying to create a stored procedure that opens a cursor for a select on a view owned by sys, but the errors says table or view does not exist. I can select * from the view (sys.mgw_gateway) from SQL*Plus or any other tool. Anyone have an idea why I get the ORA-00942: table or view does not exist error when I try to create a procedure? Here is the simple SQL statement for the procedure (I just want the users to see if the messaging gateway is running) and that's all in it.
    open p_MGWStatus for
         select AGENT_STATUS, AGENT_PING, to_char(LAST_ERROR_DATE, 'mm/dd/yyyy hh24:mi') as LastErrorDate,
         LAST_ERROR_MSG
         from sys.mgw_gateway;
    Thanks a lot.
    Ben

    Hi
    To allow the view owned by sys in a procedure, you have to grant select on that particular view to the owner of that procedure.
    Suggestion: may or may not be acceptable: create your own view in system schema (if it has the privilege to select that view else in sys schema) with the required column of the sys view and grant this newly created view to the owner of the procedure.
    Regards
    Opps! Very late reply
    Message was edited by:
    Anurag Tibrewal

  • HT1766 Dear Friends,Hi! please help me and let me know how to down load youtube video to my IPhone 4s

    Dear Friends,Hi!
    let me know how to download youtube video in my Iphone4s
    thanks
    Regards

    "ProTuber" app from App Store

  • Please help creating tool palette

    Hi,
    is there a tutorial somewhere or  can anyone point me in the right direction to create a tools palette as well as document rulers and guides in Flex Builder 4.5?
    Thanks a lot for your help

    Okay, I spent more time researching. Do I need to use an .scc file for the closed captions? Right now, they have been imported to Encore in .txt format. If they need to be .scc, how can I convert my .txt files to .scc?

  • Please help create the query

    I have table which has 4 columns (A,B,C,D)
    Table t1
    A B C D
    1 - - -
    - 2 - -
    - - 3 -
    - - - 4
    5 - - -
    - 6 - -
    - - 7 -
    - - - 8
    the required output is
    Table T2
    A B C D
    1 2 3 4
    5 6 7 8
    How can i come up with this output

    like this
    with t
    as
    select 1 c1, null c2, null c3, null c4 from dual union all
    select null, 2, null, null from dual union all
    select null, null, 3, null from dual union all
    select null, null, null, 4 from dual union all
    select 5, null, null, null from dual union all
    select null, 6, null, null from dual union all
    select null, null, 7, null from dual union all
    select null, null, null, 8 from dual
    select max(c1), max(c2), max(c3), max(c4)
      from (
             select t.*,
                    last_value(c1 ignore nulls) over(order by nvl(c1,0)+nvl(c2,0)+nvl(c3,0)+nvl(c4,0)) gval
               from t
    group by gval

  • Crash report - please help - would not let me post entire thread

    Date/Time: 2008-02-15 09:40:49 -0500
    OS Version: 10.5.2 (Build 9C31)
    Architecture: ppc
    Report Version: 4
    Command: Mail
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Version: 3.1 (914)
    Build Version: 1
    Project Name: Mail
    Source Version: 9140000
    Parent: launchd [298]
    PID: 433
    Event: hang
    Time: 7.32s
    Steps: 32
    Process: Mail [433]
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    ADDRESS BINARY
    00001000 /Applications/Mail.app/Contents/MacOS/Mail
    002cb000 /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    00370000 /System/Library/Frameworks/Message.framework/Versions/B/Message
    006de000 /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    006e6000 /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    00721000 /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    008be000 /usr/lib/libtidy.A.dylib
    Thread id: 49345f0
    User stack:
    32 ??? [0xf24a0]
    32 _NSApplicationMain + 444 (in AppKit) [0x9078a448]
    32 -[NSApplication run] + 740 (in AppKit) [0x907b9a44]
    32 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116 (in AppKit) [0x907bfd88]
    32 __DPSNextEvent + 584 (in AppKit) [0x907c03c0]
    32 _BlockUntilNextEventMatchingListInMode + 88 (in HIToolbox) [0x92f7900c]
    32 _ReceiveNextEventCommon + 264 (in HIToolbox) [0x92f79134]
    32 _RunCurrentEventLoopInMode + 268 (in HIToolbox) [0x92f793a8]
    32 _CFRunLoopRunSpecific + 2996 (in CoreFoundation) [0x96aa3aa8]
    32 ___NSFireDelayedPerform + 384 (in Foundation) [0x951895ac]
    32 ??? [0x45e0]
    32 ??? [0x174340]
    32 +[Account myFullName] + 48 (in Message) [0x499dfc]
    32 +[ABAddressBook sharedAddressBook] + 132 (in AddressBook) [0x94fe8760]
    32 +[ABAddressBook nts_CreateSharedAddressBook] + 64 (in AddressBook) [0x94fe8920]
    32 +[ABAddressBook nts_SharedAddressBook] + 184 (in AddressBook) [0x94fe8a44]
    32 -[ABAddressBook nts_DoInitialImports] + 168 (in AddressBook) [0x94feba80]
    32 -[ABAddressBook(ABAddressBook_MetaKitImporting) nts_ImportAddressBookFromMetaKitIfNeeded] + 404 (in AddressBook) [0x94febc94]
    32 -[ABAddressBook(ABAddressBook_MetaKitImporting) nts_ImportFromMetaKitDatabaseAtPath:includeMailRecents:includeAddressBook:andSa ve:] + 504 (in AddressBook) [0x9510f23c]
    32 -[ABMetaKitDatabaseConverter smartGroups] + 76 (in AddressBook) [0x9510680c]
    32 __Z17_getViewFromTablePK10__CFString + 84 (in AddressBook) [0x9500acf0]
    32 __ZN10c4_Storage11DescriptionEPKc + 116 (in AddressBook) [0x9500a82c]
    32 __ZNK10c4_ViewRefcv7c4_ViewEv + 48 (in AddressBook) [0x9500b0c8]
    32 __ZN11c4_Sequence3GetEiiR8c4_Bytes + 88 (in AddressBook) [0x9500b1a4]
    32 __ZN10c4_Handler8GetBytesEiR8c4_Bytesb + 52 (in AddressBook) [0x9500b1f4]
    32 __ZN10c4_FormatV3GetEiRi + 44 (in AddressBook) [0x9500b2b4]
    32 __ZN10c4_FormatV16SetupAllSubviewsEv + 156 (in AddressBook) [0x9500a3a8]
    32 __ZN13c4_HandlerSeq7PrepareEPPKhb + 416 (in AddressBook) [0x95009750]
    32 __ZN10c4_FormatB6DefineEiPPKh + 112 (in AddressBook) [0x9500b654]
    32 __ZN10c4_FormatB11InitOffsetsER12c4_ColOfInts + 84 (in AddressBook) [0x9500b7b4]
    23 __ZN12c4_ColOfInts14SetAccessWidthEi + 36 (in AddressBook) [0x9500b91c]
    9 __ZN12c4_ColOfInts14SetAccessWidthEi + 40 (in AddressBook) [0x9500b920]
    Kernel stack:
    18 _cacheInit + 1168 [0xaf950]
    17 _host_processor_info + 256 [0x279a4]
    17 _semaphore_wait_internal + 244 [0x36bcc]
    17 _AlignAssist + 196 [0xb0624]
    1 _host_processor_info + 304 [0x279d4]
    1 _shm_open + 184 [0x2a1f1c]
    1 _sem_wait + 148 [0x2a1490]
    1 _soo_kqfilter + 908 [0x293f0c]
    1 _thread_call_func_cancel + 180 [0x3be8c]
    1 _vm_map_copy_copy + 4204 [0x6c8bc]
    1 _vm_map_submap_pmap_clean + 3236 [0x6b554]
    1 _hw_walk_phys + 556 [0x9e8cc]
    1 _hw_rem_local_gv + 40 [0xa0fa8]
    1 ??? [0x0]
    1 _AltivecAssist + 3096 [0xb28f8]
    1 _ml_probe_read_mck + 184 [0xaedb8]
    1 _host_processor_info + 256 [0x279a4]
    1 _semaphore_wait_internal + 244 [0x36bcc]
    1 _AlignAssist + 196 [0xb0624]
    Process: ATSServer [309]
    Path: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer
    ADDRESS BINARY
    00001000 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer
    Thread id: 455cea0
    User stack:
    32 ??? [0x4ee4]
    32 ??? [0xcab9c]
    32 _CFRunLoopRun + 64 (in CoreFoundation) [0x96aa3eac]
    32 _CFRunLoopRunSpecific + 1832 (in CoreFoundation) [0x96aa361c]
    32 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x94d55978]
    Thread id: 455caf8
    User stack:
    32 __pthread_start + 320 (in libSystem.B.dylib) [0x94d97b9c]
    32 _TS_exception_listener_thread + 112 (in CarbonCore) [0x901e0dc0]
    32 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x94d55978]
    Process: DashboardClient [394]
    Path: /System/Library/CoreServices/Dock.app/Contents/Resources/DashboardClient.app/Co ntents/MacOS/DashboardClient
    ADDRESS BINARY
    00001000 /System/Library/CoreServices/Dock.app/Contents/Resources/DashboardClient.app/Co ntents/MacOS/DashboardClient
    00099000 /Users/MVP/Library/Widgets/iStat pro.wdgt/iStatPro.bundle/Contents/MacOS/iStatPro
    000b4000 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    004a2000 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    005f2000 /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    Thread id: 73dd750
    User stack:
    32 ??? [0x2220]
    32 ??? [0xae88]
    32 -[NSApplication run] + 740 (in AppKit) [0x907b9a44]
    32 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116 (in AppKit) [0x907bfd88]
    32 __DPSNextEvent + 584 (in AppKit) [0x907c03c0]
    32 _BlockUntilNextEventMatchingListInMode + 88 (in HIToolbox) [0x92f7900c]
    32 _ReceiveNextEventCommon + 416 (in HIToolbox) [0x92f791cc]
    32 _RunCurrentEventLoopInMode + 268 (in HIToolbox) [0x92f793a8]
    32 _CFRunLoopRunSpecific + 1832 (in CoreFoundation) [0x96aa361c]
    32 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x94d55978]
    Thread id: 77055f0
    User stack:
    32 __pthread_start + 320 (in libSystem.B.dylib) [0x94d97b9c]
    32 __Z22CFURLCacheWorkerThreadPv + 296 (in CFNetwork) [0x958bdb60]
    32 _CFRunLoopRunSpecific + 1832 (in CoreFoundation) [0x96aa361c]
    32 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x94d55978]
    Thread id: 6526be0
    User stack:
    32 __pthread_start + 320 (in libSystem.B.dylib) [0x94d97b9c]
    32 ___NSThread__main__ + 1008 (in Foundation) [0x9515b4f8]
    32 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 284 (in Foundation) [0x951b2348]
    32 _CFRunLoopRunSpecific + 1832 (in CoreFoundation) [0x96aa361c]
    32 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x94d55978]
    Thread id: 75275f0
    User stack:
    32 __pthread_start + 320 (in libSystem.B.dylib) [0x94d97b9c]
    32 _select$DARWIN_EXTSN + 12 (in libSystem.B.dylib) [0x94dba004]
    Process: DashboardClient [393]
    Path: /System/Library/CoreServices/Dock.app/Contents/Resources/DashboardClient.app/Co ntents/MacOS/DashboardClient
    ADDRESS BINARY
    00001000 /System/Library/CoreServices/Dock.app/Contents/Resources/DashboardClient.app/Co ntents/MacOS/DashboardClient
    004a2000 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    Thread id: 73dd3a8
    User stack:
    32 ??? [0x2220]
    32 ??? [0xae88]
    32 -[NSApplication run] + 740 (in AppKit) [0x907b9a44]
    32 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116 (in AppKit) [0x907bfd88]
    32 __DPSNextEvent + 584 (in AppKit) [0x907c03c0]
    32 _BlockUntilNextEventMatchingListInMode + 88 (in HIToolbox) [0x92f7900c]
    32 _ReceiveNextEventCommon + 416 (in HIToolbox) [0x92f791cc]
    32 _RunCurrentEventLoopInMode + 268 (in HIToolbox) [0x92f793a8]
    32 _CFRunLoopRunSpecific + 1832 (in CoreFoundation) [0x96aa361c]
    32 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x94d55978]
    Thread id: 4814838
    User stack:
    32 __pthread_start + 320 (in libSystem.B.dylib) [0x94d97b9c]
    32 __Z22CFURLCacheWorkerThreadPv + 296 (in CFNetwork) [0x958bdb60]
    32 _CFRunLoopRunSpecific + 1832 (in CoreFoundation) [0x96aa361c]
    32 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x94d55978]
    Thread id: 72b9998
    User stack:
    32 __pthread_start + 320 (in libSystem.B.dylib) [0x94d97b9c]
    32 ___NSThread__main__ + 1008 (in Foundation) [0x9515b4f8]
    32 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 284 (in Foundation) [0x951b2348]
    32 _CFRunLoopRunSpecific + 1832 (in CoreFoundation) [0x96aa361c]
    32 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x94d55978]
    Thread id: 49eeea0
    User stack:
    32 __pthread_start + 320 (in libSystem.B.dylib) [0x94d97b9c]
    32 _select$DARWIN_EXTSN + 12 (in libSystem.B.dylib) [0x94dba004]
    Process: DirectoryService [11]
    Path: /usr/sbin/DirectoryService
    ADDRESS BINARY
    00001000 /usr/sbin/DirectoryService
    00154000 /System/Library/PrivateFrameworks/DirectoryServiceCore.framework/Versions/A/Dir ectoryServiceCore
    Thread id: 3d22750
    User stack:
    32 start + 68 (in DirectoryService) [0x152f8]
    32 _main + 2344 (in DirectoryService) [0x15c54]
    32 _CFRunLoopRun + 64 (in CoreFoundation) [0x96aa3eac]
    32 _CFRunLoopRunSpecific + 1832 (in CoreFoundation) [0x96aa361c]
    32 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x94d55978]
    Thread id: 3f2a000
    User stack:
    32 __pthread_start + 320 (in libSystem.B.dylib) [0x94d97b9c]
    32 __ZN9DSLThread11_RunWrapperEPv + 100 (in DirectoryServiceCore) [0x15cfdc]
    32 __ZN9DSCThread3RunEv + 56 (in DirectoryServiceCore) [0x15cd84]
    32 __ZN20CPluginRunLoopThread10ThreadMainEv + 232 (in DirectoryService) [0x214c0]
    32 _CFRunLoopRun + 64 (in CoreFoundation) [0x96aa3eac]
    32 _CFRunLoopRunSpecific + 1832 (in CoreFoundation) [0x96aa361c]
    32 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x94d55978]
    Thread id: 4130750
    User stack:
    32 __pthread_start + 320 (in libSystem.B.dylib) [0x94d97b9c]
    32 __ZN9DSLThread11_RunWrapperEPv + 100 (in DirectoryServiceCore) [0x15cfdc]
    32 __ZN9DSCThread3RunEv + 56 (in DirectoryServiceCore) [0x15cd84]
    32 __ZN17CMigHandlerThread10ThreadMainEv + 316 (in DirectoryService) [0x21740]
    32 _mach_msg_server + 504 (in libSystem.B.dylib) [0x94ddf138]
    32 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x94d55978]
    Kernel stack:
    32 _sysclk_gettime + 44 [0xb2c4c]
    32 _clock_set_time + 12 [0x2572c]
    32 _ipc_port_check_circularity + 272 [0x1eeb4]
    32 _semaphore_wait_internal + 244 [0x36bcc]
    32 _AlignAssist + 196 [0xb0624]
    Thread id: 455dd40
    User stack:
    32 __pthread_start + 320 (in libSystem.B.dylib) [0x94d97b9c]
    32 _kevent + 12 (in libSystem.B.dylib) [0x94d973d8]
    Thread id: 7527248
    User stack:
    32 __pthread_start + 320 (in libSystem.B.dylib) [0x94d97b9c]
    32 __ZN9DSLThread11_RunWrapperEPv + 100 (in DirectoryServiceCore) [0x15cfdc]
    32 __ZN9DSCThread3RunEv + 56 (in DirectoryServiceCore) [0x15cd84]
    32 _syscall + 12 (in libSystem.B.dylib) [0x94dab998]
    Process: Dock [307]
    Path: /System/Library/CoreServices/Dock.app/Contents/MacOS/Dock
    ADDRESS BINARY
    00001000 /System/Library/CoreServices/Dock.app/Contents/MacOS/Dock
    00400000 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    Thread id: 65243a8
    User stack:
    32 ??? [0x58c8]
    32 ??? [0x93080]
    32 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 172 (in Foundation) [0x95189134]
    32 _CFRunLoopRunSpecific + 1832 (in CoreFoundation) [0x96aa361c]
    32 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x94d55978]
    Thread id: 46990e8
    User stack:
    32 __pthread_start + 320 (in libSystem.B.dylib) [0x94d97b9c]
    32 ??? [0x14fc4]
    32 ___semwait_signal + 12 (in libSystem.B.dylib) [0x94d5c38c]
    Thread id: 72b9d40
    User stack:
    32 __pthread_start + 320 (in libSystem.B.dylib) [0x94d97b9c]
    32 ___NSThread__main__ + 1008 (in Foundation) [0x9515b4f8]
    32 _kevent + 12 (in libSystem.B.dylib) [0x94d973d8]
    Process: Finder [311]
    Path: /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    ADDRESS BINARY
    00001000 /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    00501000 /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
    00525000 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    02332000 /System/Library/PrivateFrameworks/URLMount.framework/URLMount
    02346000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    05682000 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    Thread id: 541d838
    User stack:
    32 ??? [0x9db8]
    32 ??? [0x10330c]
    32 ??? [0x24df0]
    32 _RunApplicationEventLoop + 152 (in HIToolbox) [0x92fd73f4]
    32 _ReceiveNextEventCommon + 416 (in HIToolbox) [0x92f791cc]
    32 _RunCurrentEventLoopInMode + 268 (in HIToolbox) [0x92f793a8]
    32 _CFRunLoopRunSpecific + 1832 (in CoreFoundation) [0x96aa361c]
    32 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x94d55978]
    Thread id: 49f0be0
    User stack:
    32 __pthread_start + 320 (in libSystem.B.dylib) [0x94d97b9c]
    32 _PrivateMPEntryPoint + 80 (in CarbonCore) [0x90202fc8]
    32 __ZN23TSystemNotificationTask26SystemNotificationTaskProcEPv + 108 (in DesktopServicesPriv) [0x93480cf4]
    32 _CFRunLoopRun + 64 (in CoreFoundation) [0x96aa3eac]
    32 _CFRunLoopRunSpecific + 1832 (in CoreFoundation) [0x96aa361c]
    32 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x94d55978]
    Thread id: 72ba490
    User stack:
    32 __pthread_start + 320 (in libSystem.B.dylib) [0x94d97b9c]
    32 _PrivateMPEntryPoint + 80 (in CarbonCore) [0x90202fc8]
    32 __ZN25TFSEventsNotificationTask28FSEventsNotificationTaskProcEPv + 180 (in DesktopServicesPriv) [0x93480e70]
    32 _CFRunLoopRun + 64 (in CoreFoundation) [0x96aa3eac]
    32 _CFRunLoopRunSpecific + 1832 (in CoreFoundation) [0x96aa361c]
    32 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x94d55978]
    Thread id: 6524750
    User stack:
    32 __pthread_start + 320 (in libSystem.B.dylib) [0x94d97b9c]
    32 _PrivateMPEntryPoint + 80 (in CarbonCore) [0x90202fc8]
    32 __ZN13TNodeSyncTask12SyncTaskProcEPv + 92 (in DesktopServicesPriv) [0x9348c8ec]
    32 _MPWaitOnQueue + 276 (in CarbonCore) [0x90204d94]
    32 _TSWaitOnConditionTimedRelative + 208 (in CarbonCore) [0x901e35c4]
    32 _TSWaitOnCondition + 136 (in CarbonCore) [0x902051d8]
    32 ___semwait_signal + 12 (in libSystem.B.dylib) [0x94d5c38c]
    Thread id: 72b9248
    User stack:
    32 __pthread_start + 320 (in libSystem.B.dylib) [0x94d97b9c]
    32 _kevent + 12 (in libSystem.B.dylib) [0x94d973d8]
    Thread id: 75280e8
    User stack:
    32 __pthread_start + 320 (in libSystem.B.dylib) [0x94d97b9c]
    32 _select$DARWIN_EXTSN + 12 (in libSystem.B.dylib) [0x94dba004]
    Thread id: 4812000
    User stack:
    32 __pthread_start + 320 (in libSystem.B.dylib) [0x94d97b9c]
    32 ??? [0xa734]
    32 ??? [0x9a1d4]
    32 ??? [0x4fd6c]
    32 _semaphore_timedwait_signal_trap + 8 (in libSystem.B.dylib) [0x94d559f8]
    Thread id: 73df0e8
    User stack:
    32 __pthread_start + 320 (in libSystem.B.dylib) [0x94d97b9c]
    32 _PrivateMPEntryPoint + 80 (in CarbonCore) [0x90202fc8]
    32 __ZN15TFolderSizeTask18FolderSizeTaskProcEPv + 92 (in DesktopServicesPriv) [0x9348e5ac]
    32 _MPWaitOnQueue + 276 (in CarbonCore) [0x90204d94]
    32 _TSWaitOnConditionTimedRelative + 244 (in CarbonCore) [0x901e35e8]
    32 _semaphore_timedwait_signal_trap + 8 (in libSystem.B.dylib) [0x94d559f8]
    Process: KernelEventAgent [34]
    Path: /usr/sbin/KernelEventAgent
    ADDRESS BINARY
    00001000 /usr/sbin/KernelEventAgent
    Thread id: 4814490
    User stack:
    32 start + 68 (in KernelEventAgent) [0x26a8]
    32 _main + 1008 (in KernelEventAgent) [0x44d8]
    32 _CFRunLoopRun + 64 (in CoreFoundation) [0x96aa3eac]
    32 _CFRunLoopRunSpecific + 1832 (in CoreFoundation) [0x96aa361c]
    32 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x94d55978]
    Thread id: 48370e8
    User stack:
    32 __pthread_start + 320 (in libSystem.B.dylib) [0x94d97b9c]
    32 _select$DARWIN_EXTSN + 12 (in libSystem.B.dylib) [0x94dba004]
    Process: SecurityAgent [361]
    Path: /System/Library/CoreServices/SecurityAgent.app/Contents/MacOS/SecurityAgent
    ADDRESS BINARY
    00001000 /System/Library/CoreServices/SecurityAgent.app/Contents/MacOS/SecurityAgent
    00038000 /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    00675000 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    Thread id: 7705d40
    User stack:
    32 ??? [0x2db0]
    32 ??? [0x11e14]
    32 -[NSApplication run] + 740 (in AppKit) [0x907b9a44]
    32 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116 (in AppKit) [0x907bfd88]
    32 __DPSNextEvent + 584 (in AppKit) [0x907c03c0]
    32 _BlockUntilNextEventMatchingListInMode + 88 (in HIToolbox) [0x92f7900c]
    32 _ReceiveNextEventCommon + 416 (in HIToolbox) [0x92f791cc]
    32 _RunCurrentEventLoopInMode + 268 (in HIToolbox) [0x92f793a8]
    32 _CFRunLoopRunSpecific + 1832 (in CoreFoundation) [0x96aa361c]
    32 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x94d55978]

    Two things standout:
    You indicate that you have this RAM installed:
    4 GB 1333 MHz DDR3.
    That is not the correct frequency RAM for a 2009 MBP.
    These items may be an issue for you:
    com.motorola-mobility.driver.MotMobileUSBLAN
    com.Cycling74.driver.Soundflower
    com.rim.driver.BlackBerryUSBDriverInt
    Delete them and see if performance improves.  You can also perform a safe boot first:
    http://support.apple.com/kb/ht1564
    Ciao.

  • Create a table from another table and add constraint statement. Please help

    Previously, I post a question and it works as below:
    create table my_table
    PCTFREE 10 PCTUSED 0 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING STORAGE
    INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT
    TABLESPACE TAB_DATA
    as select t1, t5, t2, t3, t4 from orig_table;
    I have been trying to use the same strategy as I post earlier, but it doesn't work.
    CONSTRAINT "MY_TEMP" UNIQUE ("ID", "SNAME", "CNAME", "TIME", "SYSTEM_ID")
    USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLESPACE "TAB_DATA" ENABLE
    CLUSTER MY_CLUSTER
    "CNAME"
    Below iis my SQL statement, but it doesn't work. Please help.
    create table my_table
    CONSTRAINT "MY_TEMP" UNIQUE ("ID", "SNAME", "CNAME", "TIME", "SYSTEM_ID")
    USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLESPACE "TAB_DATA" ENABLE
    CLUSTER MY_CLUSTER
    "CNAME"
    as (select t1, t5, t2, t3, t4 from orig_table;

    Hi,
    Why do you need to combine the two action togather. You can get the things done in two steps.
    Create table tab1 as select * from tab2;
    Then you create any contraint that you want to create on tab2 using 'alter table add constraint'.
    Regards

  • Creation of Recovry Media is incomplete, Please HELP! (HP Pavilion g6 -210tu Notebook)

    Hi,
    My problem is that during creation of recovery media, i have successfully created 1st and 2nd DVD-R but Hp Recovery Creation Media fails to create 3rd DVD and consequently it is unable to create 4th and 5th DVD for recovery.
    During creation of 3rd DVD-R, Hp Recovery Creation Media successfully reads blank DVD and prepares files to be burn but it fails to burn these files on 3rd DVD.
    Further, DVD autometically is ejected with massage "We are experiencing errors in Recovery Media Creation. please try again."
    Please Help me! how to fix this problem.
    I have also tried the following as per guidlines on HP support Website--
    1. disabled User Control Account.
    2. temporary disabled my antivirus.
    3. i have manually run chkdisk for Partition drive D which is my recovery drive.
    4. i have also change and tried different DVD to burn but i faced same issue.
    Please note that I have never modified or encrypted my partition drive of recovery but i have recently Updated BIOS and Drivers form HP.
    My system details are as follows--
    OS- windows 7 home basic (64 bits)
    MODEL- HP Pavilion g6 -210tu Notebook PC
    PRODUCT NO.- B6U26PA#ACJ
    Processor- Intel i3 CPU@ 2.40GHZ,
    RAM - 2 GB
    SMBIOS Version      2.7
    BIOS Version   - /Date Insyde F.25, 29-05-2013
    Boot Device      -\Device\HarddiskVolume1
    Please help me and let me know what should i do to create subsequent DVD.

    Hi,
    Once again thank you for your valuable feedback and support!
    The product name and model no. i have mentioned in the post are correct. i have also try to locate them behind battery of my notebook. If you think it may be wrong, you can check for this model no. on HP support website here
    I have also tried esc+ F2 and run the HP PC Hardware Diagnostics but i did not find option "Component Test" and therefore unable to locate optical drive option.
    I have understood your statement regarding benefit of USB tumbdrive over DVDs and much appreciated.
    thanks you for that.
    I personally want to say that i was unaware about the fact for these non branded DVDs. The shopkeeper (notebook showroom) told me that these DVDs are good to create Recovery Images because they also use these DVDs to create Recovery Images.
    I have purchased non branded DVDs but it does not mean i wanted cheapest solution for Recovery. simply i wanted to Recover my system using best DVDs.
    Well, now let me know how can i undo the creation of media which i have created in those two DVDs successfully in order to create Recovery Images on USB Thumbdrive ?
    How can i locate Opticle Drive Test?
    I am waiting for you response.......
    Regards,

  • Business content cubes . Please help me in identification

    Hello ,
    I am still looking out below information , I tried to find the same in help.sap.com but could not identify the cube from business content . can u please help and let me know which could be the cubes or multiprovider from business content .
    Could you please help me and let me know the cubes which are provided by SAP .
    1.    Invoices for analysis of actual sales, pricing and special charges (2 standard cubes)
    2.    Analysis of Delivery processing (incl. analysis of distribution costs) (2 standard cubes)
    3.   Sales Orders for analysis of incoming sales orders, open orders, backlog (4 standard cubes)
    4.    Inventory, for analysis of inventory levels, turnover and slow stock (1 standard cube)
    5..   Purchase Orders for analysis of purchase orders, open purchase orders (5 standard cubes)
    Thanks .

    Hi,
    1. Invoices for analysis of actual sales, pricing and special charges (2 standard cubes)
        0SD_C03 And also  check for 0SD_C*
    2. Analysis of Delivery processing (incl. analysis of distribution costs) (2 standard cubes)
       Use DS -->2LIS_12_VCITM and create a Custome Cube for that DataSource
    3. Sales Orders for analysis of incoming sales orders, open orders, backlog (4 standard cubes)
        0SD_C03 And also  check for 0SD_C*
    4. Inventory, for analysis of inventory levels, turnover and slow stock (1 standard cube)
       0IC_C03
    5.. Purchase Orders for analysis of purchase orders, open purchase orders (5 standard cubes)
         0PUR_C01  And also check 0PUR_*
    Thanks
    Reddy

Maybe you are looking for

  • Slow down after my line was upgraded to ADSL2+

    Hi there a couple months ago BT upgraded our line from ADSL 1 to ADSL2+ now it all sounds good but I have experienced some major slow downs since they have done it and constant calls to CS have just resulted in my line getting tested and then having

  • Mail shows up in sent but not in inbox

    just setting up the mail function - I am a mac.com member and using 10.3.9 - trying to send messages to myself to test it out. They show up in my sent folder but not in my inbox. Also - where should my mailboxes be located - under on my mac - or the

  • Keywords not "sticking"

    I have a bunch of photos assigned various keywords. When I use the keyword panel to select pictures containing one or more keywords, often there are a few pictures missing. If I do a Show Info on a missing pictures I can verify that the correct keywo

  • Quantity of plant update in which tables

    Hi Gurus, Quantity of plant update in which tables Regards, Kumar

  • Items in Finder window will not show alphabetically while in columns view

    I am running a Mac Pro Yosemite 10.10.1 a couple of weeks ago I had some kind of glitch since then it takes a long time to save items having a continuous spinning beach ball. Also in the Finder window items will no longer listed alphabetically while