Why no CD in sources?

I know that I should be able to open a CD of photos in iPhoto but I do not see the CD listed in my Sources! Anyone know why not?

Why do you know this? If it were an iPhoto CD, then iPhoto would have launched on its own, and displayed the CD as an album.
With the CD mounted on your desktop, launch iPhoto and select "Import..." from the File menu. In the resulting dialog, navigate to the folder containing the images you want. Select the images, and click "Save".

Similar Messages

  • Why we need E-Sourceing for Rfx?

    Hi Experts,
    When RFX functionality is available in SAP SRM server it self? Why we need E sourceing separate system.
    What are all the advanatges / additional functionalities for using E sourceing system for Rfx compoared to SRM Server?
    Thanks & Regards
    Giri

    Hi,
    Rfx or bidding functionality is available both in SRM bidding engine and E-sourcing. A customer has to take the call whether his requirements will be filled with SRM bidding itself or he needs to go to E-sourcing as well.
    One major difference between SRM sourcing and E-sourcing is that in E-sourcing, one can conduct sourcing event on project mode which enables you to plan a sourcing event more elaborately.
    Secondly, in E-sourcing, one can generate or author legal contract out of an RFx event. In SRM, you can generate only operational contract.
    However, E-sourcing has its own limitation.E-sourcing can connect to only one ERP backend system unlike SRM. Sometimes, one needs E-Sourcing to generate or author a legal contract and then transfer it to SRM system using custom devlopment. Once the contract reaches SRM system, you can distribute it to multiple backend systems. In such cases, the customer needs both E-sourcing and SRM systems.
    Thanks and regards,
    Ranjan

  • Why won't this source code compile?

    I have been writing a simple app for a simple form. I have been using a gridbaglayout and checked compilation almost every step of the way, but then right as i am getting towards the end and have to start putting in the actioneventlisteners etc. ......... My code doesn't compile.
    Here is the source code:
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    public class LearnerLookup extends JFrame implements ActionListener {
    void buildConstraints(GridBagConstraints gbc, int gx, int gy,
    int gw, int gh, int wx, int wy) {
    gbc.gridx = gx;
    gbc.gridy = gy;
    gbc.gridwidth = gw;
    gbc.gridheight = gh;
    gbc.weightx = wx;
    gbc.weighty = wy;
    /** Creates a new instance of LearnerLookup */
    public LearnerLookup() {       
    super("Learner Lookup");
    setBounds(225, 250, 300, 180);
    GridBagLayout gridbag = new GridBagLayout();
    GridBagConstraints constraints = new GridBagConstraints();
    JPanel pane = new JPanel();
    pane.setLayout(gridbag);
    // Last Name Label
    buildConstraints(constraints, 0, 0, 1, 1, 25, 25);
    constraints.fill = GridBagConstraints.NONE;
    constraints.anchor = GridBagConstraints.EAST;
    JLabel lastNameLabel = new JLabel("Last Name:", JLabel.LEFT);
    gridbag.setConstraints(lastNameLabel, constraints);
    pane.add(lastNameLabel);
    // Last Name Field
    buildConstraints(constraints, 1, 0, 1, 1, 75, 0);
    constraints.fill = GridBagConstraints.HORIZONTAL;
    JTextField lastNameField = new JTextField(20);
    gridbag.setConstraints(lastNameField, constraints);
    pane.add(lastNameField);
    // First Name Label
    buildConstraints(constraints, 0, 1, 1, 1, 0, 25);
    constraints.fill = GridBagConstraints.NONE;
    constraints.anchor = GridBagConstraints.EAST;
    JLabel firstNameLabel = new JLabel("First Name:", JLabel.LEFT);
    gridbag.setConstraints(firstNameLabel, constraints);
    pane.add(firstNameLabel);
    //First Name Field
    buildConstraints(constraints, 1, 1, 1, 1, 0, 0);
    constraints.fill = GridBagConstraints.HORIZONTAL;
    JTextField firstNameField = new JTextField(20);
    gridbag.setConstraints(firstNameField, constraints);
    pane.add(firstNameField);
    // Admission Number Label
    buildConstraints(constraints, 0, 2, 1, 1, 0, 25);
    constraints.fill = GridBagConstraints.NONE;
    constraints.anchor = GridBagConstraints.EAST;
    JLabel admNumLabel = new JLabel("Admission Number:", JLabel.LEFT);
    gridbag.setConstraints(admNumLabel, constraints);
    pane.add(admNumLabel);
    // Admission Number Field
    buildConstraints(constraints, 1, 2, 1, 1, 0, 0);
    constraints.fill = GridBagConstraints.HORIZONTAL;
    JTextField admNumField = new JTextField(10);
    gridbag.setConstraints(admNumField, constraints);
    pane.add(admNumField);
    // Enter Button
    buildConstraints(constraints, 0, 3, 1, 1, 0, 15);
    constraints.fill = GridBagConstraints.HORIZONTAL;
    constraints.anchor = GridBagConstraints.SOUTHWEST;
    JButton enterButton = new JButton("Enter");
    gridbag.setConstraints(enterButton, constraints);
    pane.add(enterButton);
    // Clear Button
    buildConstraints(constraints, 1, 3, 1, 1, 0, 0);
    constraints.fill = GridBagConstraints.HORIZONTAL;
    constraints.anchor = GridBagConstraints.SOUTHEAST;
    JButton clearButton = new JButton("Clear");
    gridbag.setConstraints(clearButton, constraints);
    pane.add(clearButton);
    //Content Pane
    setContentPane(pane);
    public static void main(String[] arguments) {
    LearnerLookup lookup = new LearnerLookup();
    ExitWindow exit = new ExitWindow();
    lookup.addWindowListener(exit);
    lookup.show();
    public void actionPerformed(ActionEvent evt) {
    Object source = evt.getSource();
    if (source == enterButton);
    The error message that I get is the following:
    LearnerLookup.java [101:1] cannot resolve symbol
    symbol : variable enterButton
    location: class LearnerLookup
    if (source == enterButton);
    ^
    1 error
    Errors compiling LearnerLookup.
    I'd be glad for some enlightenment on this one.
    Thanks

    enterButton is declared inside the constructor and so is not accessible from actionPerformed.
    Declare enterButton as an instance variable and remove the declaration from the constructor.
    e.g.public class LearnerLookup extends JFrame implements ActionListener {
          JButton enterButton;and in constructor:
    // JButton enterButton = new JButton("Enter");    Remove this line
    enterButton = new JButton("Enter");                   // replace with this. You'll probably need to do this for all the components with actionPerformed methods.

  • Why does the Excel source think my query has parameters?

    Part of my current project involves converting an Excel spreadsheet having a number of tabs into an equal number of pipe-delimited flat files using an SSIS package. I've got one data flow task that opens up the excel file and selects the names of all the
    tabs into and object variable. A second data flow task inside a for each loop attempts to read the first 32 columns from each tab. The excel source in the second data flow task is set up to use a sql command from a variable, and the variable is an expression
    that substitutes the tab name into an otherwise-constant sql statement like this:
    SELECT F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, F16, F17, F18, F19, F20, F21, F22,
    F23, F24, F25, F26, F27, F28, F29, F30, F31, F32 FROM [Securities Portfolio$]
    The "First row has column names" box in the excel connection manager is not marked.
    Here's the thing: this works for most of the tabs. The one above works. However, three of them are causing the following error:
    The SQL command requires 2 parameters, but the parameter mapping only has 0 parameters.
    I've modified the package to print all of the SQL statements used in the log file. The only difference is in the tab name. None have any question marks, which is what I thought SSIS used to mark parameters. I can't figure out what causes this, or even how
    thw failing SQL queries are different than the ones that work:
    SELECT F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, F16, F17, F18, F19, F20, F21, F22,
    F23, F24, F25, F26, F27, F28, F29, F30, F31, F32 FROM [Capital - Part1$]SELECT F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, F16, F17, F18, F19, F20, F21, F22,
    F23, F24, F25, F26, F27, F28, F29, F30, F31, F32 FROM [Capital - Part2$]SELECT F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, F16, F17, F18, F19, F20, F21, F22,
    F23, F24, F25, F26, F27, F28, F29, F30, F31, F32 FROM [Securities Sources$]
    Any help would be appreciated.

    OK, I figured it out, and will write it here in case someone else has a similar issue, because I spent several hours on Google trying to figure out what was going on.
    It turns out that not all of the worksheets actually HAVE 32 columns. It did not occur to me at first that this could be an issue, because when you open an Excel file in Excel, there are always more columns if you just scroll over more. However, the way
    Microsoft Jet reads Excel files, each worksheet has a fixed number of columns.
    The worksheets that were causing the issue were the ones that have fewer than 32 columns. If there are only 30 columns and I try to select F32, Microsoft Jet assumes that F32 is supposed to be the name of a parameter. As far as I can tell, SSIS 2008 does
    not allow you to set up parameter values for use with Jet, but Jet will nevertheless parse your query and determine that there are parameters needed if it can't find some of the column names.
    To get around this, I changed the step that gets the worksheet names to also return the number of columns in each worksheet, and then changed the query to return NULL for any columns that don't exist. So, for a worksheet having only 30 columns, I now run
    this:
    SELECT F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, F16, F17, F18, F19, F20, F21, F22,
    F23, F24, F25, F26, F27, F28, F29, F30, NULL AS F31, NULL AS F32 FROM [Capital - Part1$]
    And that fixes it.

  • Why does the Input Source keep changing?

    I have two languages in my list of Input Sources - Maori and Australian.  I normally have it set on Maori, but in the last week it's been defaulting back to Australian.  Anyone have any ideas how to resolve the issue??

    Go to the User's Library folder. This folder is hidden by default. To unhide: Select the Finder in the Dock. Under Go in the Menu bar > hold down the Option key and you’ll see the Library.
    Scroll to Preferences
    Drag the com.apple.finder.plist and the com.apple.systempreferences.plist to the trash.
    Log Out under the Apple in the Menu bar
    Log in
    Reset your preferences.
    If it does not stick....
    Boot into the Recovery Drive by holding down Command R when restarting.
    Run Repair Drive and Repair Permissions using Disk Utility in Recovery.
    Restart
    Download and run the combo updater to refresh your OS X files.
    OS X Mavericks 10.9.4 Update (Combo)
    http://support.apple.com/kb/DL1755
    Post Date: Jun 30, 2014
    File Size: 958.2 MB

  • Why do I got "Source of supply reset"???

    Hello,
    We are on SRM 5.00 SP12 on classic scenario.
    When we want to create a Catalog Shopping cart from a copy of an old one I got the message "Source of supply reset. Assign a new one, if necessary" and my Source of supply is reset. This is only for some supplier. Do you know where does the error can come from?
    thanks for help!

    Hi,
    Refer the foll OSS note for solution:
    Note 758481 - Sources of supply disappear in case of company code change
    Other useful related notes:
    Note 801591 - Source determination after item change
    Note 865544 - Fixed vendor from catalog reset on change of plant
    Note 1039542 - Source of supply from catalog reset on change of location
    Note 1071820 - Reset of Source of supply does not work properly
    Note 924062 - Old purchase orders and templates: SOS not automatically set
    BR,
    Disha.
    DO reward points for useful answers.

  • Why won't Twain source open.

    PSE 1.0.1 has been working great forever. Then my computer crashed and I restored a copy of my C drive. Now PSE won't open Epson Twain for import (Epson 1650 scanner), which had worked great before. EPSON TWAIN 5 shows in the IMPORT menu, but when I click on it  I get this error:
    "Could not open the Twain source. Make sure there is a valid source for your scanner in the Twain directory found in the Windows directory."
    I reinstalled Epson Twain from disc twice with no good results.
    In my TWAIN_32 directory there are files wiatwain.ds, ESTW5.ds, among others, and a subdirectory EPFB5 containing ESTW5.ds and others. I don't really know what a "valid source" for my scanner is.
    Can anyone advise? Thanks.

    Hi,
    Please try uninstalling/ reinstalling the scanner drivers. Also, please check the cables are connected properly.
    Thanks/Tarun

  • Why is the data source not getting database connection without  exception?

    experts,
    I am trying to config server.xml to get database connection. i am now getting no exception duing the connection, but the returned connection is NULL, why? thanks/ this is my codes:
    public synchronized Connection getConnection()
    try{
    Context ctx = new InitialContext();
    if (ctx == null)
    throw new Exception("Context is null");
    Context initContext = new InitialContext();
    Context envContext = (Context)initContext.lookup("java:/comp/env");
    DataSource ds = (DataSource)envContext.lookup("test");
    Connection conn = ds.getConnection();
    }catch(Exception ex)
    ex.printStackTrace();
    return conn;
    }

    Remove the first slash after "java:".
    Context envContext =(Context)initContext.lookup("java:comp/env");

  • Why is the Microsoft Office Access Database Engine data source looking for a workgroup information file?

    While trying to import to MSSQL2012 from SSDT using the wizard from an Access 2013 DB (.accdb) which is password protected, I get the following error with the username blank and the password field correctly populated: 
    Cannot start your application. The workgroup information file is missing or opened exclusively by another user. (MicrosoftOffice Access Database Engine)
    But according to this link:
    http://office.microsoft.com/en-us/access-help/what-happened-to-user-level-security-HA010342116.aspx
    MSA10 and beyond shouldn't need workgroup information files, although it's not clear to me if they are
    created/used or not.
    I can point the wizard to some local version of system.mdw at Advanced -> All -> Jet OLEDB:System Database, and then the error becomes:
    Not a valid account name or password. (Microsoft Office Access Database Engine)
    for any username I can think of.
    Questions:
    1.  Why does this data source insist on looking for a workgroup information file even though user-level security should be disabled?
    2.  Why does the Open dialog box for the Microsoft Access Database Engine have *.mdb as the only selectable filetype?
    3.  How can I get around these errors for an .accdb that is password protected?
    Thanks!

    Hi JordanPG,
    To connect to Access 2007 or later database, we need the Microsoft ACE 12.0 OLE DB driver. SQL Server only installs the Microsoft Jet 4.0 OLE DB driver which can be used to connect to Access 2003 or earlier database. Besides, the Microsoft Jet 4.0 OLE DB
    driver only has 32-bit version, but the Microsoft ACE 12.0 OLE DB driver has both 32-bit and 64-bit version. However, the 32-bit and 64-bit Microsoft ACE 12.0 OLE DB drivers cannot be installed on a single server.
    According to your description, you can use the 64-bit SQL Server Import and Export Wizard to load data from the Access database, so the 64-bit Microsoft ACE 12.0 OLE DB driver is installed on your computer. Since the BIDS/SSDT is a 32-bit application, the
    64-bit Microsoft ACE 12.0 OLE DB Provider is not visible in BIDS/SSDT. So, when you said that you select “Microsoft Access (Microsoft Access Database Engine)" in the SQL Server Import and Export Wizard (it is actually the 32-bit version) started by the SSDT,
    I think it should be “Microsoft Access (Microsoft Jet Database Engine)”. Because the Microsoft Jet 4.0 OLE DB driver only supports Access 2003 or earlier format, it threw the error “Test connection failed because of an error in initializing provider. Unrecognized
    database format 'C:\myDB.accdb'”.
    In this situation, you have two approaches to avoid this issue:
    Launch the SQL Server Import and Export Wizard (64-bit), and select “Save SSIS Package” to “File System” on the “Save and Run Package” page. Then, the package will be saved to a specified directory. After that, you can add this existing package to a SSIS
    project. The status of the corresponding OLE DB Connection Manager should be Work Offline, or the OLE DB Source will throw an error about 32-bit driver if the Connection Manager is not in Work Offline status, you can ignore that and the package can run successfully
    in SSDT as long as the project is set to run in 64-bit runtime mode.
    However, for the SSDT 2012 integrated with Visual Studio 2012, the 64-bit runtime mode is disabled. In this situation, to run the package in SSDT, you have to uninstall the 64-bit Microsoft ACE 12.0 OLE DB drivers and install the 32-bit one. Here is the
    download link:
    http://www.microsoft.com/en-in/download/details.aspx?id=13255 
    Regards,
    Mike Yin
    TechNet Community Support

  • Sample source code (fmb)

    I am new in oracle development. I need sample code for oracle 10g forms builder.
    I notice that This is the thing which is not even in the knowledge of Google.
    I am wondering that why oracle forms's source code is not available on web. while if we talk about other tools like .net or php! thousands of sample codes are available for almost all kind of the requirements to do a job.
    I shall be very thankful if someone provide me some sample codes (fmb, rdf etc)
    Thanks

    Hi
    Oh yes i do agree with cris u can also search for video samples it's available specially for beginners,but pls notice one thing that PHP is an Open Source like Java and yes .net is also very common it only needs trust & a little light of hope that u can get it :)
    Well for me i can provide u with such sites of Oracle as tutorials besides the sites that InoL & Chris had provided like
    iSelfSchooling ....
    Oracle PL/SQL – Forms samples for François Degrelle
    Forms samples for Andreas Weiden ....
    For the tutorials
    Oracle Forms Developer ....
    A Tutorial on Oracle9i Forms and Reports
    Pls have a look here for Oracle Forms 11g Release 1 (11.1.1) Documentation ... & Oracle Forms 10g(10.1.2) Documentation.
    Hope this helps...
    Regards,
    Amatu Allah.

  • 'Source play' and 'audio-video sync' problems with PE8 on fast WIN7 64 bit computer

    I am transferring Hi8 videos, about 2 hours long, to my WIN7 64 bit computer with PE8.  [Dell Mobile Precision M4400 Computer Workstation (Intel Core 2 Duo T9900 500GB/4GB); NVIDIA Quadro FX 770M, 512MB] I seem to have several problems: 
    First, after importing the file (.avi), I get a message about ‘dropped frames.’ 
    Secondly, when I try to play the video in the source monitor, the audio plays but the video doesn’t; it only shows the first frame [this is after waiting until the video is ?recognized? ]   I can use the shift-arrow key and see that the video is there.
    Thirdly, I can play the .avi file in other players, e.g., avidemux or PE pro CS5 on another computer.  There, I see that the audio and video are not in sync; the audio can be up to 300 ms ahead of the video (as determined using avidemux). 
    Questions:
    1.  Why doesn’t the source monitor play the video? Is this a problem with PE8 (latest update as of 3 March 2011) on aWIN7 64 bit computer (intel duo core. 3 GHz).
    2. Is the audio-video sync problem the result of the ‘dropped frames?’ How can PE8 correct this? Avoid this? Or, is it coincidence?

    "I think you're telling me you're using a backwards compatible Digital8  camcorder to capture your video as DV-AVIs. Is that right?" YES
    "Are you using  Premiere Elements to do this capturing?" YES, AS ABOVE PE8
    "Go to the File menu and select Properties. It should show a standard DV codec being used for your video and audio."
    WMP v12 is dumb. Under properties, media, it says 'video.'  However, avidemux gave me the information state above: video -- Codec 4CC: dvsd, frame rate: 29.971 fps; audio -- codec: PCM, channels: Stereo, frequency: 48 kHz.
    So, back to the Questions:
    1.  Why doesn’t the source  monitor play the video? Is this a problem with PE8 (latest update as of 3  March 2011) on aWIN7 64 bit computer (intel duo core. 3 GHz).
    2. Is the audio-video sync problem the result of the ‘dropped frames?’ How can PE8 correct this? Avoid this? Or, is it coincidence?

  • Why cann't rmic find the class?

    I have write some RMI Code,and I could compile them correctly,but when I wanted to generate Stub and Skel by rmic ,it showed me that:
    E:\JavaPro\CH21-05>rmic RmiTestServer
    error: Class RmiTestServer not found.
    1 error
    I don't know why?
    Here the source which helps to understand the problem:
    //Code in RmiTest.java
    import java.rmi.*;
    public interface RmiTest extends java.rmi.Remote
         //Definate an interface from java.rmi.Remote
         public float getRmiTest(int r) throws RemoteException;
    //Code in RmiTestServer.java
    import java.rmi.*;
    import java.rmi.server.UnicastRemoteObject;
    import java.lang.Math;
    public class RmiTestServer extends UnicastRemoteObject implements RmiTest
         //load the constructor of UnicastRemoteObject
         RmiTestServer()throws RemoteException
              super();
         //The client will send the parameters to here,and calculate,and get the results back
         public float getRmiTest(int r)throws RemoteException
              float circlerate=(float)(2*Math.PI*r);
              return circlerate;
         public static void main(String args[])
              try
                   Naming.rebind("//127.0.0.1:1099/RmiTestObj",new RmiTestServer());
                   System.out.println("RMI Connecting...");
              catch(Exception e)
                   System.out.println("RMI can't connect... :"+e);
                   System.exit(-1);
    //Code in RmiTestClient.java
    import java.awt.*;
    import java.rmi.*;
    public class RmiTestClient
         public static void main(String args[])
              float circlerate=(float)0.0;
              try
                   //Set security manager according to security mechanism
                   System.setSecurityManager(new RMISecurityManager());
                   //Query remote object,and it's host address is 127.0.0.1 ,and it's port is 1099
                   //RmiTestObj is a byname of RMI logging on
                   RmiTest obj=(RmiTest)Naming.lookup("//127.0.0.1:1099/RmiTestObj");
                   //method to load remote object
                   circlerate=obj.getRmiTest(5);
                   //print the result
                   System.out.println("Total circlerate is : "+circlerate);
              catch(Exception e)
                   System.out.println(e.getMessage());
    How can I solve this problem?

    I made it by runing the following command line:
    rmic -classpath E:\JavaPro\CH21-05 RmiTestServer
    and it created two files: RmiTestServer_Skel.class and RmiTestServer_Stub.class
    Thank you very much!
    --Steven                                                                                                                                                                                                                                                                                                                                                                                                                               

  • View the html source code of an apex page

    Hi everyone,
    I search to how I can view the html source code of an apex page and to be able to modify it. That's why viewing the html source code from the browser when the application is running doesn't arrange me.
    Has anyone an idea how it can this be possible?
    Best regards,

    Khadija Khalfallah wrote:
    Hi everyone,
    I search to how I can view the html source code of an apex page and to be able to modify it. That's why viewing the html source code from the browser when the application is running doesn't arrange me. What do you mean?
    Do you want to be able to pull up the HTML source generated by Apex, modify that copy, and then feed it back into Apex with the chagnes you made? If so you can't. Apex generates the HTML through its tools and you have to modify the generation routines to get different HTML.
    Do you merely want to look at the generated HTML? In Internet Explorer all you have to do is right click on the page and choose View Source to open a window with the HTML source in an editor. I sometimes find it useful to save a page and manually edit the copy to immediately see the effects of certain changes to the underlying HTML and/or Javascript without permanantly making the change in Apex.

  • Can't select 'motion source' in AE CC while attempting to do motion tracking.

    Hey all,
    I'm new to AE, and am trying to do some motion tracking following this tutorial: https://library.creativecow.net/articles/devis_andrew/AE-Basics-53-Motion-Tracking-1/video -tutorial  I linked in a clip (GoPro 4k as .mp4) from PP, created a Null layer and opened up the tracking panel, but the selection for my video file "GOPRO###" and "Null 1" are grayed out.  I double clicked on the GOPRO### files in the timeline, which I'm assuming opened it in a new comp. From here I was able to complete the tracking, but then I have no clue on how to link this new comp back into premiere.
    If anyone can tell my why all my motion source choices are grayed out, I would appreciate it. 
    Also, how would I add a .PNG file as the object that is following the tracking?  Do I just add the .PNG as a layer, and set it's parent to the Null 1 layer?
    Thanks!

    When you double-clicked on the layer in the comp, you opened a LAYER window.  That's the only window where tracking can take place.  Once you have a good track, you APPLY it to a layer in the comp.
    If I were you, I'd go over that tutorial a couple-three more times.  Andrew spells things out pretty clearly in his tutorials.

  • Facttables "source" column.

    Hi dear experts,
    I was just wondering, if why is there a source column in the fact tables?
    i hace looked on the BPC help but i cant find answers.
    Thanks, in advance.
    Benniejay

    Hi,
    Its on BPC 5.x and on other versions.,
    Facttables are the tables where they stored data that is used by OLAP to process the aggregated data.
    in BPC there are 3 facttables.
    tblFactCubename, tblWBFactCubename, tblFAC2Cubename.
    and the columns on each tables are the dimensions on each CUBE.
    now, my question is what is the use of the Source Column on the FactTables?
    Thanks,
    BennieJay

Maybe you are looking for