Where can I get more info about Director and Projectors?

I would like to learn how to create interactivity within my animations-like menus and such.
a)where can I buy Director
b)where can I re-learn it after 10 years?
Thanks

you can buy new online in the Adobe store or try to find a usefull version like MX2004 or 11.5 on ebay or similar recources.
if you can get an upgradeable version at a cheap recource it will be better to upgrade to 11.5 as to buy  the full version 11.5.
See eligeble versions in the Adobe online store.
best
Wolfgang

Similar Messages

  • Where can I get more information about User exits?

    Where can I get more information about user exits,their related Tables and the source code of an User exit?
    Thanks

    would you please give the Internet addresses of these places?
    Mostly I want to get the source of some user exits in Oracle Application.
    If you know how and where can I get these sources,I'll appriciate if you let me know.
    Regards

  • How can i get more info about the sent data in RTP?

    Hello.
    I'm working with the examples AVTransmitt2 and AV Receive2 and i want to get more information about the data that it is being sent to de receiver side. In AVTrasmitt2 i only see a calling to processor.start();. How could i know each packet that AvTransmit2 sends to the other side. I want info like the size of the data, the quality, format, etc..

    Hi!
    As I mentioned above. RTPSocketAdapter has two inner classes, SockOutputStream and SockInputStream.
    SockOutputStream have a write method which is called when RTP data is sent over the NET. SockInputStream have a read method which is called when RTP data is received.
    If you for instance want to know exactly what is sent you can parse the byte array that comes into write.
    Like this:
    * An inner class to implement an OutputDataStream based on UDP sockets.
    class SockOutputStream implements OutputDataStream {
         DatagramSocket sock;
         InetAddress addr;
         int port;
         boolean isRTCP;
         public SockOutputStream(DatagramSocket sock, InetAddress addr, int port, boolean isRTCP) {
              this.sock = sock;
              this.addr = addr;
              this.port = port;
         public int write(byte data[], int offset, int len) {
              if(isRTCP){
                   parseAndPrintRTCPData(data);               
              }else{
                   parseAndPrintRTPData(data);
              try {
                   sock.send(new DatagramPacket(data, offset, len, addr, port));
              } catch (Exception e) {
                   return -1;
              if(debug){
                   System.out.println(debugName+": written "+len+" bytes to address:port: "+addr+":"+port);
              return len;
    private void parseAndPrintRTPData(byte[] data) {
         // part of header, there still left SSRC and CSRC:s
         byte[] rtpHeader = new byte[8];
         System.arraycopy(data, 0, rtpHeader, 0, rtpHeader.length);
         ByteBuffer buffer = ByteBuffer.wrap(rtpHeader);
         int word = buffer.getInt();
         // version
         int v = word >>> 30;
         System.out.println("version: "+v);
         // padding
         int p = (word & 0x20000000) >>> 29;
         System.out.println("padding: "+p);
         // extension
         int x = (word & 0x10000000) >>> 28;
         System.out.println("extension: "+x);
         // CSRC count
         int cc = (word & 0x0F000000) >>> 24;
         System.out.println("CSRC: "+cc);
         // marker
         int m = (word & 0x00800000) >>> 23;
         System.out.println("marker: "+m);
         // payload type
         int pt = (word & 0x00700000) >>> 16;
         System.out.println("payload type: "+pt);
         // sequence number
         int seqNbr = (word & 0x0000FFFF);
         System.out.println("sequence number: "+seqNbr);
         // timestamp
         int timestamp = buffer.getInt();
         System.out.println("timestamp: "+timestamp);
    private void parseAndPrintRTCPData(byte[] data) {
         // this only works when the RTCP packet is a Sender report (SR).
         // All RTCP packets are compound packets with a SR or Receiver report (RR) packet first.
         // part of header, there is still the report blocks (see RFC 3550).
         byte[] rtcpHeader = new byte[28];
         System.arraycopy(data, 0, rtcpHeader, 0, rtcpHeader.length);
         ByteBuffer buffer = ByteBuffer.wrap(rtcpHeader);
         int word = buffer.getInt();
         // version
         int v = word >>> 30;
         System.out.println("version: "+v);
         // padding
         int p = (word & 0x20000000) >>> 29;
         System.out.println("padding: "+p);
         // reception report count
         int rc = (word & 0x0F000000) >>> 24;
         System.out.println("reception report count: "+rc);
         // payload type, which is 200 in this case (SR=200)
         int pt = (0x00FF0000 & word) >>> 16;
         System.out.println("payload type: "+pt);
         // length
         int length = (word & 0x0000FFFF);
         System.out.println("length: "+length);
         // SSRC of sender
         int ssrc = buffer.getInt();
         System.out.println("SSRC: "+ssrc);
         // NTP timestamp
         long ntp_timestamp = buffer.getLong();
         System.out.println("NTP timestamp: "+ntp_timestamp);
         // RTP timestamp
         int rtp_timestamp = buffer.getInt();
         System.out.println("RTP timestamp: "+rtp_timestamp);
         // sender's packet count
         int nbrOfSentPackets = buffer.getInt();
         System.out.println("sender's packet count: "+nbrOfSentPackets);
         // sender's octet count
         int nbrOfSentBytes = buffer.getInt();
         System.out.println("sender's octet count: "+nbrOfSentBytes);
    }I added a boolean isRTCP to the constructor so to know what sort of data is sent.
    Hope this clarifies things.

  • What is java proxy, why its is used and where can i get more info abt this?

    Hi all!
    My current scenario is File->XI->j2ee appl.
    <b>Can XI sends file to my J2EE application using java server proxy.</b> If so how to develop that?
    what are the requisites that my SAP system should have?
    I have jdk1.5,Tomact5.0,eclipse3.1.2, NWDS2.0.9
    Where can i get full step by step procedure to develop that. Please help me
    Thanks

    Hi
    Go through these link:
    <a href="http://help.sap.com/saphelp_erp2005/helpdata/en/97/7d5e3c754e476ee10000000a11405a/frameset.htm">Java Proxy</a>
    <a href="http://help.sap.com/saphelp_erp2005/helpdata/en/5b/12b7e6a466456aa71ef852af033b34/frameset.htm">Configuring the Channel for Java Proxy Receivers</a>
    <a href="http://help.sap.com/saphelp_erp2005/helpdata/en/c5/7d5e3c754e476ee10000000a11405a/frameset.htm">Java Proxy Objects</a>
    Hope this will help.
    Rgards
    DhanyaR Nair

  • Where can i get more info on WSDL?

    I have a web service already running which is written in non-Java. I'm supposed to be writing a client to get services from this web service. I have been provided with a WSDL file. Can anyone tell me how should I go about it?

    You really should have a look at the list of options that wscompile offers. You can find them in YOUR_JWSDP_1.2_HOME/jaxrpc/docs/jaxrpc-tools.html or just attempting to run it with no options.
    Note the feature 'documentliteral' used like this -f:documentliteral. This will generate a document style set of stubs. If you don't understand the difference between RPC and document style web services you should probably do some google "research". A good document to get lots of low level web services info is http://www.ws-i.org/Profiles/Basic/2003-08/BasicProfile-1.0a.html.

  • Where can i get more documentation about JDOSQL

     

    Hi Manuel,
    Take a look at http://www.solarmetric.com/News_and_Events/JDO_in_the_News/.
    One of the first articles is a JDOQL article.
    I think the final spec also has a few examples of JDOQL.
    Is there something specific about JDOQL that you are looking for?
    Thanks, Neelan

  • Where can I get more information about website based apps for the iPhone?

    I just forgot and cannot seem to remember what the pages on the web for the iPhone are called. They are interactive and designed for use on the iPhone but are there, called up from the safari browser.
    I'm looking for a good interactive chess game site.
    TIA,
    Ken

    Web Apps
    <http://www.apple.com/webapps/whatarewebapps.html>
    <http://www.apple.com/webapps/>

  • Is there another way of getting apps from the appstore without putting your credit card number in, ive heard about the itunes gift card thing can anybody just give me more info about that and how i can buy free things free things from the appstorepls help

    Is there another way of getting apps from the appstore without putting your credit card number in, ive heard about the itunes gift card thing can anybody just give me more info about that and how i can buy free things free things from the appstore...pls help as im only a teenager and have no credit credit and my parents dont trust me with theres and they dont care about the fact that you can set up a password/.... PLEASE SOMEONE HELP I WILL BE SO GRATEFUL... And i would really like to get the iphone 4 but if there is no way of etting apps without your credit number then i would have to get a samsung galaxy s3 maybe ...

    You can set up an Apple ID without a credit card.
    Create iTunes Store account without credit card - Support - Apple - http://support.apple.com/kb/ht2534

  • Where can I get detailed info on bug fixes?

    Hi,
    Where can I get more information on bug fixes that are listed in the release notes of each version? For instance, I am interested in each of the following ones.
    GRANITE-1215 - Workflow Monitoring via JMX
    CRX-4167 - Improved handling for backup procedure on ""listDir = /""
    GRANITE-877 - Fixed ""Too many open files"" issue in monitoring
    GRANITE-741 - Replication can handle missing content in the activation queue
    GRANITE-1090 - Configure exclusion of publish instances for activation status updates
    CRX-2943 - Cluster: Enable audit log on workspaces
    Apart from the one line descriptions, I need more detailed info like what was the issue or why it occurs and how was it fixed, looking for something similar to a KB article.
    Thanks

    These are internal reference numbers and the detailed descriptions are not available publicly.
    Please note that they are not all bug fixes, they can also be: improvements; enhancement requests; and new features.

  • Where can I get current info on SysAdmin Certification(s) for Mac OSX SL and Lion?

    Where can I get current info on SysAdmin Certification(s) for Mac OSX SL and Lion? The Apple website for this is "under construction" for weeks now...
    Thanks,
    [email protected]

    Certification test for OS X 10.7 Lion are not available yet. I assume they will be nearly identical to the test of 10.5 and 10.6. Hopefully, the reason the certification website has been down for a while is that they are updating it with the new information. Though I really wouldn't expect any 10.7 certification test to be available for 2-4 months. Peachpit Press didn't publish their training material for 10.6 until October even though 10.6 was released in August.
    As far as the 10.6 Certifications:
    Certified Support Professional, 10.6 requires the 9L0-403 exam.
    Certified Technical Coordinator, 10.6 requires the 9L0-403 as well as the 9L0-510 (Server Essentials) exams.
    The information for the Certified System Administrator, 10.6 is "hidden" on the integral7 website but according to this Wikipedia entry, you need to pass the 9L0-510 Server Essentials exam as well as these three:
    Directory Services
    Deployment
    Security and Mobility

  • Where can I get my questions about JMX answered?

    Where can I get my questions about JMX answered?
    In the Jungle Mix of the World Wild Web, where are the dwellings of the JMX denizens?
    It recently came to my attention that the answer to that simple question may not be obvious...
    I hope the information provided there
    [ http://blogs.sun.com/roller/page/jmxetc#where_can_i_get_my ] will be helpful.
    Cheers,
    -- daniel

    See this page
    http://java.sun.com/products/JavaManagement/community/forum.html
    Bye for now
    CSJakharia

  • Where can i find more information about using or nesting formulas

    where can i find more information about using or nesting formulas

    I am not aware there is a resource specific to nesting functions.  this comes from understanding each function (or at least the description in the function help).
    a great resource is the function reference which you can see by typing the "=" sign in any cell:
    the important thing to note is:
    1) what are the inputs to the function and
    2) what does the function return (the output)
    the if() function (listed above) takes three inputs and returns one output.  These forums are a great resource!

  • Where can I get more information on Cryptography Extension ??

    Hi.
    Does anyone know how to set up the Jarsafe product ?
    Another thing is, how to set security for the Cryptography Extension ??
    can anyone tell me where can i get more information on this ??
    Thank you.

    You need to download the JCE 1.2.1 that is available on the http://java.sun.com website. Once you download the software, you need to make the jar files available. It is easiest to place the JCE jar files in the extension mechanism folder since permission has already been granted, by default, to any code in that folder. That folder is JAVA_HOME\lib\ext on Windows. JAVA_HOME is where the Java Runtime Environment is installed.
    When using JarSafe with Java Web Start, make sure that the JCE jar files are placed in the extension mechanism folder of the JRE that Java Web Start is using.

  • Where can i get any information about the application of labview on remote control??

    Where can i get any information about the application of labview on remote control??for example using labview to build a virtual laboratory.

    This is a big question. Contact me directly and we can discuss in detail what you are trying to accomplish.
    Mike...
    [email protected]
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Where can I find more information about the jpeg files in pages templates?

    I'm using a pages template (the menu in the 08 version). I like the three graphic images that are on the menu, how can I find out more info about them and their source?
    I can find the file extension in the inspector, but even when I google that title I come up with nothing.
    Any suggestions?

    The images are buried deep in the apps packages.

Maybe you are looking for

  • Upgraded from Elements 9 to 12 since upgrading from Windows 7 to 8.1 - Issues with my old psd's.

    Hi - in regards to moving up to the newer version of Elements, I find that all the psd files I was in the middle of working with (all of them multi-layered) don't seem to be associated with photoshop anymore.  When I double-click them, windows asks m

  • Significance of Long and short text Objects

    Hi all, I want to know the difference between Long and short texts and scenarios in which long texts are better to use than short texts.

  • Unable to create relational connection in IDT

    Hi, I am trying to create a Relation Connection in IDT. but i m getting the following error My System is: SAP BO 4.1 SP1 I was able to connnect when i made the connection through Super User. but i get the error when i make it with my ID. There is som

  • How to call Function through Soap Action

    Hi all, I have a Receiver communication channel in PI that sends data to from the interface to Oracle Webservice. At that moment a function should be called with two constant parameters and the third one is the xml with all the data. updateExchangeRa

  • Random Playback glitches with Premiere CC 7.2.2 on Mac Pro 2014

    I am having random playback glitches on my Mac Pro 2014. I can't figure out the cause since its only in the playback and export of the footage. The source footage is glitch free. I have noticed these two warnings when loading Premiere and Encode. [cl