Trackball (Mechanical Interface) doubts

Hi all! (and excuse my english)
I have some doubts with trackball sphere mechanism as future interface for my Shockwave 3d "planet earth". In future, my client will plug a "trackball sphere" physical interface to use instead mouse. This will only be an sphere, and no click button will available there (no drag, only move), in short words "the trackball sphere is the planet in the hands of user". My question is about cursor: always my planet must be moved by trackball (using cursor moves detection, i supose), but ,what about mouse coordinates? If user moves and moves a lot the trackball mechanism, my system will continue working fine, even when cursor be thousands of pixels out of stage?. I must relocate cursor to stage everymoment?.
Il be glad to ear some related experiences about "trackballs"
Tks in advance.!

Hi.
I get my answer on friendly forum.
If some of you found this thread because same problem, go and read:
http://www.directorforum.com/showthread.php?t=2176&highlight=cursor+out+stage

Similar Messages

  • Interface doubts

    hi all,
      i have 2 doubts in interfaces in OO ABAP
    1. do all the methods in interface are by default abstract
    2. do all the methods have to be compulsorily implemented
    Regards,
    N Manjrekar

    Hi,
    No all methods in interface are not default abstract.
    i think all the methods of interfaces have to be implemented in the class.oterwise u will get error implementation missing for method.
    Regards,
    Sruthi

  • Supplier Interface Doubts

    Hi All,
    I have some doubts regarding Supplier Interface.
    We need to import Suppliers, Sites, Contacts and Banks. So do we need one program to create all in one, or we need separate programs for each?

    Hi,
    The supplier import jobs are designed so that you can support suppliers, sites, and contacts as individual or single requests, or there is a request set that will run all of them, the Supplier Open Interface Request Set.
    There is not a concurrent request, either a single or request set, that allows you to run the bank import API. That has to be launched manually.
    Regards,
    Cheryl

  • Messages interfaces doubt in Webservices and BPM design

    i have a requirement where SAP sends data to some web application.. so we are going to use Proxy to webservices.. in this we are also using BPM.
    SAP sends the data to PI ..in PI BPM triggers it will check some login credintials with webserices application and response will be sent back to PI .. in PI it will have to append the login session id with SAP data and then finally PI pushes the data to target system(web application).
    SAP--SAP-PI (BPM)web services.
      1. SAP sends data to PI
      2. PI checks the login credentials with webservices
      3.Sen back the session id
      4. session id appended to SAP data
      5. Final data will be sent to webapplications
    So how many msg interfaces that i need to create.?
      1 DATAfrom SAP_Outbound (Asyn) ---
      2. Data from SAP_Abstarct(Asyn)_BPM
      3. Data webapplication to SAP- (abstarct )-Sync   ( which gets the session id)
      3. FinalDatato Webapplication(Asyn)-Abstract
    Please correct me if i'm wrong...
    Regads,
    Deeps

    Hi Shabarish,
      Proxy call is Async
    Prateek,
       can we make it with SOAP lookup? which one is best the option BPM or SOAP lookup..
       i hope it is always good to have a interface without BPM right ?
      Can you tell me how to approach SOAP lookup.. ?
    Regards,
    Deep

  • Configure Network (Ethernet Cards) interfaces doubts.

    Hi All,
    I m beginner in Solaris/Unix, and I have same problems in configure my network.
    I have one machine with 2 Ethernet Cards, this machine has multiboot, than it have Solaris 10 and Windows XP.
    I will show the configuration that I have on Window,I need the same configuration in Solaris:
    In eth0:
    IP: 192.168.0.117 (In Solaris the name of this is in ifconfig is IP, OK?)
    Mask: 255.255.255.0 (In Solaris the name of this is in ifconfig is
    netmaks , OK?)
    Gatway: 192.168.0.254 (In Solaris the name of this is in ifconfig broadcast, OK?)
    Primary DNS: 192.168.0.254 (In Solaris I don�t know how configure this)
    Secondary DNS: void (In Solaris I don�t know how configure this)
    I Have an DHCP Server in 192.168.0.254, than I can use dhcp.
    The problems, When I try use DHCP:
    Ifconfg eth0 DHCP
    This command delay and return an Error.
    If Itry configure manually, like
    Ifconfg eth0 192.168.0.117 (this OK)
    Ifconfg eth0 netmask 255.255.255.0 (this OK)
    Ifconfg eth0 broadcast 192.168.0.254 (here the 254 is changed to 255 that is broadcast default, but in my net broad cast or router is in 254)
    Other thing how I save this configuration. When I restart I lost all changes�
    Well in second interface the problem is same, but I didn�t have DHCP:
    IP: 200.44.136.145 (In Solaris the name of this is in ifconfig is IP, OK?)
    Mask: 255.255.255.192 (In Solaris the name of this is in ifconfig is netmaks , OK?)
    Gatway: 200.44.136.129 (In Solaris the name of this is in ifconfig broadcast, OK?)
    Primary DNS: 4.2.2.2 (In Solaris I don�t know how configure this)
    Secondary DNS: void (In Solaris I don�t know how configure this)
    fconfg eth1 200.44.136.145 (here .44 is changed to 36)
    Any one can help-me please?
    Thanks

    yes. you got it .... eg..
    /etc/hostname.le0
    /etc/hostname.le1
    in here put the hostname ... so at the shell prompt:
    # hostname <cr>
    should give your hostname.
    now, in the hosts file: eg:
    # Internet host table
    127.0.0.1     localhost     
    <your ip address> <your hostname>     loghost
    129.156.89.252 host2
    you need to reboot after this.
    if you get a 'bad address' error on boot,
    you probably have a mismatch of hostnames/ip addresses somewhere in their respective files.
    also, see:
    # man hosts
    # man ifconfig

  • Method access$0() and Interfaces doubts

    Hello All,
    I am working on a class browser, I have created one and it works successfully to a certain extent. But The class which I am having a Demo for a Tree Implementation in GUI, has a method called access$0() which I guess is automatically created on runtime by the super classes or somewhere, please let me know how and where can I get more details about this method.
    Also If my class under inspection is implementing one or more interfaces, how can I access its method names and variables.
    Also One more question, does Java maintain a list of sub-class information for each class somewhere.. just like Small Talk or it doesn't?? Please explain.
    Thanks,
    Sirish

    access$ methods are widely used to access private
    members of enclosing class from its inner class and
    vice-versa. These methods are generated by Java
    compiler, not by JVM runtime.
    See
    http://java.sun.com/docs/books/jvms/second_edition/htm
    l/ClassFile.doc.html#80128 for more details about
    synthetic class members.
    Other questions need more clarification.I will check that link, Regarding the other two questions:
    2. What I meant in my interfaces question is that... Say I have a class X that Extends Y and implements A,B
    Then if I want to display all the methods and fields of these classes and interfaces in a recursive way, till I reach the Object class, by going to superclass every time, then I understand I can get to class Y simple by
    using x.getSuperClass()
    but how can I get the interface methods?? and go upwards in that hierarchy??
    3. Sub class question is like this - Say I have 3 classes all user defined in the same directory Class A,B,C where A is the superclass of B and C. My class browser is displaying the hierarchy details of A, then is there any way to put in the details of B and C in the same hierarchical display or just display a separate list of subclass that this class has. I am not sure whether I have made it clear still.
    (I didnot understnad your reply on changing the class path, can you please explain it in a bit more detail, provided it holds for this question.)
    Regards,
    Sirish

  • Interface doubt

    Hi experts
    i got requirement modification of AR interface(invoices, credit memo, debit memos),  previously  Documents in SAP are posted with external numbers provided by the legacy system, now Documents posted to SAP by internal genearated numbers.
    how can achive this.
    thanks
    sitaram

    Hi,
    The below link will help you to achieve your issue.
    Re: conversions and interfaces
    Cheers!!
    VEnk@

  • Report to report interface doubt , RSBBS tcode ?

    Hi
    I have gone thorugh sdn and could not get much details on this topic. There is a high level query A with the hierarchy restriciton for a single node, that is it will show the summary of that ( total hierarchy) in a row without hierarchy display and all the 3 amount fields related to it, YTD, and other period calculations.
    Now I want to create a report B which will display the detailed level hierarchy of the single row in report A. so i believe we need to pass the hierarchy through hierarchy node variable in RSBBS tcode from report a to report B. Now my question is both the report's have the same column's and KF's and the same input selections. Do we need to pass the input selection of report A to report B as well or only the hierarchy variable ? Please advise if its not clear.
    for example, report A
    Row1         amount 1      amount 2      amount 3
    Report b
    Node 1          amount 1     amount 2    amount 3
         Node2                 amount 1
    amount 2
    amount 3
    both the report have same KF's and filter's . now my questions.
    1) do I need to have the same  user input selection created on report a as in report B ? Is it mandatory ?
    2) if the user input some fy and fyperiod on report a, how will those be known to report B as we are passing only the hierarchy value through hierarchy node variable.
    3)  how will the report B know about the user input selectioin given in report A ? Do we need to pass through in RSBBS from report a to report B ?
    NOTE: report A and report B has the same filter's and same column's and same KF's. Its only the report A has an aggregated single row and report B has a hierarchy display of the info given in report A.
    Thank You
    DR

    Hi Meghana
    Thanks for the info.
    However, I need few input in this regards,  copied below from your link.
    General
    Characteristics that are to be
    filled from the sender query should be defined as free characteristics. A
    hierarchy node restriction, for example, can also be transferred to free
    characteristics as a property.
    Changeable variables for the
    receiver query are not filled by the RRI.
    I have created another query 2 with the same KF's, selection, variable's etc. When I right click and select the query 2, its showing as "No applicable data",
    is it because its not able to pass the user input selection from query 1 to query 2 ?
    when i use the refresh option on the top of workbook and select the same input given in query 1, it works fine.
    a) May I know who can this be fixed. I believe this is the issue given below
    that the changeable variables are not filled by the RRI. Is there any solution to pass the input variables from query 1 to query 2.
    b) Do i need to pass the hierarchy information from query 1 to query 2 through free characteristics ? I mean shoudl i use the hierarchy variable in query 2 in free char ?
    Thanks
    DR

  • Cleaning a Mighty Mouse

    Currently I use a Mighty Mouse but recently the track ball on the top has stopped working in one direction and this is most probably due to dirt accumulation in the mouse. Anyone have an idea how to open the mouse to clean it? Thanx.

    The Apple Store (Genius Bar) told me to get a hard and flat surface, and cover it with a lint free thin (preferably light-coloured) cloth.
    Then "rub quickly (but carefully! with gentle pressure) running on the trackball from side to side, up and down"
    The cloth will then show any debris from underneath the trackball that is left.
    Note, I personally think that moisturiser on the hands might impede the life of the trackball-mechanism (due to oils that deteriorate the rubber ball).
    Hope that helps
    Message was edited by: Alexandre

  • Cube won't process iTunes without an audio device present?

    Hi.
    I've got a G4 Cube with no built-in Audio inputs or outputs (don't have the original USB speakers), so Tiger shows up as having no audio I/O options. I'm trying to use iTunes, with Nicecast, to broadcast some music, but because of the lack of audio devices iTunes (6.0.3) simply won't play - the play icon changes but the time doesn't progress and nothing is processed.
    Does anyone know if a way to fool the Cube into thinking there's an audio device, so that it plays and is processed by CoreAudio? A software-only audio device or something? Would rather avoid having to buy some USB speakers just to get this to work.
    Thanks for your time.

    Hi,
    Don't know about software doing the job because it's a mechanical interface. Any sound output will require USB or Firewire devices. Griffin Technology iMic USB Audio Interface is one inexpensive way to 'trick' the Cube into thinking there are speakers. It costs about $35, Google for prices.
    Just plug it in, the Cube will see an output, set sound pref's and the program will work. Later, if you want speakers, you can get a cheap set and plug it into the iMic.
    Regards,
    Dave

  • Labview employment in MA

    Hello
    I have MSEE degree and about 4 years labview experience as test engineer in the past. I am looking for labview developer/test engineer job(perm/contract) in MA. Please let me know if you have any information.
    Thanks a lot.

    Hello,
    I saw your message and was wondering if you were still entertaining new opportunities.
    I have a client on the North Shore who is looking to hire a Certified Labview Developer. The candidate will use Labview to develop test stands and production equipment as well as develop production releases and special purpose test software. I have included a job description below for your convenience.
    Essential Responsibilities:
    ·         Develop or maintain LabVIEW applications to operate the development systems and skids for several product platforms.
    ·         Employ hardware platforms of National Instruments hardware, off-the-shelf equipment, plus custom hardware.  Experience desirable in SCXI, CompaqDAQ, and USB hardware. Write software to control equipment and record data.
    ·         Perform advanced LabVIEW programming techniques and interaction of the software with the hardware. TCP/IP and CAN interfaces; LabVIEW Real-Time module and LabVIEW FPGA modules.
    ·         Support, improve and modify existing LabVIEW applications as necessary to support company-wide product development efforts.
    ·         Interpret and understand wiring schematics and simple control signal test bench wiring.
    ·         Troubleshoot software, electrical control, and mechanical interface issues and suggest or implement creative solutions.
    ·         Document all existing and new LabVIEW applications as needed.
    Qualifications: (required unless otherwise noted)
    Education
    Bachelor’s degree in Software, Electrical Engineering or Computer Science.  Master’s degree a plus.
    Must be a Certified LabVIEW Developer.
    Previous Work Experience
    2 to 3 years LabVIEW application programming experience.  Process control systems experience is a plus.
    5-7 years previous experience with software development understanding hardware/software interfaces and the willingness to work in the hardware and process areas.
    Special Skills and Abilities
    ·         Demonstrated excellence with LabVIEW a must.
    This is a full-time, permanent position with a growing company. They are offering a competitive salary, bonus potential & full benefits.
    If you know anyone who would be interested in this position, please have them send a current, Word-formatted resume to [email protected] and follow up with a phone call (231-518-4066) so we can discuss the details. Thank you in advance for your assistance.
    Thank you,
    Brad Fields
    Permanent Placement Division Manager
    Aries Group, Inc.
    Direct:  231-518-4066
    Toll Free:  877-806-7977, Ext. 272
    [email protected]
    www.ariesgroupinc.com
    www.linkedin.com/pub/brad-fields/4/828/875

  • Looking for work that is commutable from Chelmsford, I am CLAD qualified and have several years experience developing test solutions

    Hi
    I wondered if anyone new of any job openings that are commutable from Chelmsford Essex on the perm side of things or any contract
    roles available?

    Hello,
    I saw your message & I was wondering if you were still looking at new opportunities.
    I have a client on the North Shore who is looking to hire a Certified Labview Developer. The candidate will use Labview to develop test stands and production equipment as well as develop production releases and special purpose test software. I have included a job description below for your convenience.
    Essential Responsibilities:
    ·         Develop or maintain LabVIEW applications to operate the development systems and skids for several product platforms.
    ·         Employ hardware platforms of National Instruments hardware, off-the-shelf equipment, plus custom hardware.  Experience desirable in SCXI, CompaqDAQ, and USB hardware. Write software to control equipment and record data.
    ·         Perform advanced LabVIEW programming techniques and interaction of the software with the hardware. TCP/IP and CAN interfaces; LabVIEW Real-Time module and LabVIEW FPGA modules.
    ·         Support, improve and modify existing LabVIEW applications as necessary to support company-wide product development efforts.
    ·         Interpret and understand wiring schematics and simple control signal test bench wiring.
    ·         Troubleshoot software, electrical control, and mechanical interface issues and suggest or implement creative solutions.
    ·         Document all existing and new LabVIEW applications as needed.
    Qualifications: (required unless otherwise noted)
    Education
    Bachelor’s degree in Software, Electrical Engineering or Computer Science.  Master’s degree a plus.
    Must be a Certified LabVIEW Developer.
    Previous Work Experience
    2 to 3 years LabVIEW application programming experience.  Process control systems experience is a plus.
    5-7 years previous experience with software development understanding hardware/software interfaces and the willingness to work in the hardware and process areas.
    Special Skills and Abilities
    ·         Demonstrated excellence with LabVIEW a must.
    This is a full-time, permanent position with a growing company. They are offering a competitive salary, bonus potential & full benefits.
    If you know anyone who would be interested in this position, please have them send a current, Word-formatted resume to [email protected] and follow up with a phone call (231-518-4066) so we can discuss the details. Thank you in advance for your assistance.
    Thank you,
    Brad Fields
    Permanent Placement Division Manager
    Aries Group, Inc.
    Direct:  231-518-4066
    Toll Free:  877-806-7977, Ext. 272
    [email protected]
    www.ariesgroupinc.com
    www.linkedin.com/pub/brad-fields/4/828/875

  • Calculations with Web Report results

    Hello, I'm just getting started with SAP BW and Web Reporting and that’s why I need some help. I have created a Web Report that shows the query results in a table. Now I want to make further calculations within the report. Therefore I have to access the results of the web report and I just don’t know how to do this. Maybe there are some javascript functions for that problem?

    A basic form of web report is to show the Bex report in Web table form, for that we assign the query to the table in the web table item.
    if further calculations need to be done using the already present keyfigures, then you can use the Calculated Key figure.
    Depending on the scenario you can also define the cell calculations, if you have structures both in the rows and columns.
    Refer to Web Table API to manipulate the cells of  the web table. This article using Web Table API could be helpful for you.
    Table interface doubt ?

  • No sound on s3644uk desktop after loading sp2 and latest nvidea 9300ge driver vista 64bit

    Hi,
    On start up screen went to large font and there was no sound.Went to device manager to find error code 43(windows has stopped this device working).System restore would not work.I then restored to factory condition.Problem still exists.
    Tried installing nvidea ge9300 driven from hp for my pc and also via the pc.Problem still exists.This then became a intermittant problem.Worked sometimes  on start up(both sound asnd graphics).Latest fix was downloading latest driver from nvidea website and running microsoft updates .Now up to date with sp2.Graphics seem ok now but there is still no sound.I have run the hp diagnostic tool for video card which shows passed.But then shows code uc316-25w.I have also run a realtek ac97 update through microsoft updates.Run realtec audio test through hp diagnostics which failed code sc316-20w.Can anyone help please

    Hello Peter
    The video card in your computer is not integrated into the motherboard; instead it takes up a PCI Express x16 1.0 slot. You may want to try a new power supply first as this could be related to the power supply no longer supplying ample power to the video card for it to work at its full capacity, but also keep the following things in mind when looking for a new video card:
    1. Make sure the card is a low profile card and that it has a low profile bracket. This makes sure the card will have clearance in the slimline case.
    2. Make sure the card is compatible. What you will want to see is that the card is meant for a PCI E x16 slot. The card can be PCI 1.0 through 3.0 compatible and should still run in the PCI E x16 1.0 slot. (Note: PCI E x1, x4, and x8 card can fit and run in the x16 so this opens up more possibles, however, there are quite a few low profile x16 cards out and those tend to be better. PCI SIG that creates the PCI E specifications purposely makes PCI E slots compatible with software and mechanical interfaces.) Source: PCI SIG
    3. Make sure you have a strong enough power supply. Your computer has a 160Watt power supply. Also some video cards require additional power connected from newer power supplies. Some of my suggests below suggest having a minimum 300-400 Watt power supply. If you need to upgrade your power supply make sure it has a 24 pin or 20+4 pin motherboard power connector, Sata power, and molex power connectors. Lastly keep in mind the physical size of the power supply it looks like your power supply is a Mini ITX form factor. Also if you live outside the US make sure that there is a switch on the power supply to change voltage.
    Some possible suggestions:
    nVidia: GeForce GT 610, GeForce GT 520, or GeForce 8400 GS shouldn't require a new power supply (probably the most similar to your current card).
    ATI/AMD: Radeon HD 6450, Radeon HD 6570, or Radeon HD 6670.
    Don't forgot to say thanks by giving "Kudos" to those that help solve your problems.
    When a solution is found please mark the post that solves your issue.

  • INTERFACE DETERMINATION AND RECEIVER DETERMINATION DOUBTS???

    Hi Team
    I am having doubts regarding the Interafce Determination and the receiver determination. In pur landscape in our objects, some times i am seeing a Condition is being defined in the Interafce Determination  and sometimes  am seeing a Condition is being defined in the receiver determination . could you please let me know the differences between the above two.
    thanx in advance.

    Hi Nabhinav,
    Condtions in receiver determination - These conditions are evaluated and executed to determine the receivers for this incoming message.
    Condtions in Interface determination - These conditions are evaluated and ececuted to determine the Interface mapping to be called in order to map the source message to the target message.
    Please take a loot at these links for more details:
    http://help.sap.com/saphelp_srm50/helpdata/en/26/5ccd3bb4560f01e10000000a11402f/content.htm
    http://help.sap.com/saphelp_nwpi711/helpdata/en/48/ce2a8e3a8e5430e10000000a42189b/content.htm
    Also, search the SDN before posting you query.
    Regards, Gaurav.

