View Single Post
Old 12-07-2003, 12:03 AM   #6 (permalink)
charliex
Junkie
 
Location: North Hollywood
no problem, i dont mind taking the time.

the cmd prompt is basically the dos shell of old days, we old unix/dos style hacks cant get away from it
to open a cmd prompt on an NT style OS ( N4/2k or XP ) do this
go to the start menu, to the "Run" item, select it

a window will appear asking you to type in a command , next to where it says "Open"
type

CMD "enter"


case doesnt matter its just for clarity, "enter" means press the enter or return key.

it should open up a new window typically a black box with white writing and it'll prompt you as "C:>" or C:\Documents and Settings>" or something similar, that doesn't matter for this test

now type at the flash cursor, click on the black window first.

java -version "enter"

it should say something a bit like
Quote:
java version "1.4.2"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2-b28)
Java HotSpot(TM) Client VM (build 1.4.2-b28, mixed mode)
If should be similar to that, if not one of two things wil lhave happened, it'll either say

Quote:
CMD: Unknown command "java"
or some other error that will be an indication of whats going on.

if not and it does say something very similar to what i posted, the numbers are usually different, then we've figured out that java nd javascript are probably not whats wrong. and we go to the next step .


typing
exit "enter"

will close the cmd window or just press the X
charliex is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62