Can I transform this in bytecode?

Hi guys
Here I am again.
I have this file.
I compile it so I can Obtain the class file.
Can I obtain from the class file a binary file?
If yes how can I do this?
(bytecode means binary file no?)
The file is:
import java.net.*;
import java.io.*;
import java.util.*;
public class CollabServer {
public int contator,contatore,cont;
public CollabServer() throws IOException {
contator = 0;
contatore = 0;
cont = 0;
ServerSocket server = new ServerSocket(5000);
System.out.println ("Accepting connections...");
while(true) {
if(contatore< 3){
Socket client = server.accept();
cont++;
System.out.println ("Accepted from " + client.getInetAddress());
new CollabHandler(client,cont).start();
contatore = CollabHandler.activeCount();
System.out.println ("contatore e' : " + contatore);
contator = CollabHandler.activeCount();
if (contator == contatore - 1) { contatore --; cont--;}
if (cont == 2) { server.close();}
public static void main(String args[]) throws IOException {
new CollabServer();
Any suggestions are treasure for me.
Thanks Maddy

Another example of source code more simple can help you have some ideas?
here's the source code:
import java.io.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class window1 extends JFrame {
public window1() {
setSize(400,150);
setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE);
Map2 msg1 = new Map2();
this.getContentPane().add(msg1);
setVisible(true);
class Map2 extends JPanel {
public void paintComponent(Graphics comp) {
Graphics2D comp3 = (Graphics2D)comp;
comp3.drawString(" this is an example", 50, 50);

Similar Messages

  • When I try to transform an object my screen goes blank, how can I correct this?

    When I try to transform an object my screen goes blank, how can I correct this?

    Please answer all questions you have been asked and provide all pertinent details if you want help.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers: 
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Can i use this script in illustrator?

    can i use this script in illustrator?
    Newsgroup_User

    // This script exports extended layer.bounds information to [psd_file_name].xml
    // by pattesdours
    function docCheck() {
        // ensure that there is at least one document open
        if (!documents.length) {
            alert('There are no documents open.');
            return; // quit
    docCheck();
    var originalRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.PIXELS;
    var docRef = activeDocument;
    var docWidth = docRef.width.value;
    var docHeight = docRef.height.value;
    var mySourceFilePath = activeDocument.fullName.path + "/";
    //  Code to get layer index / descriptor
    cTID = function(s) { return app.charIDToTypeID(s); };
    sTID = function(s) { return app.stringIDToTypeID(s); };
    function getLayerDescriptor (doc, layer) {
        var ref = new ActionReference();
        ref.putEnumerated(cTID("Lyr "), cTID("Ordn"), cTID("Trgt"));
        return executeActionGet(ref)
    function getLayerID(doc, layer) {
      var d = getLayerDescriptor(doc, layer);
      return d.getInteger(cTID('LyrI'));
    var stackorder = 0;
    // function from Xbytor to traverse all layers
    traverseLayers = function(doc, ftn, reverse) {
      function _traverse(doc, layers, ftn, reverse) {
        var ok = true;
        for (var i = 1; i <= layers.length && ok != false; i++) {
          var index = (reverse == true) ? layers.length-i : i - 1;
          var layer = layers[index];
          //  alert("layer.typename  >>> "+layer.typename ); 
          if (layer.typename == "LayerSet") {
            ok = _traverse(doc, layer.layers, ftn, reverse);
          } else {
      stackorder = stackorder + 1;
            ok = ftn(doc, layer, stackorder);
        return ok;
      return _traverse(doc, doc.layers, ftn, reverse);
    // create a string to hold the data
    var str ="";
    // class using a contructor
    function cLayer(doc, layer) {
    //this.layerID = Stdlib.getLayerID(doc, layer);
      this.layerID = getLayerID(doc, layer);
      //alert("layer ID: " + this.layerID);
      this.layerWidth = layer.bounds[2].value - layer.bounds[0].value;
          this.layerHeight = layer.bounds[3].value - layer.bounds[1].value;
      // these return object coordinates relative to canvas
          this.upperLeftX = layer.bounds[0].value;
          this.upperLeftY = layer.bounds[1].value;
          this.upperCenterX = this.layerWidth / 2 + layer.bounds[0].value;
          this.upperCenterY = layer.bounds[1].value;
          this.upperRightX = layer.bounds[2].value;
          this.upperRightY = layer.bounds[1].value;
          this.middleLeftX = layer.bounds[0].value;
          this.middleLeftY = this.layerHeight / 2 + layer.bounds[1].value;
          this.middleCenterX = this.layerWidth / 2 + layer.bounds[0].value;
          this.middleCenterY = this.layerHeight / 2 + layer.bounds[1].value;
          this.middleRightX = layer.bounds[2].value;
          this.middleRightY = this.layerHeight / 2 + layer.bounds[1].value;
          this.lowerLeftX = layer.bounds[0].value;
          this.lowerLeftY = layer.bounds[3].value;
          this.lowerCenterX = this.layerWidth / 2 + layer.bounds[0].value;
          this.lowerCenterY = layer.bounds[3].value;
          this.lowerRightX = layer.bounds[2].value;
          this.lowerRightY = layer.bounds[3].value;
       // I'm adding these for easier editing of flash symbol transformation point (outputs a 'x, y' format)
       // because I like to assign shortcut keys that use the numeric pad keyboard, like such:
       // 7 8 9
       // 4 5 6
       // 1 2 3
          var windowW=2048;
          var windowH=1536;
       this.leftBottom = this.lowerLeftX + ", " + (windowH-this.lowerLeftY);
       this.bottomCenter = this.lowerCenterX + ", " +  (windowH-this.lowerCenterY);
       this.rightBottom = this.lowerRightX + ", " + this.lowerRightY;
       this.leftCenter = this.middleLeftX + ", " + this.middleLeftY;
       this.center = this.middleCenterX + ", " + this.middleCenterY;
       this.rightCenter = this.middleRightX + ", " + this.middleRightY;
       this.leftTop = this.upperLeftX + ", " + this.upperLeftY;
       this.topCenter = this.upperCenterX + ", " + this.upperCenterY;
       this.rightTop = this.upperRightX + ", " + this.upperRightY;
      // these return object coordinates relative to layer bounds
          this.relUpperLeftX = layer.bounds[1].value - layer.bounds[1].value;
          this.relUpperLeftY =  layer.bounds[0].value - layer.bounds[0].value;
          this.relUpperCenterX = this.layerWidth / 2;
          this.relUpperCenterY = layer.bounds[0].value - layer.bounds[0].value;
          this.relUpperRightX = this.layerWidth;
          this.relUpperRightY = layer.bounds[0].value - layer.bounds[0].value;
          this.relMiddleLeftX = layer.bounds[1].value - layer.bounds[1].value;
          this.relMiddleLeftY = this.layerHeight / 2;
          this.relMiddleCenterX = this.layerWidth / 2;
          this.relMiddleCenterY = this.layerHeight / 2;
          this.relMiddleRightX = this.layerWidth;
      this.relMiddleRightY = this.layerHeight / 2;
          this.relLowerLeftX = layer.bounds[1].value - layer.bounds[1].value;
          this.relLowerLeftY = this.layerHeight;
          this.relLowerCenterX = this.layerWidth / 2;
      this.relLowerCenterY = this.layerHeight / 2;
          this.relLowerRightY = this.layerHeight;
          this.relLowerRightX = this.layerWidth;
          this.relLowerRightY = this.layerHeight;
      return this;
    // add header line
    str = "<psd filename=\"" + docRef.name + "\" path=\"" + mySourceFilePath + "\" width=\"" + docWidth + "\" height=\"" + docHeight + "\">\n";
    // now a function to collect the data
    var isParentAvailable=false;
    var prevLayerSetName="";
    function exportBounds(doc, layer, i) {
        var isVisible = layer.visible;
        var layerData = cLayer(doc, layer);
    //alert("layer.name  >>> "+layer.name );
    //alert("typename >>> "+layer.typename);
    /*if(layer.parent.name == "ParentTest"){
    for(var i in layer.parent){
        alert(" III >>> "+i+"<<<layer.parent>>"+layer.parent[i]);
      if(isVisible){
    // Layer object main coordinates relative to its active pixels
    var startStr="";
        if(layer.parent.typename=="LayerSet"){
            if(prevLayerSetName!="LayerSet")    {
                startStr="\t<parentlayer id='"+layer.parent.name+"'>\n\t";
            }else{
                   startStr="\t";
            // endStr="\t</parentlayer>\n";
             prevLayerSetName=layer.parent.typename;
          }else{
               if(prevLayerSetName=="LayerSet"){
                    startStr="\t</parentlayer>\n";
                prevLayerSetName="";
      var positionStr=layer.name.split(".")[0].substr(layer.name.split(".")[0].length-3,layer.name. split(".")[0].length);
      var assetPosition=leftTop;
      if(positionStr=="L_B"){
      assetPosition=leftBottom;
      }else if(positionStr=="B_C"){
      assetPosition=bottomCenter;
      }else if(positionStr=="R_B"){
      assetPosition=rightBottom;
      }else if(positionStr=="L_C"){
      assetPosition=leftCenter;
      }else if(positionStr=="C"){
      assetPosition=center;
      }else if(positionStr=="R_C"){
      assetPosition=rightCenter;
      }else if(positionStr=="L_T"){
      assetPosition=leftTop;
      }else if(positionStr=="T_C"){
      assetPosition=topCenter;
      }else if(positionStr=="R_T"){
      assetPosition=rightTop;
      var str2 =startStr+ "\t<layer name=\"" + layer.name
      + "\" stack=\"" + (i - 1) // order in which layers are stacked, starting with zero for the bottom-most layer
      + "\" position=\"" + assetPosition // this is the
      + "\" layerwidth=\"" + layerData.layerWidth
      + "\" layerheight=\"" + layerData.layerHeight
      + "\" transformpoint=\"" + "center" + "\">" // hard-coding 'center' as the default transformation point
      + layer.name + ".png" + "</layer>\n" // I have to put some content here otherwise sometimes tags are ignored
    str += str2.toString();
    // call X's function using the one above
    traverseLayers(app.activeDocument, exportBounds, true);
    // Use this to export XML file to same directory where PSD file is located
        var mySourceFilePath = activeDocument.fullName.path + "/";
    // create a reference to a file for output
        var csvFile = new File(mySourceFilePath.toString().match(/([^\.]+)/)[1] + app.activeDocument.name.match(/([^\.]+)/)[1] + ".xml");
    // open the file, write the data, then close the file
    csvFile.open('w');
    csvFile.writeln(str + "</psd>");
    csvFile.close();
    preferences.rulerUnits = originalRulerUnits;
    // Confirm that operation has completed
    alert("Operation Complete!" + "\n" + "Layer coordinates were successfully exported to:" + "\n" + "\n" + mySourceFilePath.toString().match(/([^\.]+)/)[1] + app.activeDocument.name.match(/([^\.]+)/)[1] + ".xml");

  • How can I transform an image into a different design?

    I've used the Distort effects in AE to modify the following video:
    Into this:
    I'm a pretty pleased with the results.  I simply used the Transform and Mirror effects.
    However, I have a bunch of other designs which I can't distort into a good alternative design by using the same method.  Here is an example:
    I am hoping some of you very clever people can come up with a method I can use for transforming this sort of design into something decent!
    Thanks!

    Thanks for the replies!
    I realise this is a broad question.  I will elaborate on the images from my first post in order to provide more details:
    1)  I have generated a number of animated designs, the blue image when animated looks like moving electricity.  All of the designs are geometric patterns of one form or another.  I have around 50 of these designs.
    2)  I want to create variations on these geometric animations. Rather than start from scratch and create a brand new design (which is a lengthy process), I want to use the effects in After Effects to create variations.  In the example I provided, I took the blue design and used a number of effects to create the green design.
    3)  Essentially, I now have two different animations.  The blue original, and the green variation.
    4)  Here is my question.  Are there any specific effects within After Effects, that allow me to distort an image/animation to such a degree that it essentially looks like a different image/animation?  So far, I have used Transform and Mirror.
    I gave Kaleidoscope a try, and that gave some good results, so thanks for that suggestion.
    5)  The problem I am having is that some of my other designs are more or less 'symmetrical' in appearance - like the yellow image from my first post.  The Transform, Mirror and Kaleidoscope effects do not really distort the symmetrical animations enough.  This is because they simply tend to either rotate the image (which is a circle, so rotating it does little), or they mirror the design (which again does little as the image is a circle).  So, are there any other effects I can choose which will distort a symmetrical geometrical design, whilst still retaining a degree of geometric appearance?
    I thank you again for your time, it really is appreciated!
    EDIT:  As Todd Kopriva suggested, here is the link to the other forum post:  http://forums.creativecow.net/readpost/2/1008997  - I forgot to link back to this forum from there.  I will add that shortly.

  • Can't figure this one out! CS4

    http://dougcabot.com/1.fla
    (13mb file)
    I'm trying to understand why, in the Flash project above, I get an odd discrepancy between the project as it appears on the Stage, and the version that exports as a SWF.
    Here's a description of the problem, though you might find it easier to simply look at the problem, in the blue bunny's legs, for yourself.
    I'm animating two characters originally drawn on paper by my daughters, age 4 and 3. The blue bunny character's legs are graphic symbols ("L/R leg squeeze") with a motion tween applied to them, an x-scale transformation, occurring only once per 30-frame bounce cycle.
    However, up a level or two at the "lyda armature bounce" symbol, the same transformation unexpectedly occurs three times over the same 30 frames -- seemingly tied to the "pose" keyframes. You can't see this mysterious effect except in the blue bounding box that you get when you select a leg.
    If anyone could explain this problem, I'd be grateful. Maybe something to do with my IK armature and the fact that within it, I have moved its component graphic symbols (all of them except the legs) to match the embedded leg-squish animation?

    Pseudo-classes and container styles are what you need - here
    are some
    tutorials.
    http://www.thepattysite.com/linkstyles1.cfm
    http://www.projectseven.com/tutorials/pseudoclasses/index.htm
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Jane Smith 2300" <[email protected]> wrote
    in message
    news:gmifle$5nt$[email protected]..
    > Further to my query, I found this article which suggests
    the following:
    > CSS Styles are a simple and fast way of making your site
    look good. In
    > this
    > tutorial you will learn how to make cool text rollovers.
    >
    > The trick is to use the a:hover style! If you work with
    Dreamweaver the
    > steps
    > to follow are given below:
    >
    > 1. In your style sheet choose New
    > 2. Next choose Use CSS selector
    > 3. In the drop down menu choose a:hover
    > 4. Finally, Define your style. You can choose your font,
    color, bold,
    > underline etc.
    > 5. You're done it! It's easy and fast and really cool!
    >
    > My problem is that where is the "Use CSS selector"
    option.
    >
    > I tried going under the CSS Styles panel and choose NEW
    RULE, but I don't
    > see
    > the option mentioned above. Am I starting in the wrong
    place?
    >
    > Jane
    >

  • How can i transform MFC HWND into jpanel or jframe instance

    Hi!
    I want to open a MFC window, then with the HWND , i want to open java subwindow created inside the MFC window with the HWND, i wonder if there is a way. how can i transform the HWND into jpanel or jframe instance.

    Look at the article in CodeProject and read the example in it. The other questions you can send to my email because I cannot give you concrete response in this forum.

  • How can I transform XML-DB to Relational DB?

    How can I transform XML-DB to Relational DB?
    I want to transform Oracle 9i XML-DB to Oracle 8i R-db
    please tell me how to do this .
    thank you

    hi
    good
    its idoc_xml or idoc_xml_transform
    go through the below link hope it ll help you to solve your problem
    Check with below link :
    Re: IDOCS_OUTPUT_IN_XML_FORMAT -- IDOCS_OUTPUT_TO_FILE
    Re: any function module to write-xml schema of a idoctype to an internal table
    /people/michal.krawczyk2/blog/2005/11/13/xi-how-to-check-your-idocs-on-a-web-page-from-sapgui -> this will help you
    thanks
    mrutyun^

  • I can't figure this one out...

    I've imported a .swf file into one of my table cells. The
    cell is 700x200. The .swf file is 700x200.
    http://www.associatespd.com/CHSA_Web
    I've recut and resaved my .psd file TWICE. I can't figure
    this one out.
    It seems that the flash file is stretching or something, its
    off one pixel on the right. When i set my flash file at 699 width,
    it was one pixel off on the right.
    Can any offer any suggestions. I'm completely out of ideas.
    Thanks in advance.

    Ally86 wrote:
    > Okay, so I have great vision. But what's the fix? The
    suspense is killing me!
    >
    > My logic is saying that since your graphics is off in a
    precise pattern, and
    > only in your Flash object, that it was moved somewhere
    in the flash file
    > itself. So it would make sense that it would line up if
    you replaced it with
    > the original image (if the problem is in the flash, not
    the table).
    >
    > In my mind, I imagine your flash includes half of the
    text graphics, cut off
    > at that horizontal split - since your movie loads in
    only part of the screen.
    > Maybe I'm beating a dead horse, but double check the
    layer (in your .swf file)
    > that your lettering is in for that eagle-eye split.
    >
    > If it's there, just move the second half over. If it
    can't be seen in the
    > flash, I promise I'll shut up. Just humor me, pretty
    please . . . (I have a
    > sneaking suspicion you're willing to try anything)
    >
    it looks like the graphic's width might have been transformed
    at 101% in Flash.
    If the actual image file has the right width, I don't see any
    other possible explanation.
    You should double check in Flash authoring, select your
    graphic (or your MC or whatever object you
    might have converted it to) and open the transform and/or
    info panel. One of these panels will show
    you the % width and height ratio of your object...
    seb ( [email protected])
    http://webtrans1.com | high-end web
    design
    Downloads: Slide Show, Directory Browser, Mailing List

  • Anybody can help with this SQL?

    The table is simple, only 2 columns:
    create table personpay(
    id integer primary key,
    pay number(8,2) not null);
    So the original talbe looks like this:
    ID PAY
    1 800
    2 400
    3 1200
    4 500
    5 600
    6 1900
    The requirement is to use one single query(no pl/sql) to show something lile the following, in other words, for each ID, the pay is the sum of all before itself and itself. So the query result looks like this:
    ID PAY
    1 800
    2 1200
    3 2400
    4 2900
    5 3500
    6 5400
    Again, just use one sql. No pl/sql. Anybody can help with this? I really appreciate that.
    thanks,

    Eh, people are so "analytically minded" that can't even notice a simple join?
    Counting Ordered Rows
    Let’s start with a basic counting problem. Suppose we are given a list of integers, for example:
    x
    2
    3
    4
    6
    9
    and want to enumerate all of them sequentially like this:
    x      #
    2      1
    3      2
    4      3
    6      4
    9      5
    Enumerating rows in the increasing order is the same as counting how many rows precede a given row.
    SQL enjoys success unparalleled by any rival query language. Not the last reason for such popularity might be credited to its proximity to English . Let examine the informal idea
    Enumerating rows in increasing order is counting how many rows precede a given row.
    carefully. Perhaps the most important is that we referred to the rows in the source table twice: first, to a given row, second, to a preceding row. Therefore, we need to join our number list with itself (fig 1.1).
    Cartesian Product
    Surprisingly, not many basic SQL tutorials, which are so abundant on the web today, mention Cartesian product. Cartesian product is a join operator with no join condition
    select A.*, B.* from A, B
    Figure 1.1: Cartesian product of the set A = {2,3,4,6,9} by itself. Counting all the elements x that are no greater than y produces the sequence number of y in the set A.
    Carrying over this idea into formal SQL query is straightforward. As it is our first query in this book, let’s do it step by step. The Cartesian product itself is
    select t.x x, tt.x y
    from T t, T tt
    Next, the triangle area below the main diagonal is
    select t.x x, tt.x y
    from T t, T tt
    where tt.x <= t.x
    Finally, we need only one column – t.x – which we group the previous result by and count
    select t.x, count(*) seqNum
    from T t, T tt
    where tt.x <= t.x
    group by t.x
    What if we modify the problem slightly and ask for a list of pairs where each number is coupled with its predecessor?
    x      predecessor
    2      
    3      2
    4      3
    6      4
    9      6
    Let me provide a typical mathematician’s answer, first -- it is remarkable in a certain way. Given that we already know how to number list elements successively, it might be tempted to reduce the current problem to the previous one:
    Enumerate all the numbers in the increasing order and match each sequence number seq# with predecessor seq#-1. Next!
    This attitude is, undoubtedly, the most economical way of thinking, although not necessarily producing the most efficient SQL. Therefore, let’s revisit our original approach, as illustrated on fig 1.2.
    Figure 1.2: Cartesian product of the set A = {2,3,4,6,9} by itself. The predecessor of y is the maximal number in a set of x that are less than y. There is no predecessor for y = 2.
    This translates into the following SQL query
    select t.x, max(tt.x) predecessor
    from T t, T tt
    where tt.x < t.x
    group by t.x
    Both solutions are expressed in standard SQL leveraging join and grouping with aggregation. Alternatively, instead of joining and grouping why don’t we calculate the count or max just in place as a correlated scalar subquery:
    select t.x,
    (select count(*) from T tt where tt.x <= t.x) seq#
    from T t
    group by t.x
    The subquery always returns a single value; this is why it is called scalar. The tt.x <= t.x predicate connects it to the outer query; this is why it is called correlated. Arguably, leveraging correlated scalar subqueries is one the most intuitive techniques to write SQL queries.
    How about counting rows that are not necessarily distinct? This is where our method breaks. It is challenging to distinguish duplicate rows by purely logical means, so that various less “pure” counting methods were devised. They all, however, require extending the SQL syntactically, which was the beginning of slipping along the ever increasing language complexity slope.
    Here is how analytic SQL extension counts rows
    select x, rank() over(order by x) seq# from T; -- first problem
    select x, lag() over(order by x) seq# from T; -- second problem
    Many people suggest that it’s not only more efficient, but more intuitive. The idea that “analytics rocks” can be challenged in many ways. The syntactic clarity has its cost: SQL programmer has to remember (or, at least, lookup) the list of analytic functions. The performance argument is not evident, since non-analytical queries are simpler construction from optimizer perspective. A shorter list of physical execution operators implies fewer query transformation rules, and less dramatic combinatorial explosion of the optimizer search space.
    It might even be argued that the syntax could be better. The partition by and order by clauses have similar functionality to the group by and order by clauses in the main query block. Yet one name was reused, and the other had been chosen to have a new name. Unlike other scalar expressions, which can be placed anywhere in SQL query where scalar values are accepted, the analytics clause lives in the scope of the select clause only. I have never been able to suppress an impression that analytic extension could be designed in more natural way.

  • My midi performances are being recorded at a velocity of 98 no matter how I play it. What's happening, how can I fix this? Thanks!

    my midi performances are being recorded at a velocity of 98 no matter how I play it.
    What's happening, how can I fix this? Thanks!
    Frank

    my midi performances are being recorded at a velocity of 98  
    Do you use "Caps Lock" cause your description reminds me of its default velocity setting?
    If yes, keep in mind that your computer keys are note velocity sensitive! There are a few keys in the "Caps Lock" which can be used to set the velocity output to some fixed dynamic values like "pp", "mf", "FF". Another scenario is to patch a Transformer between the Logic Physical Input & the Sequencer and set the Transformer to randomize the velocities, but it is not the same like using an external midi hardware controller which is velocity sensitive.
    A.G
    www.audiogrocery.com
    Author of: Logic GUI Deluxe(Free),
    Vox De Bulgaria - s.a.g.e vocal pack for RMX,
    Logic Snapshot Console,
    RMX Power CTRL - Logic Environment Midi editor for Stylus etc.

  • In FCP, holding Shift when moving a clip from track to track would lock it in position vertically.  Can you do this in Premiere Pro?

    That was pretty much the question right there.

    First reset position and scale. If you insist on doing this in the inspector then in the crop function in the inspector use the Type pop to select Crop. There are three options: Trim, Crop, and Ken Burns. It's easiest to do this in the viewer. After you reset position and scale, the transform function, press Shift-C. You'll see three buttons at the top as well as a keyframe button. Select the middle button and press the keyframe button when the playhead is at the start position. It'll look like this.
    Go to the end position and change the crop value. It'll look like this or something like it.
    Click Done.
    Can you do this step-by-step and see what happens?

  • When i double click itunes it doesn't open it just comes up with an error saying " The itunes library.itl file cannot be found or created. The default location for this file is in the 'itunes' folder in the 'music' folder". How can i fix this?

    When i double click itunes it doesn't open it just comes up with an error saying " The itunes library.itl file cannot be found or created. The default location for this file is in the 'itunes' folder in the 'music' folder. How can i fix this problem?

    Anyone can help to advice how to solve this issue ?

  • I have 3 different itunes accounts and would like to combine them into just one for all my devices, a macbook pro, an iphone 4S, an older IPOD, and a ver sion one Ipad. how can i do this on all devices ?

    i have 3 different itunes accounts and would like to combine them into just one for all my devices, a macbook pro, an iphone 4S, an older IPOD, and a ver sion one Ipad. how can i do this on all devices ?

    i had one for a long time, then when i got the ipad i didn't realize they would all still work under one so i set up the second one on that
    then when i got the new iphone i put in the info for the first and main one from my mac pro and it would not work at all, and i knew it was right, then it asked me to create a new one or i couldnt finish the setup
    hence why i have 3 now
    hard to believe you cannot combine into one
    oh well, i will just make them all accessible for all 3
    thanks

  • I have photos I want to group together in one album, but can't do this because some may have the same number. How can I combine them all into one album?

    I have photos I want to group together in one album, but can't do this because some may have the same number. How can I combine them all into one album? I was trying to move several albums onto a USB drive and it stated all other files exist at this location.  They are pictures taken at different times and have the same number I guess.

    In iPhoto albums may contain photos with the same file name - iPhoto handles that just fine
    If you are exporting them to move somewhere else use the sequential file name feature of export to give each file a unique name
    LN

  • Trying to drag pdf files i have and combine them into one pdf file in the account i just purchased with Adobe. when i drag a pdf file over Adobe doesn't accept it. says it can not convert this type of file. but it is an Adobe file. Do I need to change it?

    Trying to drag pdf files i have and combine them into one pdf file in the account i just purchased with Adobe. when i drag a pdf file over Adobe doesn't accept it. says it can not convert this type of file. but it is an Adobe file. Do I need to change it in some other form befor dragging it?

    Hello djensen1x,
    Could you please let me know what version of Acrobat are you using.
    Also, tell me your workflow of combining those PDF files?
    Please share the screenshot of the error message that you get.
    Hope to get your response.
    Regards,
    Anubha

Maybe you are looking for

  • File Sharing with Windows PC

    I've just purchased a Mac Book Air.Is it possible for me to share files with my older Windows PC working on the same wireless network as that of the new Mac Book Air?

  • Ram or Processor

    Looking at getting a new macbook pro with retina, I'm getting the 13'' modle, just wuick question, both the following options are the same price, but which one is best and why? Intel Core i5 Dual core, 2.6Ghz turbo boost to 3.1Ghz with 16Gb RAM or In

  • Disable/hide Command Field in T-iViews

    Hi All, I have ctreatd some transaction iviews. I am using SAP GUI type as SAP GUI for windows, I there any way to disable/hide the command field so that user user cannot enter any other T-Code and navigate to that transaction. Waiting for your input

  • Improving Flash Slideshow

    So I have made a basic slideshow on flash for a website. Nice but simple, 3 images fading in and out. But I want to make a slideshow that moves either vertically or horizontally, but most likely at an angle. I also want some text to either fade in or

  • I cancelled my itunes through paypal and now I want to reactivate it. What do I need to do?

    I cancelled my itunes merchant with paypal and now I want to reactivate it. What do I need to do?