Maybe you are looking for

  • Photos from iphoto placed in imovie breakdown

    Imovie 4.01, when I move photos from iphoto into the clip viewer the photo clips become unreadable on play back. About halfway through the clip the picture changes to gray with repeating black and white rows of small pixelated squares. This happens t

  • $$$ for a replacement 5s in canada?

    Hi guys i'm new here so dont judge me too much on the knowledge of iphone yet >< So i have this iphone 5s and the 1 year limited warranty are due next July, i'm just wondering if they dont cover the scratch and a slight dent at the bottom right corne

  • RE: DBIF_RSQL_INVALID_REQUEST dump

    Hi all, We are getting a dump DBIF_RSQL_INVALID_REQUEST in SAPLSDOC Runtime Error          DBIF_RSQL_INVALID_REQUEST Date and Time          18.06.2007 11:57:47 ShrtText Invalid call of database interface. What happened? The current ABAP/4 program ter

  • Snow leopard and orf file from Olympus OMD EM1

    Hello, is there any chance to see the preview of these orf file without upgrading to 10.8.5 or later? I have Aperture 3.2.4 with Digital Camera Raw 3.13.0 and it works fine with the Olympus E 620 orf files. I can see the preview of these orf also fro

  • Macromedia Dreamweaver 8 - Crashes on opening

    Hi, I have successfully been using Dreamweaver 8 for a few months, then suddenly this morning on opening the program, it would not start. It was closed succesfully the night before but this morning, the program try's to open but the opening box loads