Hotspotz co-ordinates

I have a reciprocal tapping test done out and i want to make the rectangles in black become a hotspot. But
the only thing is i cant figure out how the co-ordinates work on the little bugger. Normally its x y width height,
but i dont know!
Heres the code should ye wish to have a gander!
Reciprocal Tapping
This program should show a decresing level of hits to the centre of the black
plates on the screen. The idea was taken from a test also done by Fitts law
proving that over a length of time the user will miss and become slower and less
accurate.
import java.awt.*;
import java.awt.event.*;
import java.applet.*;
<applet code = "ReciprocalTapping" width = 780 height = 500>
</applet>
public class ReciprocalTapping extends Applet implements MouseListener, MouseMotionListener{
Label aLabel = new Label ("Reciprocal Tapping Test");
int mouseiPressed = 0;
public void init () {
//super ("Copyright � BJMORTELL");
add(aLabel);
aLabel.setLocation (10,540);
addMouseListener (this);
addMouseMotionListener (this);
public void paint (Graphics g) {
//initial rectangle plain with no colour
g.drawRect (100,100,585,180);
//first black rectangle totally black these will have a actionlistener added
g.fillRect (185,100,50,180);
g.setColor (Color.black);
//rectangle but this one hasn't got any colour in it
g.drawRect (150,100,120,180);
//second black rectangle totally black these will have a actionlistener added
g.fillRect (535,100,50,180);
g.setColor (Color.black);
//rectangle but this one hasn't got any colour in it
g.drawRect (500,100,120,180);
//Mouse listener event handlers
public void mousePressed(MouseEvent e) {
public void mouseEntered(MouseEvent e) {
public void mouseExited(MouseEvent e) {
public void mouseClicked (MouseEvent e) {
public void mouseReleased (MouseEvent e) {
//mouse motion listener event handlers
public void mouseMoved (MouseEvent e) {
int x = 0;
int y = 0;
x = e.getX();
y = e.getY();
//I want the hotspot to be over the black rectangles
if((x>100&&x<180)&&(y<100&&y>180))
showStatus ("Here i am");
public void mouseDragged (MouseEvent e) {

You should use the java.awt.Rectangle object, which has a "contains" method. If properly used, that should do what you're trying to do. By the way, the (y < 100 && y > 180) would never be true so that might be why you're having the trouble. Another reason for using Rectangle.

Similar Messages

  • How do I use my iPhone 4s to set GPS co-ordinates to use at a later date?

    I'm wanting to go to an aread in the bush - enter the GPS co-ordinates in my iPhone 4s and then be able to go back to the same place at a later date. How do I go about it.  I have no idea if I even have a GPS on my iPhone 4s.

    There is a built in GPS and map function that provides basic navigation using Google Maps. It's hard to miss right there on the home screen. However, it is maunal; you have to tap "next" when you reach each waypoint, and it does not provide spoken directions. It also downloads maps in real time, so it can be slow if you have a slow data connection, and it uses a lot of data if you are on a limited data plan. It is excellent for walking and public transportation, less useful in a vehicle unless you have a navigator sitting in the car.
    There are several commercial GPS apps that you can buy from the App Store, but no free ones. Just search the App Store for "GPS".

  • How to change default vertical page co-ordinates from center, to top?

    Hi There,
    We're having trouble understanding why InDesign centers the page instead of aligning the view to the top when switching pages (and copying and pasting) - and how to change this behavior.
    To understand what I'm talking about, do the following:
    Create a new document (any size)
    Use the page tool to to change the height
    Create a new page and use the page tool to make the height a lot taller
    Now switch between the pages
    Notice how InDesign always shows you the center of the page?
    This is frustrating in many situations like copying and pasting - try the following:
    Create a box on the first page and align it to 20mm from the top and 20mm from the left
    Copy the box
    Switch to the second page
    Paste using CMD + OPT + SHFT + P
    The object should be pasted in the same spot (20mm from the top and 20mm from the left) but it isn't - on the vertical, it's pasted relative to the center of the page for some reason.
    It surprising how annoying this becomes when you're constantly re-positioning pasted items or when switching between web layouts of different heights - it becomes a two step process instead of one.
    Does anyone know how to change this behavior?
    Any pointers in the right direction would be much appreciated - we're using CS5.5
    Cheers
    Ben

    Thanks for the replies - sorry I didn't reply earlier but they went to junk.
    Why in the same spot if pages have different size?
    In general, sure - but what about letting the user define a point of reference? For me, it's always the top left corner like the rulers - I completely understand if that doesn't work for others but it would save me so much wasted time constantly repositioning objects.
    Also, in a lot of documents with different page-sizes, setting the reference to top left (or whatever you set your rulers to) actually works a lot of the time - granted, probably only for those that use the numbers to position objects.
    Anyway, what I'd like to do is find out how to set a document-wide reference point for co-ordinates - obviously you can't do this right?
    Another thing that wastes time (in a similar vein) is the ability to set defaults for translation, rotation and flipping etc.
    Almost without fail, I find I want top left when moving (because I set rulers to top left) but center for rotation and flipping. Being able to set a default per translation type would save a lot of pointing and clicking.
    Is this possible?

  • How to change co-ordinates of an internal table in page 1 & 2 using offline adobe forms?

    Hello All,
    How to change co-ordinates of an internal table(main window data) from page 2 onwards in offline adobe forms. For e.g., I need to print my internal table around 3-4 lines along with header&footer(only 1st page)in page 1. From 2nd page onwards Internal table should print header and use remaining page til end.
    Thanks in advance for your help.
    Thank you,
    Janakiram.

    Issue resolved...need to use content area option to achieve the same.
    Thanks,
    Janakiram.

  • How to get the co-ordinates of a dynamically created input field

    Hello Frn's
    i have created a dynamic text view . but this text view is not appearing at proper position . I want palce it infront of a dynamically created input field . how can i do this ?
    as i am thinking ...i should first of all  get info about the co-ordinates of   dynamaclly creatd input field . and with respect to these co-ordinates ...set the position of  text View .
    Please suggest  your thoughts .
    Thanks and Regards
    Priyank Dixit

    Hi,
    There is no provision in WD for getting screen coordinates and then placing the UI element.
    You to add the UI element to layout editor and based on the layout type it will add the UI element to respective position.
    I would advice not to create dynamic UI elements( instead you can create them statically and then play with visibility status through context binding ). This will be more effective way and less error prone. This is also recommended practice.
    still,For dynamic creation you can refer to following wiki:
    http://wiki.sdn.sap.com/wiki/display/WDABAP/CreatingUIElementsDynamicallyinAbapWebdynpro+Application
    regards
    Manas Dua

  • IChart_ Y Co-ordinate for all Tags in Legend

    Hello All,
    I am using a ichart to display the trends of various parameters.(industrual parameters like motor temperature, amps, speed etc.)
    I can see the X and Y value of the mouse or a when a single point is selected; I can see the X, Y co-ordinates of the selected point.
    Can any body help me how can I see the values of all the tags in a chart in the Legend. (Whenever I move the mouse across x axis, I should be able to see the values of all the tags [Y co-ordinate values] at the current position.)
    My requirement is similar to feature available in all SCADAs.
    Regards,
    Avdhoot

    Hi Avdhoot,
    you should be able to do this by enabling the "Show Scooter" option on the General tab of the Display Template editor. Also make sure that "Show Legend" is ticked.
    After saving this change, restart your browser (to clear the Java applet cache). Once enabled, you should see the y-axis values of each tag in brackets inside the legend box. These values will cahnge as you move your mouse cursor along the x-axis.
    Hope this helps,
    Sascha

  • How to make website links out of background jpeg (co-ordinate tracked clicks)

    I am an illustrator working on my website that i have drawn out by hand and scanned in to a jpeg.  it is set to fit the whole screen, and i have drawn out where i want the navigation links.  how do i get dreamweaver to use co-ordinate clicking to link my webpages together?
    any help would be much appreciated!

    First just so you know, images are a very clumsy way of creating site navigation.  Each time you add new pages to your site, you must re-craft your menus in your graphics editor which gets old in a hurry.
    Second, you can't link background images to anything as they do not exist in the HTML markup.  You would need to slice up your menu items and insert them as regular images into your HTML page.  But as I said above, image-based menus are not efficient.  You would do well to use Text links and style them with CSS.  This allows for quick editing of menus directly from DW and is web friendly for search engines, translators and screen readers.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • How to create Purchase Order using  sub-ordinate Purchase order number?

    Hi,
    I m in ETL product have to extract SAP datas into Access.
    I noticed that in the Demo DataBase of OEC Computers,the Purchase Order is created with sub-ordinate purchase order number.But i am trying to create the same in SAP B1 manually,but i can't create child Purchase Order .
    <b>How to create child Purchase Order?</b>
    Please help me to create the same
    regards
    Sooriyakala.P

    Hi,
    I m in ETL product have to extract SAP datas into Access.
    I noticed that in the Demo DataBase of OEC Computers,the Purchase Order is created with sub-ordinate purchase order number.But i am trying to create the same in SAP B1 manually,but i can't create child Purchase Order .
    <b>How to create child Purchase Order?</b>
    Please help me to create the same
    regards
    Sooriyakala.P

  • Co-ordinates in Hong Kong Seems To Be All Wrong On...

    Anyone using nokia map on E90.. need verification help..
    Google Map and Google Earth 22.308600, 114.170520 shows junction of Kansu Street and Temple Street (男人街)。
    Google Map and Google Earth 22.305450, 114.169760 shows junction of Jordan Road and Temple Street (男人街)。
    Google Map and Google Earth 22.319510, 114.170540 shows junction of Argyle Street and Tung Choi Street (女人街)。
    Google Map and Google Earth 22.315570, 114.171330 shows junction of Dundas Street and Tung Choi Street (女人街)。
    But the same co-ordinate on my Nokia Map E90 shows elsewhere for all the location above.
    Thank you.

    Peter...I hope you are still a moderator...you may be my last hope to help me - Toshiba do the right thing.
    I too have a C55 Satelitte laptop...acutally I purchased it for my 10 year old son. It is one month out of warranty. Last night for the first time, I used his toshiba laptop because I left mine at work. I notice his laptop had this same issue. I spent an hour reading on your forum and trying all the suggestions including the elaborate unplug, remove drivers etc in a particular order and it did not resolve the issue. Obviously this is a defect in this model. My son does not know enough about laptops to even recognize that it is an issue. I have had toshiba laptops for over a decade. I have never had this kind of an issue so I wouldnt even know to look if it was an issue initially.
    It wasnt until last night when I had to use his laptop that I identified this as an issue. No problem, I thought, I'll call tech support and they will do the right thing. No go. I escalated 3 levels and they held their line saying that batteries are consumable and only rated for one year. I have a seven year old toshiba that I use at work that doesnt hold a charge that long but still works!!! This does not work at all - 0%...obviously a defect that unfortuantely my son doesnt have the skill set to have recognized.
    Please Peter, if you are there...can you please see what you can do to have a new battery sent. They are 100.00 which is insulting to pay since it is clearly a defect for this model. Tech support even said as much.
    Any assistance would be greatly appreciated. I have purchased Toshiba laptops for my workplace for over a decade. I am shocked that they are unwilling to do the right thing.
    Thanks in advance.
    Cheryl

  • Drawing quadratic equations on a 2D cartesian co-ordinate system

    Hi,
    I need to design a 2D cartesian co-ordinate system to plot quadratic equations on the graph using pure action script. Quadratic equations are of the form y = ax^2 + bx + c where a,b and c are the variables for which the values need to accepted from the user as input. Accordingly, the curve needs to be plotted on the graph.
    Could anybody kindly help me to write an action script 3.0 code to suffice the above requirement?
    Thanks in advance.
    Cheers,
    Pratik.

    that will take more work than doable in a forum.  to start, you need to find the roots of your equation (use the quadratic formula) and make sure the real roots are towards the center of your x-axis.  the two parts where y tends towards (+infinity or -infinity) do not require much display.
    if there is only 1 or 0 roots, put that equation in vertex form and use an x-axis centered around the vertex.
    for a sample of how this can be done:  http://www.kglad.com > snippets > function graphs.

  • How can I get co-ordinate of the last pixel drawn?

    Let me explain
    Suppose I do something like this:
    for(int i=0;i<100;i++)
          g.drawString(randomlyGeneratedString, x, y);
          x=x+25;
    }Now, the above loop will draw a string one the same line. Notice how I am incrimenting x by 15 each time?... thats a precaution cuz I dont want the strings to overlap. But thats not a fullproof way of doing it
    My question is, is there a way of getting the last co-ordinate after g.drawString() is used? In other words, the co-ordinate of the point where the string ends.

    Let me explain
    Suppose I do something like this:
    for(int i=0;i<100;i++)
    g.drawString(randomlyGeneratedString, x, y);
    x=x+25;
    }Now, the above loop will draw a string one the same
    line. Notice how I am incrimenting x by 15 each
    time?... thats a precaution cuz I dont want the
    strings to overlap. But thats not a fullproof way of
    doing it
    My question is, is there a way of getting the last
    co-ordinate after g.drawString() is used? In other
    words, the co-ordinate of the point where the string
    ends.
    You could get the FontMetrics and calculate the length of the written string in pixels. With the starting point, you'd be able to calculate where the end of the string will be. If that's what you mean...

  • Extracting x,y co-ordinates of SDO_GEOMETRY into two variables say x1, ya

    Hi All,
    I am able to store the output SDO_GEOMETRY into a variable but i am facing difficulties in extracting ordinates in sdo_geometry to two independent variables say xa, ya. Kindly suggest some solution.
    The procedure is as follows:
    CREATE OR REPLACE PROCEDURE fnd_2nd_Point
    (Input_Fiber_Id IN NUMBER,
    xa IN FLOAT,
    ya IN FLOAT,
    Length_Fiber IN FLOAT,
    Result OUT VARCHAR,
    xCordInAte OUT FLOAT,
    yCordInAte OUT FLOAT)
    IS
    ProjPoint_a mdsys.sDo_Geometry := NULL;
    v_Point_xa FLOAT := NULL;
    v_Point_ya FLOAT := NULL;
    BEGIN
    SELECT sDo_lrs.Project_pt(a.Shape,m.DimInfo,mdsys.Sdo_geometry(2001,8307,NULL,mdsys.Sdo_elem_info_array(1,1,1),
    mdsys.Sdo_ordinate_array(xa,ya,Length_Fiber)))
    INTO {color:#0000ff}ProjPoint_a
    {color}FROM lrs_Access_Fiber a,
    User_sDo_geom_MetAdAta m
    WHERE m.Table_Name = 'LRS_ACCESS_FIBER'
    AND m.Column_Name = 'SHAPE'
    AND a.Unique_Id = Input_Fiber_Id;
    {color:#0000ff}-- SELECT t.x, t.y INTO v_Point_xa, v_Point_ya FROM TABLE(sDo_util.Getvertices(ProjPoint_a)) t;
    {color}
    {color:#0000ff}-- dbms_Output.Put_Line('Point Xa is ' ||v_Point_xa||' and point Ya is '||v_Point_ya);
    {color}
    {color:#0000ff}-- xCordInAte := v_Point_xa;
    {color}
    {color:#0000ff}-- yCordInAte := v_Point_ya;
    {color}
    -- Result := 'success';
    END;
    Kindly advice on the options available to extract the ordinates of sdo_geometry into 2 independent variables.
    Regards,
    Venkat

    Please find the output as below for the following inputs: INPUT_FIBER_ID :=2005; XA := 78.424; YA := 17.643; LENGTH_FIBER :=500;
    Point Xa is 78.48686988 and point Ya is 17.61674904
    RESULT = success
    XCORDINATE = 78.48686988
    YCORDINATE = 17.61674904
    Is this output correct? Actually, I have to integrate this with UMN MapServer. Kindly advice
    Regards
    Venkat

  • Calculating co-ordinate distances between specific atoms

    Hi,
    Below is some code to calculate distances between all pairs of atoms. However, i need to make it slightly more specific by only calculating the distance between certain pairs of atoms
    input
    ATOM 5 CA PHE 1 113.142 75.993 130.862
    ATOM 119 CA LEU 7 113.101 72.808 140.110
    ATOM 138 CA ASP 8 109.508 74.207 140.047
    ATOM 150 CA LYS 9 108.132 70.857 141.312
    ATOM 172 CA LEU 10 110.758 70.962 144.119
    e.g distance between all pairs for atoms 5, 119, 150 and 172 (say), last three columns are x,y and z co-ordinates
    code it self
    import java.util.*;
    import java.io.*;
    public class Distance {
    public static void main(String[] args) {
    System.out.println("***Campbells PDB Distance Calculator***" + "\n");
    new Distance();
    System.out.println("\nResults printed to file DistanceCalculations" + "\n");
    System.out.println("\nDue to nature of code, if rerun results will be appended to the end of previous run.");
    public Distance() {
    Vector atomArray = new Vector();
    String line;
    try{
    System.out.println("Enter PDB file:" + "\n");
    BufferedReader inputReader =new BufferedReader (new InputStreamReader(System.in));
    String fileName = inputReader.readLine();
    if ( fileName !=null) {
    BufferedReader inputDistance = new BufferedReader (new FileReader (fileName));
    while (( line = inputDistance.readLine()) !=null && !line.equals(""))
    Atom atom = new Atom(line);
    atomArray.addElement(atom);
    for (int j=0; j<atomArray.size(); j++) {
    for (int k=j+1; k<atomArray.size(); k++) {
    Atom a = (Atom) atomArray.elementAt(j);
    Atom b = (Atom) atomArray.elementAt(k);
    Atom.printDistance (a,b);
    } //if
    } //try
    catch (IOException e) {
    System.out.println("Input file problem");
    } catch (Exception ex) {
    System.out.println (ex);
    class Atom {
    public double x, y, z;
    public String name;
    public Atom(String s) throws IllegalArgumentException {
    try {
    StringTokenizer t = new StringTokenizer (s, " ");
    t.nextToken();
    this.name = t.nextToken();
    for (int j=0; j<3; j++) t.nextToken();
    this.x = new Double(t.nextToken()).doubleValue();
    this.y = new Double(t.nextToken()).doubleValue();
    this.z = new Double(t.nextToken()).doubleValue();
    catch (Exception ex) {
    throw new IllegalArgumentException ("Problem!!!! :-(");
    public String toString() {
    return "atom : " + name + "(x=" + x + " y=" + y + " z=" + z + ")";
    public double distanceFrom (Atom other) {
    return calculateDistance (x, y, z, other.x, other.y, other.z);
    public static double calculateDistance (double x1, double y1, double z1, double x2, double y2, double z2) {
    return Math.sqrt(Math.sqrt(Math.pow(Math.abs(x1-x2),2)+Math.pow(Math.abs(y1-y2),2))+Math.pow(Math.abs(z1-z2),2));
    public static void printDistance (Atom a, Atom b) {
    try{
    FileWriter fw = new FileWriter("DistanceCalculations", true);
    PrintWriter pw = new PrintWriter (fw, true);
    if
    (a.distanceFrom(b) <9){
    pw.println("Distance between " + a.toString() + " and " + b.toString() + " is " + a.distanceFrom(b));
    pw.flush();
    pw.close();
    } // if??
    } //try loop
    catch(IOException e) {
    System.out.println("System error");
    }

    ok, essentially
    want to calculate distance between to ranges. Say
    range 1 is the first three, range 2 the rest. THen
    calculate distance between all possible pairs between
    these two rangesYes - and no doubt that any number of people here could write it for you. But that's not what the forum is about. So what, exactly, is preventing you from doing it?
    Sylvia.

  • Drag/Drop a label placing it in its new x,y co-ordinates

    I'm working on a project where I need to drag a label around
    and when dropped, it should be placed wherever my mouse is. So far,
    I can drag it onto a canvas, but it dissapears - when i drag the
    label onto the canvas, its location should be wherever my mouse is
    currently at, ie. i want to drag a label then drop it to a new
    location.
    I already know the code for all the drag functions &
    classes (dragInitiator)- but I'm wondering about the code to
    implement dropping the label to a new location based on my mouse's
    x,y co-ordinates. Please help. Thank you.

    i think u need to do some computation here ... while in the
    dragit() event u should have an account of the mouseX and mouseY
    positions (the positions on the label not the container) with you.
    Then finally when u are dropping it ... u have to take into account
    that u subtract a relative value of this mouse X & Y (relative
    to the container) from the actual container.mouseX and
    container.mouseY.
    here is an example that is working on my system :-
    private function dragIt(event:MouseEvent, text:String, //
    [this is the mouse move event]
    format:String):void {
    tempX = this.mouseX;
    tempY = this.mouseY;
    var dragInitiator:Label = new Label();
    private function dragDropIt(event:DragEvent):void{ // [this
    is the drag complete event]
    this.x=this.parent.mouseX - tempX;
    this.y=this.parent.mouseY - tempY;
    I hope u find the solution with this!
    Sumitro

  • AWT co-ordinate system

    Hello.
    I still can't figure out. I'm plotting graph co-ordinates on an AWT Canvas component. i.e (x,y) values
    However, due to the AWT co-ordinate system, the origin (0,0) is at the top left hand corner of the screen.
    What trick can I do to plot my points with
    respect to the origin at the BOTTOM left hand corner of the canvas?
    I am using the fillOval() method to display the points on the canvas. (See code below)
    All I want to do is reverse the direction
    of the y axis. Some sample code would be very much appreciated.
    A.
    My paint code is as follows ...
    <code>
    public void paint(Graphics g)
    // Paint the means
    g.clearRect(0, 0, 600, 500);
              if (firststep)
              db.paint(g);
    else
    for(int i = 0; i < nk; i++) {
    g.setColor(cl);                                        
    Point p = (Point) means.elementAt(i);
    //           System.out.println("mean = "+p);
                                            g.fillOval( (int) (p.xVal()*600)-PtSize/2, (int) (p.yVal()*500)-PtSize/2, PtSize, PtSize);                    //      Draw an oval
                             String s = "k= "+ i+ "[" + round(p.x, 2) + " , "+ round(p.y, 2) + "]" ;
                             g.drawString(s, (int) (p.xVal()*600)-PtSize/2 + 10 , (int) (p.yVal()*500)-PtSize/2 + 15 );
    // Print the cluster
    Vector cluster = (Vector) clusters.elementAt(i);
    int size = cluster.size();
    for (int j = 0; j < size ; j++ )
              p = (Point) cluster.elementAt(j);
    //     g.setColor(Color.green);
    //     g.fillRect( (int) (p.xVal()*600)-PtSize/4,(int) (p.yVal()*500)-PtSize/4,PtSize/2,PtSize/2);
    //     g.setColor(cl[i]);
                                            g.fillOval( (int) (p.xVal()*600)-PtSize/4, (int) (p.yVal()*500) -PtSize/4,PtSize/2,PtSize/2);               //      Draw circles to represent the points                
    //          g.drawString(i+"",(int)p.xVal(), (int)p.yVal());
    }</code>

    An example without axises or labels:import java.awt.*;
    import javax.swing.*;
    public class Test extends JFrame {
        public Test () {
            setContentPane (new GraphPanel ());
            setDefaultCloseOperation (EXIT_ON_CLOSE);
            setTitle ("Graph example");
            pack ();
            setLocationRelativeTo (null);
            show ();
        public class GraphPanel extends JPanel {
            public void paintComponent (Graphics graphics) {
                super.paintComponent (graphics);
                // y = x^2
                Point previousPoint = null;
                for (int x = 0; x <= getWidth () / 10; x ++) {
                    int y = x * x;
                    Point point = new Point (x * 10, getHeight () - y);
                    if (previousPoint != null) {
                        graphics.drawLine (previousPoint.x, previousPoint.y, point.x, point.y);
                    previousPoint = point;
            public Dimension getPreferredSize () {
                return new Dimension (200, 400);
        public static void main (String[] parameters) {
            new Test ();
    }Kind regards,
      Levi

Maybe you are looking for

  • Creating a video DVD for PAL TV using video from an NTSC Camcorder

    Hey Guys, I'll be owning an AVCHD NTSC camcorder (Canon HF S10) and need to know whether Final Cut Express includes the functionality of importing the video from the camcorder and exporting it to a DVD for a PAL TV system. Will you share your experie

  • How to use embedded font (CFF) for Flash CS4?

    Hi, I am trying to embed "Arial Unicode MS" for use by TLF in my Flash CS4 project. As I googled around, I am using the "Flex SWC" approach, only not having any luck. Here is what I got: //Code in Flex ActionScript project: package     public class F

  • HT2499 DVD player v5.4.2 failure

    My DVD player application (v 5.4.2) launches when I insert a DVD, but fails to recognize the DVD and play it.  I have a MacBook Pro, running OS X v10.6.8.  The failure occurred slowly.  Over the course of weeks/months, the DVD player changed from pla

  • COMPATIBLE CAMCORDER & EXTERNAL HARDRIVE FOR MacBook WITHOUT FIREWIRE PORT.

    Good Evening Ladies & Gentleman, I have a MacBook(13" Aluminum 2008 version) that does NOT have a firewire port, just USB. - As far as CAMCORDERS go, What Model and Brand is best compatible with it? - Also, as far as EXTERNAL HARDRIVES goes, which on

  • Enhancement of web services

    Hi, I hope I am at the right place in the forum. I have to enhance a standard webservice with several customer fields. The documentation is clear about the point if enhancing one field (p.e.: userfullname) you will choose the right place that means r