Combining these two programs...

I have two programs i want to combine into one. I have a solar system view which shows the solar system as a whole and i also have another program where you can individually view the planets by clicking on a button to load them. What i want to be able to do is in the solar system model (which shows the whole solar system) i can click on a planet and bring up the planetary view that i have. So i have two things i need to do:
i) A mouse event to allow the user to click on a planet in full solar system view and load the 3D representation of that planet
ii) A way to seperate my planet identifiying program so that each planet has its own code so that they can be clicked on individually
Lets start with number 1:
My code for the solar system model:
onClipEvent (load) {
function path(t1, t2){
  return Math.sqrt(t1 * t1 + t2 * t2);
function label(){
  showLabel = !showLabel;
  if(showLabel) for(k = 0; k < count; k++) this[k].info = n[k];
  else for(k = 0; k < count; k++) this[k].info = "";
c1 = new Array();  // endpoints coordinates of each ellipse conjugate diameters
c2 = new Array();
c3 = new Array();
this.drag._x = 800;  // set zoom
this.drag._y = -100; // set elevation
var showLabel = false;
// Planetary Orbital Elements (J2000)
J2000 = new Date(2000, 0, 0, 12);
n = new Array('Mercury', 'Venus', 'Earth', 'Mars', 'Jupiter', 'Saturn', 'Uranus', 'Neptune','Quaoar','Varuna');
a = new Array(0.38709893, 0.72333199, 1.00000011, 1.52366231, 5.20336301, 9.53707032, 19.19126393, 30.06896348, 39.48168677, 17.94175491, 43.373493, 13.6209635, 43.2718562);
e = new Array(0.20563069, 0.00677323, 0.01671022, 0.09341233, 0.04839266, 0.05415060, 0.04716771, 0.00858587, 0.24880766, 0.96727724, 0.037457, 0.3809974, 0.0529874);
i = new Array(7.00487, 3.39471, 0.00005, 1.85061, 1.30530, 2.48446, 0.76986, 1.76917, 17.14175, 162.24220, 7.992, 6.93691, 17.12943);
o = new Array(48.33167, 76.68069, -11.26064, 49.57854, 100.55615, 113.71504, 74.22988, 131.72169, 110.30347, 58.86004, 188.923, 209.32713, 97.28538);
w = new Array(77.45645, 131.53298, 102.94719, 336.04084, 14.75385, 92.43194, 170.96424, 44.97135, 224.06676, 111.86560, 156.292, 339.09846, 275.22088);
l = new Array(252.25084, 181.97973, 100.46435, 355.45332, 34.40438, 49.94432, 313.23218, 304.88003, 238.92881, 115.68, 267.1875, 48.62884, 83.80675);
p = new Array(87.969, 224.701, 365.256, 686.980, 4332.589, 10759.22, 30685.4, 60189, 90465, 27795, 105192, 18573, 104096);
cr = Math.PI/180;
today = new Date();
dt = (today - J2000)/864e+5;
count = n.length;
inc = 1;
var pre = null; // drag motion detect
zoom = 8;
d = new Array();
B = new Array();
co = new Array();
so = new Array();
ci = new Array();
si = new Array();
for (j = 0; j < count; j++) {
  d[j] = 2 * Math.PI / p[j];
  co[j] = Math.cos(o[j] * cr);
  so[j] = Math.sin(o[j] * cr);
  ci[j] = Math.cos(i[j] * cr);
  si[j] = Math.sin(i[j] * cr);
  u[j] = (w[j] + l[j]) * cr;
  b[j] = Math.sqrt( (1 + e[j]) / (1 - e[j]) );
  c1[j] = traf(0);
  c2[j] = traf(Math.PI / 2);
  c3[j] = traf(3 * Math.PI / 2);
  this.attachMovie("ellipse", count + j, j);
  this.attachMovie("dot", j, j + count);
  if(j > 8) this[j]._alpha = this[count + j]._alpha = 50;
function traf(e1){
  vector = new Object();
  var v = 2 * Math.atan( b[j] * Math.tan(e1/2) ) + u[j];
  var r = a[j] * ( 1 - e[j] * Math.cos(e1) );
  vector.x = r * ( co[j] * Math.cos(v) - so[j] * ci[j] * Math.sin(v) );
  vector.y = r * ( so[j] * Math.cos(v) + co[j] * ci[j] * Math.sin(v) );
  vector.z = r * si[j] * Math.sin(v);
  return vector;
function place(pass){
  cmx = Math.cos(mx);
  smx = Math.sin(mx);
  zoom = 5 + drag._x/20;
  if (zoom < 1) zoom = 1;
  if (zoom > 120) zoom = 120;
  this.sun._xscale = this.sun._yscale = zoom;
  xk = zoom * pass.x;
  yk = zoom * (pass.z * smx - pass.y * cmx);
  this[j]._x = xk;
  this[j]._y = yk;
  if(pre != drag._y * drag._x){      // if zoomed or turned transform ellipses
   x1 = zoom * c1[j].x;
   y1 = zoom * (c1[j].z * smx - c1[j].y * cmx);
   x2 = zoom * c2[j].x;
   y2 = zoom * (c2[j].z * smx - c2[j].y * cmx);
   x3 = zoom * c3[j].x;
   y3 = zoom * (c3[j].z * smx - c3[j].y * cmx);
   ax = (x2 + x3 + y3 - y2)/2 - x1;
   ay = (x2 - x3 + y2 + y3)/2 - y1;
   bx = (x2 + x3 + y2 - y3)/2 - x1;
   by = (x3 - x2 + y2 + y3)/2 - y1;
   xc = (x2 + x3)/2;
   yc = (y2 + y3)/2;
   ek = path(bx, by) / path(ax, ay);
   ex = bx + ek * ax;
   ey = by + ek * ay;
   es = path(ex, ey);
   et = ( ay * (xc - x1) - ax * (yc - y1) ) / (ax * ex + ay * ey);
   xm = xc - x1 - ey * et;
   ym = yc - y1 + ex * et;
   xa = ax - xm;
   ya = ay - ym;
   sa = path(xm, ym);
   with(this[count + j]){
    _x = xc - sa * ex / es;
    _y = yc - sa * ey / es;
    _xscale = sa;
    _yscale = path(xa, ya);
    _alpha = 25 + 100 * _yscale / _xscale;
    _rotation = 180 * Math.atan2(-ey, -ex) / Math.PI;
function kepler(){
  for(j = 0; j < count; j++){
   m = dt * d[j];
   e0 = m + e[j] * Math.sin(m);
   e0 = m + e[j] * Math.sin(e0);
   place( traf(e0) );
onClipEvent (enterFrame) {
mx = this.drag._y * cr / 2;
kepler();
pre = this.drag._y * this.drag._x;
dt += inc;
where would i put a mouse event that allows the user to click on a planet in full solar system view and load the 3D representation of that planet?
Thanks for any and all help!

Your solar system code is all AS2 code, not AS3, so if your planet code is AS3 then you will probably need to rethink this--you cannot mix the two languages in one file.  If your planet code is AS2, then you should post in the AS2 forum.

Similar Messages

  • Need help on combining these two program

    Hi all,
     I needed some help on combining these two program. But i not very sure how to do it.
    My program in working with TimeIn/TimeOut attendance taking. The snippet vi "insert data" is the where i start to TimeIn and insert into the microsoft access. And i wanted to insert it together with a camera catching the user's face. But i have no clues on how to combine them.
     Can u guys give me some ideas to help me ?
    Thanks in advance.
    Attachments:
    IMAQdx.png ‏55 KB
    insert data.png ‏68 KB

    Hi Himanshu,
    But if i put everything inside the IMAQdx loop ,it make my whole program more complicated. 
    This is how my program looks like below.
    I only want to display the image only when i "insert" all data into the database ( which i given at the perivous post).
    Is there other way?? And how do u make the IMAQdx loop stop without putting a stop button?? Because everytime i run the program,it will run continuously at the IMAQdx loop..
    Thank in Advance.
    Attachments:
    FYP.png ‏205 KB

  • Uninstalled QucikTime, I have these two programs, apple support update, and

    I used QuickTime player on my windows 7 64 bit PC , didn't like it, removed it using add/remove program. Now I have these two: Apple Application Support Version 1.3.1 and is 42.8 MB and Apple Software update 2.1.1.116, 2.15 MB. They are from Apple, Inc. They are listed on my ad /remove program. My question:Since I have Uninstalled Quick time player, do i need to remove these two files? Are they related to any other important software like (e.g adobe)?
    I have apple support update, which has , as I understand,an update , but I no longer have a Quick Time program. Do I need to get rid of these two programs, and how to do it safely?
    Thanks

    They're not doing anything now, so you can remove them. Uninstall them from the Add/Remove Programs, just as you did with QuickTime.
    Regards.

  • How can I combine these two DAQ tasks???

    I am using LabVIEW 11, Windows XP, cDAQ-9174 chassis, two NI-9205 modules.
    Please see my code for reference. I am very new so i will accept all suggestions.
    I am acquiring 12 volatage signals in a producer/consumer structure giving me a queue of 1-d array of waveform(dbl). Then I am acquiring 12 voltage signals in another loop giving me 2-d array of waveform(dbl).
    There is an issue creating the channels. How can I combine these two tasks?
    Thanks,
    ~Chris
    Attachments:
    WaveTest_6.2.vi ‏558 KB

    Hello chrisbe723,
    When you say that there is an issue creating the channels, are you getting a specific error message when running your code? Also are you referencing the same set of channels for the two DAQ task you are configuring?
    Paul-B
    Applications Engineer
    National Instruments

  • TS4268 Is there a real fix to get iMessage and FaceTime working with iOS7 on my iPad?  Tried that 8.8.8.8 and time rest thing but they don't.   Everything else works.... Says the network connection is the problem but only for these two programs.

    Is there a "real fix" to get iMessage and FaceTime working?  Tried the 8.8.8.8 and time,rest thing.   Passwords and Apple ID are ok.  At log in the message says it's a network connection. 
    Any ideas?  Is here a fix coming from Apple?

    Apps are on my iPad and worked fine with iOS 6. When iOS7 was loaded, I can no longer sign in to these two apps using my Apple ID. These apps are on my phone and work fine.  This problem is on on my iPad. 

  • What is the difference between these two programs?

    Hello, I disassembled the following java class file.
    public class Test1 {
        public static final void test1 (byte[] ba, int v) {
         ba[0] = (byte)v;
    }and got the following output;
    Compiled from "Test1.java"
    public class Test1 extends java.lang.Object{
    public Test1();
      Signature: ()V
      Code:
       0:     aload_0
       1:     invokespecial     #1; //Method java/lang/Object."<init>":()V
       4:     return
    public static final void test1(byte[], int);
      Signature: ([BI)V
      Code:
       0:     aload_0
       1:     iconst_0
       2:     iload_1
       3:     i2b
       4:     bastore
       5:     return
    }I got to wondering what would happen if I eliminated the instruction i2b at line 3 in +test1([BI)V+*. So, using jasmin bytecode assembler I wrote the following equivalent program.
    {code}.class public final Test2
    .super java/lang/Object
    .method public static final test2([BI)V
    .limit stack 4
    .limit locals 4
    aload_0
    iconst_0
    iload_1
    bastore
    return
    .end method{quote}Notice that I eliminated the instruction *i2b* from Test2.j source.{quote}
    Here is the bytecode dump of Test2.j;Compiled from "Test2.j"
    public final class Test2 extends java.lang.Object{
    public static final void test2(byte[], int);
    Signature: ([BI)V
    Code:
    0:     aload_0
    1:     iconst_0
    2:     iload_1
    3:     bastore
    4:     return
    }Then I compiled program and executed with both Test1.test1([BI)V and Test2.test2([BI)V;public class Driver {
    public static void main (String[] args) {
    byte[] ba1 = new byte[1];
    byte[] ba2 = new byte[1];
    for (int v = 0; v <= 255; v++ ) {
    Test1.test1( ba1, v);
    Test2.test2( ba2, v);
    System.out.print ( "Test1.test1( ba1, " + v + "):"
    + Integer.toHexString( (int)ba1[0] & 0xff ));
    System.out.println ( " / Test2.test2( ba2, " v "):"
    + Integer.toHexString( (int)ba2[0] & 0xff ));
    }The results where exactly the same for both methods! Why does java the compiler even bother to call *i2b* instruction if it doesn't have any affect?
    I listed the results for verification.
    Test1.test1( ba1, 0):0 / Test2.test2( ba2, 0):0
    Test1.test1( ba1, 1):1 / Test2.test2( ba2, 1):1
    Test1.test1( ba1, 2):2 / Test2.test2( ba2, 2):2
    Test1.test1( ba1, 3):3 / Test2.test2( ba2, 3):3
    Test1.test1( ba1, 4):4 / Test2.test2( ba2, 4):4
    Test1.test1( ba1, 5):5 / Test2.test2( ba2, 5):5
    Test1.test1( ba1, 6):6 / Test2.test2( ba2, 6):6
    Test1.test1( ba1, 7):7 / Test2.test2( ba2, 7):7
    Test1.test1( ba1, 8):8 / Test2.test2( ba2, 8):8
    Test1.test1( ba1, 9):9 / Test2.test2( ba2, 9):9
    Test1.test1( ba1, 10):a / Test2.test2( ba2, 10):a
    Test1.test1( ba1, 11):b / Test2.test2( ba2, 11):b
    Test1.test1( ba1, 12):c / Test2.test2( ba2, 12):c
    Test1.test1( ba1, 13):d / Test2.test2( ba2, 13):d
    Test1.test1( ba1, 14):e / Test2.test2( ba2, 14):e
    Test1.test1( ba1, 15):f / Test2.test2( ba2, 15):f
    Test1.test1( ba1, 16):10 / Test2.test2( ba2, 16):10
    Test1.test1( ba1, 17):11 / Test2.test2( ba2, 17):11
    Test1.test1( ba1, 18):12 / Test2.test2( ba2, 18):12
    Test1.test1( ba1, 19):13 / Test2.test2( ba2, 19):13
    Test1.test1( ba1, 20):14 / Test2.test2( ba2, 20):14
    Test1.test1( ba1, 21):15 / Test2.test2( ba2, 21):15
    Test1.test1( ba1, 22):16 / Test2.test2( ba2, 22):16
    Test1.test1( ba1, 23):17 / Test2.test2( ba2, 23):17
    Test1.test1( ba1, 24):18 / Test2.test2( ba2, 24):18
    Test1.test1( ba1, 25):19 / Test2.test2( ba2, 25):19
    Test1.test1( ba1, 26):1a / Test2.test2( ba2, 26):1a
    Test1.test1( ba1, 27):1b / Test2.test2( ba2, 27):1b
    Test1.test1( ba1, 28):1c / Test2.test2( ba2, 28):1c
    Test1.test1( ba1, 29):1d / Test2.test2( ba2, 29):1d
    Test1.test1( ba1, 30):1e / Test2.test2( ba2, 30):1e
    Test1.test1( ba1, 31):1f / Test2.test2( ba2, 31):1f
    Test1.test1( ba1, 32):20 / Test2.test2( ba2, 32):20
    Test1.test1( ba1, 33):21 / Test2.test2( ba2, 33):21
    Test1.test1( ba1, 34):22 / Test2.test2( ba2, 34):22
    Test1.test1( ba1, 35):23 / Test2.test2( ba2, 35):23
    Test1.test1( ba1, 36):24 / Test2.test2( ba2, 36):24
    Test1.test1( ba1, 37):25 / Test2.test2( ba2, 37):25
    Test1.test1( ba1, 38):26 / Test2.test2( ba2, 38):26
    Test1.test1( ba1, 39):27 / Test2.test2( ba2, 39):27
    Test1.test1( ba1, 40):28 / Test2.test2( ba2, 40):28
    Test1.test1( ba1, 41):29 / Test2.test2( ba2, 41):29
    Test1.test1( ba1, 42):2a / Test2.test2( ba2, 42):2a
    Test1.test1( ba1, 43):2b / Test2.test2( ba2, 43):2b
    Test1.test1( ba1, 44):2c / Test2.test2( ba2, 44):2c
    Test1.test1( ba1, 45):2d / Test2.test2( ba2, 45):2d
    Test1.test1( ba1, 46):2e / Test2.test2( ba2, 46):2e
    Test1.test1( ba1, 47):2f / Test2.test2( ba2, 47):2f
    Test1.test1( ba1, 48):30 / Test2.test2( ba2, 48):30
    Test1.test1( ba1, 49):31 / Test2.test2( ba2, 49):31
    Test1.test1( ba1, 50):32 / Test2.test2( ba2, 50):32
    Test1.test1( ba1, 51):33 / Test2.test2( ba2, 51):33
    Test1.test1( ba1, 52):34 / Test2.test2( ba2, 52):34
    Test1.test1( ba1, 53):35 / Test2.test2( ba2, 53):35
    Test1.test1( ba1, 54):36 / Test2.test2( ba2, 54):36
    Test1.test1( ba1, 55):37 / Test2.test2( ba2, 55):37
    Test1.test1( ba1, 56):38 / Test2.test2( ba2, 56):38
    Test1.test1( ba1, 57):39 / Test2.test2( ba2, 57):39
    Test1.test1( ba1, 58):3a / Test2.test2( ba2, 58):3a
    Test1.test1( ba1, 59):3b / Test2.test2( ba2, 59):3b
    Test1.test1( ba1, 60):3c / Test2.test2( ba2, 60):3c
    Test1.test1( ba1, 61):3d / Test2.test2( ba2, 61):3d
    Test1.test1( ba1, 62):3e / Test2.test2( ba2, 62):3e
    Test1.test1( ba1, 63):3f / Test2.test2( ba2, 63):3f
    Test1.test1( ba1, 64):40 / Test2.test2( ba2, 64):40
    Test1.test1( ba1, 65):41 / Test2.test2( ba2, 65):41
    Test1.test1( ba1, 66):42 / Test2.test2( ba2, 66):42
    Test1.test1( ba1, 67):43 / Test2.test2( ba2, 67):43
    Test1.test1( ba1, 68):44 / Test2.test2( ba2, 68):44
    Test1.test1( ba1, 69):45 / Test2.test2( ba2, 69):45
    Test1.test1( ba1, 70):46 / Test2.test2( ba2, 70):46
    Test1.test1( ba1, 71):47 / Test2.test2( ba2, 71):47
    Test1.test1( ba1, 72):48 / Test2.test2( ba2, 72):48
    Test1.test1( ba1, 73):49 / Test2.test2( ba2, 73):49
    Test1.test1( ba1, 74):4a / Test2.test2( ba2, 74):4a
    Test1.test1( ba1, 75):4b / Test2.test2( ba2, 75):4b
    Test1.test1( ba1, 76):4c / Test2.test2( ba2, 76):4c
    Test1.test1( ba1, 77):4d / Test2.test2( ba2, 77):4d
    Test1.test1( ba1, 78):4e / Test2.test2( ba2, 78):4e
    Test1.test1( ba1, 79):4f / Test2.test2( ba2, 79):4f
    Test1.test1( ba1, 80):50 / Test2.test2( ba2, 80):50
    Test1.test1( ba1, 81):51 / Test2.test2( ba2, 81):51
    Test1.test1( ba1, 82):52 / Test2.test2( ba2, 82):52
    Test1.test1( ba1, 83):53 / Test2.test2( ba2, 83):53
    Test1.test1( ba1, 84):54 / Test2.test2( ba2, 84):54
    Test1.test1( ba1, 85):55 / Test2.test2( ba2, 85):55
    Test1.test1( ba1, 86):56 / Test2.test2( ba2, 86):56
    Test1.test1( ba1, 87):57 / Test2.test2( ba2, 87):57
    Test1.test1( ba1, 88):58 / Test2.test2( ba2, 88):58
    Test1.test1( ba1, 89):59 / Test2.test2( ba2, 89):59
    Test1.test1( ba1, 90):5a / Test2.test2( ba2, 90):5a
    Test1.test1( ba1, 91):5b / Test2.test2( ba2, 91):5b
    Test1.test1( ba1, 92):5c / Test2.test2( ba2, 92):5c
    Test1.test1( ba1, 93):5d / Test2.test2( ba2, 93):5d
    Test1.test1( ba1, 94):5e / Test2.test2( ba2, 94):5e
    Test1.test1( ba1, 95):5f / Test2.test2( ba2, 95):5f
    Test1.test1( ba1, 96):60 / Test2.test2( ba2, 96):60
    Test1.test1( ba1, 97):61 / Test2.test2( ba2, 97):61
    Test1.test1( ba1, 98):62 / Test2.test2( ba2, 98):62
    Test1.test1( ba1, 99):63 / Test2.test2( ba2, 99):63
    Test1.test1( ba1, 100):64 / Test2.test2( ba2, 100):64
    Test1.test1( ba1, 101):65 / Test2.test2( ba2, 101):65
    Test1.test1( ba1, 102):66 / Test2.test2( ba2, 102):66
    Test1.test1( ba1, 103):67 / Test2.test2( ba2, 103):67
    Test1.test1( ba1, 104):68 / Test2.test2( ba2, 104):68
    Test1.test1( ba1, 105):69 / Test2.test2( ba2, 105):69
    Test1.test1( ba1, 106):6a / Test2.test2( ba2, 106):6a
    Test1.test1( ba1, 107):6b / Test2.test2( ba2, 107):6b
    Test1.test1( ba1, 108):6c / Test2.test2( ba2, 108):6c
    Test1.test1( ba1, 109):6d / Test2.test2( ba2, 109):6d
    Test1.test1( ba1, 110):6e / Test2.test2( ba2, 110):6e
    Test1.test1( ba1, 111):6f / Test2.test2( ba2, 111):6f
    Test1.test1( ba1, 112):70 / Test2.test2( ba2, 112):70
    Test1.test1( ba1, 113):71 / Test2.test2( ba2, 113):71
    Test1.test1( ba1, 114):72 / Test2.test2( ba2, 114):72
    Test1.test1( ba1, 115):73 / Test2.test2( ba2, 115):73
    Test1.test1( ba1, 116):74 / Test2.test2( ba2, 116):74
    Test1.test1( ba1, 117):75 / Test2.test2( ba2, 117):75
    Test1.test1( ba1, 118):76 / Test2.test2( ba2, 118):76
    Test1.test1( ba1, 119):77 / Test2.test2( ba2, 119):77
    Test1.test1( ba1, 120):78 / Test2.test2( ba2, 120):78
    Test1.test1( ba1, 121):79 / Test2.test2( ba2, 121):79
    Test1.test1( ba1, 122):7a / Test2.test2( ba2, 122):7a
    Test1.test1( ba1, 123):7b / Test2.test2( ba2, 123):7b
    Test1.test1( ba1, 124):7c / Test2.test2( ba2, 124):7c
    Test1.test1( ba1, 125):7d / Test2.test2( ba2, 125):7d
    Test1.test1( ba1, 126):7e / Test2.test2( ba2, 126):7e
    Test1.test1( ba1, 127):7f / Test2.test2( ba2, 127):7f
    Test1.test1( ba1, 128):80 / Test2.test2( ba2, 128):80
    Test1.test1( ba1, 129):81 / Test2.test2( ba2, 129):81
    Test1.test1( ba1, 130):82 / Test2.test2( ba2, 130):82
    Test1.test1( ba1, 131):83 / Test2.test2( ba2, 131):83
    Test1.test1( ba1, 132):84 / Test2.test2( ba2, 132):84
    Test1.test1( ba1, 133):85 / Test2.test2( ba2, 133):85
    Test1.test1( ba1, 134):86 / Test2.test2( ba2, 134):86
    Test1.test1( ba1, 135):87 / Test2.test2( ba2, 135):87
    Test1.test1( ba1, 136):88 / Test2.test2( ba2, 136):88
    Test1.test1( ba1, 137):89 / Test2.test2( ba2, 137):89
    Test1.test1( ba1, 138):8a / Test2.test2( ba2, 138):8a
    Test1.test1( ba1, 139):8b / Test2.test2( ba2, 139):8b
    Test1.test1( ba1, 140):8c / Test2.test2( ba2, 140):8c
    Test1.test1( ba1, 141):8d / Test2.test2( ba2, 141):8d
    Test1.test1( ba1, 142):8e / Test2.test2( ba2, 142):8e
    Test1.test1( ba1, 143):8f / Test2.test2( ba2, 143):8f
    Test1.test1( ba1, 144):90 / Test2.test2( ba2, 144):90
    Test1.test1( ba1, 145):91 / Test2.test2( ba2, 145):91
    Test1.test1( ba1, 146):92 / Test2.test2( ba2, 146):92
    Test1.test1( ba1, 147):93 / Test2.test2( ba2, 147):93
    Test1.test1( ba1, 148):94 / Test2.test2( ba2, 148):94
    Test1.test1( ba1, 149):95 / Test2.test2( ba2, 149):95
    Test1.test1( ba1, 150):96 / Test2.test2( ba2, 150):96
    Test1.test1( ba1, 151):97 / Test2.test2( ba2, 151):97
    Test1.test1( ba1, 152):98 / Test2.test2( ba2, 152):98
    Test1.test1( ba1, 153):99 / Test2.test2( ba2, 153):99
    Test1.test1( ba1, 154):9a / Test2.test2( ba2, 154):9a
    Test1.test1( ba1, 155):9b / Test2.test2( ba2, 155):9b
    Test1.test1( ba1, 156):9c / Test2.test2( ba2, 156):9c
    Test1.test1( ba1, 157):9d / Test2.test2( ba2, 157):9d
    Test1.test1( ba1, 158):9e / Test2.test2( ba2, 158):9e
    Test1.test1( ba1, 159):9f / Test2.test2( ba2, 159):9f
    Test1.test1( ba1, 160):a0 / Test2.test2( ba2, 160):a0
    Test1.test1( ba1, 161):a1 / Test2.test2( ba2, 161):a1
    Test1.test1( ba1, 162):a2 / Test2.test2( ba2, 162):a2
    Test1.test1( ba1, 163):a3 / Test2.test2( ba2, 163):a3
    Test1.test1( ba1, 164):a4 / Test2.test2( ba2, 164):a4
    Test1.test1( ba1, 165):a5 / Test2.test2( ba2, 165):a5
    Test1.test1( ba1, 166):a6 / Test2.test2( ba2, 166):a6
    Test1.test1( ba1, 167):a7 / Test2.test2( ba2, 167):a7
    Test1.test1( ba1, 168):a8 / Test2.test2( ba2, 168):a8
    Test1.test1( ba1, 169):a9 / Test2.test2( ba2, 169):a9
    Test1.test1( ba1, 170):aa / Test2.test2( ba2, 170):aa
    Test1.test1( ba1, 171):ab / Test2.test2( ba2, 171):ab
    Test1.test1( ba1, 172):ac / Test2.test2( ba2, 172):ac
    Test1.test1( ba1, 173):ad / Test2.test2( ba2, 173):ad
    Test1.test1( ba1, 174):ae / Test2.test2( ba2, 174):ae
    Test1.test1( ba1, 175):af / Test2.test2( ba2, 175):af
    Test1.test1( ba1, 176):b0 / Test2.test2( ba2, 176):b0
    Test1.test1( ba1, 177):b1 / Test2.test2( ba2, 177):b1
    Test1.test1( ba1, 178):b2 / Test2.test2( ba2, 178):b2
    Test1.test1( ba1, 179):b3 / Test2.test2( ba2, 179):b3
    Test1.test1( ba1, 180):b4 / Test2.test2( ba2, 180):b4
    Test1.test1( ba1, 181):b5 / Test2.test2( ba2, 181):b5
    Test1.test1( ba1, 182):b6 / Test2.test2( ba2, 182):b6
    Test1.test1( ba1, 183):b7 / Test2.test2( ba2, 183):b7
    Test1.test1( ba1, 184):b8 / Test2.test2( ba2, 184):b8
    Test1.test1( ba1, 185):b9 / Test2.test2( ba2, 185):b9
    Test1.test1( ba1, 186):ba / Test2.test2( ba2, 186):ba
    Test1.test1( ba1, 187):bb / Test2.test2( ba2, 187):bb
    Test1.test1( ba1, 188):bc / Test2.test2( ba2, 188):bc
    Test1.test1( ba1, 189):bd / Test2.test2( ba2, 189):bd
    Test1.test1( ba1, 190):be / Test2.test2( ba2, 190):be
    Test1.test1( ba1, 191):bf / Test2.test2( ba2, 191):bf
    Test1.test1( ba1, 192):c0 / Test2.test2( ba2, 192):c0
    Test1.test1( ba1, 193):c1 / Test2.test2( ba2, 193):c1
    Test1.test1( ba1, 194):c2 / Test2.test2( ba2, 194):c2
    Test1.test1( ba1, 195):c3 / Test2.test2( ba2, 195):c3
    Test1.test1( ba1, 196):c4 / Test2.test2( ba2, 196):c4
    Test1.test1( ba1, 197):c5 / Test2.test2( ba2, 197):c5
    Test1.test1( ba1, 198):c6 / Test2.test2( ba2, 198):c6
    Test1.test1( ba1, 199):c7 / Test2.test2( ba2, 199):c7
    Test1.test1( ba1, 200):c8 / Test2.test2( ba2, 200):c8
    Test1.test1( ba1, 201):c9 / Test2.test2( ba2, 201):c9
    Test1.test1( ba1, 202):ca / Test2.test2( ba2, 202):ca
    Test1.test1( ba1, 203):cb / Test2.test2( ba2, 203):cb
    Test1.test1( ba1, 204):cc / Test2.test2( ba2, 204):cc
    Test1.test1( ba1, 205):cd / Test2.test2( ba2, 205):cd
    Test1.test1( ba1, 206):ce / Test2.test2( ba2, 206):ce
    Test1.test1( ba1, 207):cf / Test2.test2( ba2, 207):cf
    Test1.test1( ba1, 208):d0 / Test2.test2( ba2, 208):d0
    Test1.test1( ba1, 209):d1 / Test2.test2( ba2, 209):d1
    Test1.test1( ba1, 210):d2 / Test2.test2( ba2, 210):d2
    Test1.test1( ba1, 211):d3 / Test2.test2( ba2, 211):d3
    Test1.test1( ba1, 212):d4 / Test2.test2( ba2, 212):d4
    Test1.test1( ba1, 213):d5 / Test2.test2( ba2, 213):d5
    Test1.test1( ba1, 214):d6 / Test2.test2( ba2, 214):d6
    Test1.test1( ba1, 215):d7 / Test2.test2( ba2, 215):d7
    Test1.test1( ba1, 216):d8 / Test2.test2( ba2, 216):d8
    Test1.test1( ba1, 217):d9 / Test2.test2( ba2, 217):d9
    Test1.test1( ba1, 218):da / Test2.test2( ba2, 218):da
    Test1.test1( ba1, 219):db / Test2.test2( ba2, 219):db
    Test1.test1( ba1, 220):dc / Test2.test2( ba2, 220):dc
    Test1.test1( ba1, 221):dd / Test2.test2( ba2, 221):dd
    Test1.test1( ba1, 222):de / Test2.test2( ba2, 222):de
    Test1.test1( ba1, 223):df / Test2.test2( ba2, 223):df
    Test1.test1( ba1, 224):e0 / Test2.test2( ba2, 224):e0
    Test1.test1( ba1, 225):e1 / Test2.test2( ba2, 225):e1
    Test1.test1( ba1, 226):e2 / Test2.test2( ba2, 226):e2
    Test1.test1( ba1, 227):e3 / Test2.test2( ba2, 227):e3
    Test1.test1( ba1, 228):e4 / Test2.test2( ba2, 228):e4
    Test1.test1( ba1, 229):e5 / Test2.test2( ba2, 229):e5
    Test1.test1( ba1, 230):e6 / Test2.test2( ba2, 230):e6
    Test1.test1( ba1, 231):e7 / Test2.test2( ba2, 231):e7
    Test1.test1( ba1, 232):e8 / Test2.test2( ba2, 232):e8
    Test1.test1( ba1, 233):e9 / Test2.test2( ba2, 233):e9
    Test1.test1( ba1, 234):ea / Test2.test2( ba2, 234):ea
    Test1.test1( ba1, 235):eb / Test2.test2( ba2, 235):eb
    Test1.test1( ba1, 236):ec / Test2.test2( ba2, 236):ec
    Test1.test1( ba1, 237):ed / Test2.test2( ba2, 237):ed
    Test1.test1( ba1, 238):ee / Test2.test2( ba2, 238):ee
    Test1.test1( ba1, 239):ef / Test2.test2( ba2, 239):ef
    Test1.test1( ba1, 240):f0 / Test2.test2( ba2, 240):f0
    Test1.test1( ba1, 241):f1 / Test2.test2( ba2, 241):f1
    Test1.test1( ba1, 242):f2 / Test2.test2( ba2, 242):f2
    Test1.test1( ba1, 243):f3 / Test2.test2( ba2, 243):f3
    Test1.test1( ba1, 244):f4 / Test2.test2( ba2, 244):f4
    Test1.test1( ba1, 245):f5 / Test2.test2( ba2, 245):f5
    Test1.test1( ba1, 246):f6 / Test2.test2( ba2, 246):f6
    Test1.test1( ba1, 247):f7 / Test2.test2( ba2, 247):f7
    Test1.test1( ba1, 248):f8 / Test2.test2( ba2, 248):f8
    Test1.test1( ba1, 249):f9 / Test2.test2( ba2, 249):f9
    Test1.test1( ba1, 250):fa / Test2.test2( ba2, 250):fa
    Test1.test1( ba1, 251):fb / Test2.test2( ba2, 251):fb
    Test1.test1( ba1, 252):fc / Test2.test2( ba2, 252):fc
    Test1.test1( ba1, 253):fd / Test2.test2( ba2, 253):fd
    Test1.test1( ba1, 254):fe / Test2.test2( ba2, 254):fe
    Test1.test1( ba1, 255):ff / Test2.test2( ba2, 255):ff                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    

    endasil wrote:
    Um...have you compared when specifying v = 0x0FFFF, as an arbitrary example?
    Edit All right I'll be a little more specific. How the heck would your Test1 method know if it's only being passed int values <= 255?
    Edited by: endasil on Nov 6, 2007 8:48 PMI see, well, why would it care? all it does is take int and store it into a byte. what else could it do with an int and byte array? Also, if you wanted to check for values <= 255 one could simply add asm code to do that, after all, Test2.test2() has a signature of ([BI) that is (byte[] ba, int v). So, if the method wants to fool around with v* it can iload_1* and do any comparison tests, ifeq* etc..., and latter stuff it into byte array using bastore* without the unnecessary i2b* call.
    I just don't see the use of the i2b* instruction if bastore* could careless. Will this cause the stack to become unlined and cause trouble program down-the-line in execution? I am thinking that I loaded an int*, +4bytes+, but only consumed 1byte. But now that I think about it, iload_1 loads an int* onto local heap so it should get cleaned up when the program exits. So, as long as I made bastore* the last instruction in the program I shouldn't have a problem. Or maybe this doesn't matter either?
    *Also, since ba is an byte[] why would I want to check it for anything other than a byte value? if I wanted to get an int I would have created an int[]*
    My point is that as long as one wants to stuff an int into a byte array the i2b instruction is overkill, albeit not much, and I just do see the usefulness of it.
    This is for when I do something like, byte_array[i] = '-', and the compilers say loss of information and I cast '-' to (byte)'-', meaning I don't care if I loss any information. but it called i2b anyways byte_array[i] = '-' yields the same result.
    I just didn't understand what was behind this.
    Does that answer that question or am I missing anything?
    Edited by: earamsey on Nov 6, 2007 8:04 PM

  • How to combine these two inserts into a single insert ststement.

    INSERT ZFMKSTEL FROM FS_TEMP_ZFMKSTEL.
    fs_temp_zfmkstel-nrart = 'H'.
    fs_temp_zfmkstel-proz1 = '100'.
    insert into zfmkstel values fs_temp_zfmkstel.

    Hi,
    U can use any one
    First fill the values in wa
    fs_temp_zfmkstel-telnum = fs_temp_zfm_handy-telnum.
    fs_temp_zfmkstel-nrart = 'H'.
    fs_temp_zfmkstel-proz1 = '100'.
    insert into zfmkstel values fs_temp_zfmkstel.
    Reward if this helps.

  • Combining two programs to make one

    Is there an easy way for me to combine these two programs? What I am wanting to use an array for the different loans. Display the mortgage payment amount for each loan and then list the loan balance and interest paid for each payment over the term of the loan. Use loops to prevent lists from scrolling off the screen. Here are the two programs I have so far. Any guidance is appreciated.
    import java.io.*;  // java input output package
    import java.text.DecimalFormat; // allows placement of decimal
    public class MonthlyPayments4e extends Thread //class header with "Thread" for sleep
    public static void main(String[] args)
    double Loan, NewBal, MIP;
       double Rate, MonthlyInterest, Payments; //double precision variables
       //assign values to variables
    Loan= 200000; // loan amount
    Rate = .0575; //interest rate
    MonthlyInterest = Rate / 12; // interest for each month
         Payments = Loan * (MonthlyInterest / (1 - Math.pow(1+MonthlyInterest, -360))); //my formula
      DecimalFormat twoDigits = new DecimalFormat("$,000.00"); // declares decimal format
      MIP= (Loan * Rate) / 12;
      NewBal = Loan -(Payments-MIP);
      System.out.println("Monthly Payments Interest Paid This Payment Loan Balance");
         System.out.println();//my printout provides extra line
         System.out.print("  " + twoDigits.format(Payments)); //my printout
      System.out.print("\t\t\t" + twoDigits.format(MIP));//my printout
      System.out.println("\t\t\t" + twoDigits.format(NewBal));//my printout
        System.out.print("  " + twoDigits.format(Payments)); //my printout
      MIP=(NewBal*Rate)/12;
      System.out.print("\t\t\t" + twoDigits.format(MIP));//my printout
      NewBal=NewBal -(Payments-MIP);
      System.out.println("\t\t\t" + twoDigits.format(NewBal));//my printout
      System.out.print("  " + twoDigits.format(Payments)); //my printout
      while (NewBal > 1) //while loop to make computations continue until gets to $200000
      MIP=(NewBal*Rate)/12;
      System.out.print("\t\t\t" + twoDigits.format(MIP));//my printout
      NewBal=NewBal -(Payments-MIP);
      System.out.println("\t\t\t" + twoDigits.format(NewBal));//my printout
      System.out.print("  " + twoDigits.format(Payments)); //my printout
    if (NewBal <100000) // tells when this is met to transition to sleep phase
      try
             Thread.sleep (500); //sleep phase needed per change request also states pause is 500 milliseconds
           catch (InterruptedException e)
    import java.io.*;  // java input output package
    import java.text.DecimalFormat;
    public class MonthlyPayments5  //class header
    public static void main(String[] args) //don't know if this is needed or not but here it is
    double Loan;
       double Rate1,Rate2,Rate3, MonthlyInterest1,MonthlyInterest2,MonthlyInterest3,Payment1,Payment2,Payment3; //double precision variables
       //assign values to variables
       Loan= 200000; // loan amount
       Rate1 = 5.75;
       Rate2 = 5.5;
       Rate3 = 5.35;
       MonthlyInterest1 = (Rate1 / 100) / 12;
       MonthlyInterest2 = (Rate2 / 100) / 12;
       MonthlyInterest3 = (Rate3 / 100) / 12;
         Payment1 = Loan * (MonthlyInterest1 / (1 - Math.pow(1+MonthlyInterest1, -360))); //my formula
         Payment2 = Loan * (MonthlyInterest2 / (1 - Math.pow(1+MonthlyInterest2, -180))); //my formula
         Payment3 = Loan * (MonthlyInterest3 / (1 - Math.pow(1+MonthlyInterest3, -84))); //my formula
      DecimalFormat twoDigits = new DecimalFormat("000.00");
         System.out.println("\tYour Monthly Payments for 30 years are:\t $" + twoDigits.format(Payment1)); //my printout
         System.out.println("\tYour Monthly Payments for 15 years are:\t $" + twoDigits.format(Payment2)); //my printout
         System.out.println("\tYour Monthly Payments for 7 years are:\t $" + twoDigits.format(Payment3)); //my printout
     

    Any guidance is appreciated. Here's some guidance:
    ublic class MonthlyPayments4e extends Thread //class
    header with "Thread" for sleepThere's no need for your class to extend Thread. If it truly needs to run in a separate thread, better to implement Runnable.
    public static void main(String[] args)
    {It's a common newbie mistake to put lots of code into main methods. After all, that's what you "run", right? Better to put that code into a class or instance method that you have a main method call. Other objects can get at it that way.
    double Loan, NewBal, MIP;
    double Rate, MonthlyInterest, Payments; //double
    precision variablesLearn and follow the Sun Java coding standards:
    http://java.sun.com/docs/codeconv/
    This isn't VB.
    The comment "// double precision variables" is totally, utterly useless. The fact that they're declared as double is more than sufficient. Useless comments like these just clutter up code.
    //assign values to variablesMORE useless comments! Get rid of them. You've probably been taught that comments are good. I'm here to tell you that comments are bad. Write your code clearly enough and you won't need comments. Good choices for variable and method names and good refactoring are worth a million comments.
    oan= 200000; // loan amount
    Rate = .0575; //interest rate
    MonthlyInterest = Rate / 12; // interest for each
    monthThe principal, interest rate, and term length should all be input values to your method, not hardwired like this. If you're asked to change the rate or principal you have to recompile your code. Terrible.
    Payments = Loan * (MonthlyInterest / (1 -
    Math.pow(1+MonthlyInterest, -360))); //my formulaSeparate the calculation from the display.
    DecimalFormat twoDigits = new
    DecimalFormat("$,000.00"); // declares decimalUse a currency formatter. Your program should not care if it's USD or euros or some other currency. Let the default Locale figure out what the currency format should be.
    format
    MIP= (Loan * Rate) / 12;
    NewBal = Loan -(Payments-MIP);
    System.out.println("Monthly Payments Interest Paid
    This Payment Loan Balance");Do the calculation in the method and let something else print out values.
    System.out.println();//my printout provides extra
    line
    System.out.print(" " +
    twoDigits.format(Payments)); //my printout
    System.out.print("\t\t\t" +
    twoDigits.format(MIP));//my printout
    System.out.println("\t\t\t" +
    twoDigits.format(NewBal));//my printout
    System.out.print(" " +
    twoDigits.format(Payments)); //my printout
    MIP=(NewBal*Rate)/12;
    System.out.print("\t\t\t" +
    twoDigits.format(MIP));//my printout
    NewBal=NewBal -(Payments-MIP);
    System.out.println("\t\t\t" +
    twoDigits.format(NewBal));//my printout
    System.out.print(" " +
    twoDigits.format(Payments)); //my printout
    Why $200000? What if I wanted to calculate payments on $1M USD? Or 2B yen?
    while (NewBal > 1) //while loop to make computations
    continue until gets to $200000
    MIP=(NewBal*Rate)/12;
    System.out.print("\t\t\t" +
    twoDigits.format(MIP));//my printout
    NewBal=NewBal -(Payments-MIP);
    System.out.println("\t\t\t" +
    twoDigits.format(NewBal));//my printout
    System.out.print(" " + twoDigits.format(Payments));
    //my printout
    if (NewBal <100000) // tells when this is met to
    transition to sleep phase
    try
    Thread.sleep (500); //sleep phase needed per
    change request also states pause is 500
    millisecondsUgh - who told you to do this? Take it out.
    catch (InterruptedException e)
    import java.io.*;  // java input output package
    import java.text.DecimalFormat;
    ublic class MonthlyPayments5  //class header
    public static void main(String[] args) //don't know
    if this is needed or not but here it is
    double Loan;
    double Rate1,Rate2,Rate3,
    MonthlyInterest1,MonthlyInterest2,MonthlyInterest3,Pa
    ment1,Payment2,Payment3; //double precision
    variables
    //assign values to variables
    Loan= 200000; // loan amount
    Rate1 = 5.75;
    Rate2 = 5.5;
    Rate3 = 5.35;
    MonthlyInterest1 = (Rate1 / 100) / 12;
    MonthlyInterest2 = (Rate2 / 100) / 12;
    MonthlyInterest3 = (Rate3 / 100) / 12;
    Payment1 = Loan * (MonthlyInterest1 / (1 -
    Math.pow(1+MonthlyInterest1, -360))); //my formula
    Payment2 = Loan * (MonthlyInterest2 / (1 -
    Math.pow(1+MonthlyInterest2, -180))); //my formula
    Payment3 = Loan * (MonthlyInterest3 / (1 -
    Math.pow(1+MonthlyInterest3, -84))); //my formula
    DecimalFormat twoDigits = new
    DecimalFormat("000.00");
    System.out.println("\tYour Monthly Payments for
    30 years are:\t $" + twoDigits.format(Payment1));
    //my printout
    System.out.println("\tYour Monthly Payments for
    15 years are:\t $" + twoDigits.format(Payment2));
    //my printout
    System.out.println("\tYour Monthly Payments for 7
    years are:\t $" + twoDigits.format(Payment3)); //my
    printout
    }See above for same comments on second messy method.
    %

  • 2 libraries need to consolidate. Is there a way to combine these?

    I moved all my files to a new external drive. Then I added a few more files but now I have 2 library files in 2 locations. One location has all the old files, the other location has the new files.
    Is there a way to combine these two library files?
    All of the music files in both libraries are in the same iTunes folder, but one library is IN the iTunes folder and the other is OUTSIDE the iTunes folder.
    Now when I "choose library" I have to go to one or the other library. I need to combine these.
    What can I do???
    Message was edited by: oraange

    All the music is in the same folder. But for some reason I have 2 libraries that locate different tracks within the same iTunes music folder.?!

  • Licensing for Two Programs

    I need the video editing, the wife does the photos. Can I have these two programs running at the same time on 2 different computers here on the same router at home ?
    [Please choose a short description for the thread title and only post the actual issue in the main body.]
    Message was edited by: Jim Simon

    Jim,
    I can't find my question and don't understand why you moved it. This is my fist day in the community. No one on Amazon knows if the licenses are tied together or not. I don't see what the cloud community has to do with video editing.

  • How to find memory diffrence between two programs

    Hi all,
    i want some clarification
    i have one which is occuping more memory
    then i copied that  program to antoher program
    now i want to check memory diffrence between these two program.
    ASAP
    Regards
    Venu

    Use SE30 Transaction ,run ur first program and then second program..
    For better results use ST05 (SQL Trace ) .
    goto ST05 and then trace on...
    use first transaction...
    then trace off and see list.
    use one more session and then use ST05 Again,
    Trace on ,use second transaction see the list.
    compare both list and you will have some idea now.
    Reward Points if it is helpful
    Thanks
    Seshu

  • Combining These Different Psxec Commands in One Line

    I use a bat script and it has some PsExec commands. We want to combine these two commands in one psexec line. We tried something [ ^&,
    &&, &, (cmd1 & cmd2) etc.. ] but it didn't work.
    First Command:
    psexec \\HostName cmd /c "for /d %%a in ("D:\folder") do rd /s /q "%%a""
    Second Command:
    psexec \\HostName -c TEST7.bat
    \_(ツ)_/ twitter.com/serdaruzun

    This is not a support forum for the psexec utility.
    Try posting here:
    http://forum.sysinternals.com/pstools_forum8.html
    -- Bill Stewart [Bill_Stewart]

  • It keeps trying to update but then says that the program is running and can't update then goes into a loop with these two boxes.

    I tried to Google a topic but when I clicked on the topic I wanted it posted a popup that said it had to update Firefox, followed immediately with a box that says it can't update firefox as it is running. These two boxes keep popping up as soon as you close the other one in one giant loop. I can only turn it off by shutting down the computer. I didn't have Firefox running when I tried to google the topic.

    If there are problems with updating or with the permissions then easiest is to download the full version and trash the currently installed version to do a clean install of the new version.
    Download a new copy of the Firefox program and save the disk image (dmg) file to the desktop
    *Firefox 8.0.x: http://www.mozilla.com/en-US/firefox/all.html
    *Trash the current Firefox application to do a clean (re-)install
    *Install the new version that you have downloaded
    Your profile data is stored elsewhere in the Firefox Profile Folder, so you won't lose your bookmarks and other personal data if you uninstall and (re)install Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox

  • HT203524 Apple won't stop these two spammers

    In my Apple mail account,
    I have been receiving daily SPAM from these two spammers for 4 months i continually report them to:
    Return-Path: <[email protected]>
    Return-Path: <[email protected]>
    [email protected]
    [email protected]
    [email protected]
    I have made numerous filters with every combination or rules possible, still nothing.
    they are obviously Spam.
    the only thing apparent is that i cant not block then and either can Apple or the FTC.
    Why would this be the case? I realize that there are millions of Spams daily, but just two of these spammers
    being immune to blocking is suspicious to say the least.
    They Originate from:
    Return-Path: <[email protected]>   origin is proffiliates.com
    Return-Path: <[email protected]> is a Spam list seller ( no kidding! ) 1-877-362-4547 that is allowed to spam out in the open.
    here is there stupid web page. how is this allowed by law? they are apparently registered in Poland.
    GetResponse Sp. z o.o. (Polish limited liability company) incorporated under the laws of the Republic of Poland, with its registered office at Arkońska 6, A3 80-387 Gdańsk, Poland, entered in the National Court Register kept by the Disctrict Court Gdańsk – North in Gdansk under number (KRS) 0000187388, Tax Identity Number: 9581468984, share capital of 5.279.000,- PLN (“GetResponse”, “we”, “us”) is the service provider of the GetResponse Service (the “Service”)
    http://www.getresponse.com/enterprise
    should be a no brainer? these are spammers, so the question again is; why can't they be stopped?

    Welcome to the Internet.
    Instead of crafting filters (which aren't working for you), have you tried to keep marking the messages as Spam from within the Mail program? Have you talked to your ISP or your Internet mail provider?

  • I am trying to install an update of Microsoft office and I get a message that says.  This application must be closed ETC.....   I am running Parralell and I think it is there.  The two programs are "Microsoft Database Daemon" "SyncServicesAgent"....

    I am trying to install an update of Microsoft office and I get a message that says.  This application must be closed ETC.....   I am running Parralell and I think it is there.  The two programs are "Microsoft Database Daemon" "SyncServicesAgent".  How do I close these programs?

    If the Office updates have to be run through Win in Parallels, there's not really a section here that covers that , because Neither Office or Parallels are Apple products. There is only a small chance that you'll find someone with BOTH your conditions who just happend to look into a forum on older iMacs.
    Parallels has a forum here:
    http://forum.parallels.com/forum.php
    I think you'll get a faster response there.

Maybe you are looking for

  • I am moving from London to NYC for a year, will i be able to use my iPhone over there and insert a pay as you go sim?

    I wondered if anyone can advise me on whether its possible to use my iPhone in NYC by getting a pay as you go sim in the US? Do companies offer pay as you go sims over there as i wont have a credit rating. Thanks!

  • Deploying a Portlet into Weblogic

    Hi Folks, I have a basic question about deploying a portlet into weblogic. I created a simple JSF/ADF application and used the Portlet Bridge to "Portletize" it. When I run the application using JDev11 everything works fine, but If I try to deploy it

  • Audigy 2ZS ongoing issue/need help ba

    Specs:Intel Celeron D @ 2.93 ghzAsus P4S800D-XSB Audigy 2 ZSXFX GeForce 6600GT430W CoolerMaster2 x 52MB Kington?I recently upgraded my motherboard to the one listed above and now after installing my Audigy 2ZS card, my computer locks up during games

  • KODO JDO Exception - kodo.util.FatalDataStoreException

    Using <b>Kodo Version - 3.3.4</b>, getting following exception when we try to <b>COMMIT</b>. Please let us know the reason for this kind of exception. java.lang.NullPointerException> kodo.util.FatalDataStoreException: java.lang.NullPointerException a

  • WebLogic 7 and ANT

    Has anybody successfully gotten the WLRUN task to start WebLogic 7.0? It complains of not knowing where my config.xml file is, even though the path it complains about is the correct one. I'm running JDK 1.3.1 in a Windows 2000 environment with WebLog