I'm in desperate Need, please help....Taking .java back to .jsp?????

Hello, I really made a mistake...and no one wants to start anything with those words.
I was in the process of creating an ecommerse sight using html and jsp, when I did a really dumb thing and deleted my files... I thought I had backed them up on disk and was preparing to shift computers, and didn't want to leave anything behind on the computer.
I might be ok, but I have a complex question.
I was using tomcat to host my files locally. While using tomcat it compiled my files into .java and .class files. I have these files, as I didn't delete them before moving computers.
This poses my question:
Is there a way to reverse engineer the .java and .class files back into the original .jsp files????
I still need to make a large amount of corrections to what I had, likewise I don't want to start all over from scratch..
ANY help would be GREATLY appreciated.
thank you very much.

An idea...
Couldn't you try to get and decompiled the .class files that Tomcat compiled from the servlet translated from the .jsp? This way, you would have lost your .jsp, but you could continue to work with the servlets or, if your motivated, you could cut and paste relevant parts of the servlets to new .jsp. That would surely be easier than rewrite all...

Similar Messages

  • Hi . please help me to back my security question i have in my account 25$ i dont know if my account are acctive or unacctive please help me

    hi . please help me to back my security question i have in my account 25$ i dont know if my account are acctive or unacctive please help me i dont know what i do

    If you have a rescue email address (which is not the same thing as an alternate email address) set up on your account then go to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you should see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address (you won't be able to add one until you can answer 2 of your questions) then you won't get the reset option - you will need to contact iTunes Support or Apple to get them reset.
    e.g. you can try contacting iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management , and then 'Forgotten Apple ID security questions'
    or try ringing Apple in your country and ask to talk to the Accounts Security Team : http://support.apple.com/kb/HE57
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5312

  • I forgot secret questions to enter the account I need to help me put back on the questions and answers them  Your brother Mohammed Al-Ghamdi

    I forgot secret questions to enter the account But I know the PIN number to my account I need to help me put back on the questions and answers them
    Your brother Mohammed Al-Ghamdi

    See Here > Apple ID: Contacting Apple for help with Apple ID account security
              Ask to speak with the Account Security Team...
      Or Email Here  >  Apple  Support  iTunes Store  Contact
    NOTE:
    It is not wise to post personal information on a Public forum. I have asked the Hosts to remove your Account Details and Phone Number.

  • IN DESPERATE NEED OF HELP! PLEASE!!!

    My Ipod wont charge and my computer wont read it.
    If i wiggle the thing by the bottom of the Ipod where it connects the screen will flicker.
    please help if possible!
    Its the Ipod touch 1st Generation

    Please someone help Ive got over 30 some gigs of music and videos on this and they are the only copys because it wont let me put my stuff on my new computer

  • Please I desperatly need your help!!

    sorry but I need 2 figure this out fast ive been at this all day but cant seem to find the answer.
    I need to write some info to a database but somehow it doesnt work.
    jsp code:
    <!-- order.jsp -->
    <%@ page import = "project.Login" %>
    <%@ page import = "java.util.Date" %>
    <jsp:useBean id="Login" scope="session" class="project.Login">
    </jsp:useBean>
    <%
    int klantid =  (Integer)session.getAttribute( "qooxeid");
    int order = Integer.parseInt(request.getParameter("order"));
    // Get the system date and time.
    java.util.Date utilDate = new Date();
    // Convert it to java.sql.Date
    Date datum = new java.sql.Date(utilDate.getTime());
    %>
    <jsp:setProperty name="Login" property="*" />
    <%@ page import="java.sql.*" %>
    <HTML>
    <HEAD>
    <TITLE>order</TITLE>
    </HEAD>
    <BODY>
    <% 
         String qooxeuser= (String)session.getAttribute( "qooxeuser" );
         if(qooxeuser == null){
    %>
              <jsp:forward page="login.html" />
    <%
         else{
              // write to winkelwagen
              Login.Winkelwagen();     
    %>
    U heeft uw product net in uw winkelwagentje gelegd.
    <%
    %>
    </BODY>
    </HTML>.java file:
    package project;
    import java.sql.*;
         public class Login{
         public Connection connection = null;
         public boolean confirmation = false;
         public String password;
         public int klantid;
         public String username;
         public int voorraad;
         public int order;
         public Date datum;
         public int orderid;
         public void Winkelwagen() throws SQLException, ClassNotFoundException{
                   initializeJdbc();
                   RowCount();
                   PreparedStatement sqlinsert = connection.prepareStatement
                   ("INSERT INTO Ordertbl VALUES(?, '?', ?, ?, 'winkelwagen')");
                   sqlinsert.setInt(1,orderid);
                   sqlinsert.setDate(2,datum);
                   sqlinsert.setInt(3,order);
                   sqlinsert.setInt(4,klantid);
                   ResultSet rsetinsert = sqlinsert.executeQuery();
                   rsetinsert.close();
                   sqlinsert.close();
                   connection.close();
         public void RowCount() throws SQLException, ClassNotFoundException{
              // Select the number of rows in the table
                   PreparedStatement sqlorderid = connection.prepareStatement(
                        "SELECT COUNT(*) FROM Ordertbl");
                   ResultSet rsetorderid = sqlorderid.executeQuery();
                   // Get the number of rows from the result set
                   rsetorderid.next();
                   orderid = 1 + rsetorderid.getInt(1);
                   rsetorderid.close();
                   sqlorderid.close();
         public void Login() throws SQLException, ClassNotFoundException{
             // Initialize database connection and create a Statemet object
              initializeJdbc();
              //** Execute a statement */
              PreparedStatement sql = connection.prepareStatement("SELECT Username, Password, klantid FROM Klant WHERE Klant.Username = ? and Klant.Password = ?");
              sql.setString(1,username);
              sql.setString(2,password);
              ResultSet rset = sql.executeQuery();
              if(rset.next()){
                   klantid =  Integer.parseInt(rset.getString(3));
                   confirmation = true;
                   /**Close connection**/
                   rset.close();
                   sql.close();
                   connection.close();
              else{
                   /**Close connection**/
                   rset.close();
                   sql.close();
                   connection.close();
         /** Initialize database connection */
         public void initializeJdbc() throws SQLException, ClassNotFoundException {
                   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                   // Connect to the sample database
                   connection = DriverManager.getConnection("jdbc:odbc:project");
                   //** Create a statement */
                   Statement statement = connection.createStatement();
         /**return username property*/
         public String getusername() {
              return username;
         public void setusername(String newusername){
              username = newusername;
              /**return klantid property*/
         public Integer getklantid() {
              return klantid;
         public void setklantid(Integer newklantid){
              klantid = newklantid;
         /**return klantid property*/
         public Date getdatum() {
              return datum;
         public void setklantid(Date newdatum){
         datum = newdatum;
              /**return password property*/
         public String getpassword() {
              return password;
         public void setpassword(String newpassword){
              password = newpassword;
         /** Return connection property */
         public Connection getConnection() {
              return connection;
    }when I run the jsp file with tomcat I get this error:
    org.apache.jasper.JasperException: 3
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:510)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    java.lang.ArrayIndexOutOfBoundsException: 3
         sun.jdbc.odbc.JdbcOdbcPreparedStatement.clearParameter(JdbcOdbcPreparedStatement.java:1021)
         sun.jdbc.odbc.JdbcOdbcPreparedStatement.setInt(JdbcOdbcPreparedStatement.java:525)
         project.Login.Winkelwagen(login.java:24)
         org.apache.jsp.order_jsp._jspService(org.apache.jsp.order_jsp:96)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:332)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    but dont think thats usefull
    Lots of thanks if you can help me

    sorry but I need 2 figure this out fastI think you mean that you 'need to figure' ... is it that tough to type one extra character?
    ive been at
    this all day but cant seem to find the answer.That should be a capitol 'I'.
    I need to write some info to a database but somehow
    it doesnt work....
    when I run the jsp file with tomcat I get this
    error:
    org.apache.jasper.JasperException: 3...
    root cause
    java.lang.ArrayIndexOutOfBoundsException: 3
         sun.jdbc.odbc.JdbcOdbcPreparedStatement.clearParameter(JdbcOdbcPreparedStatement.java:1021)
         sun.jdbc.odbc.JdbcOdbcPreparedStatement.setInt(JdbcOdbcPreparedStatement.java:525)
         project.Login.Winkelwagen(login.java:24)
         org.apache.jsp.order_jsp._jspService(org.apache.jsp.order_jsp:96)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:332)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    but dont think thats usefullI disagree. This tells you that there is an Array Index that is out of bounds in line 24 of the login java file. So, what you need to do is to find the 24th line of the java file, look at what code you are trying to execute, (here is a hint: as per the italicized error line, the line calls a setInt method in PreparedStatement).
    So why would one of the indexes you use in setInt method calls become out of bounds? Look at the PreparedStatement, and count the number of question marks. Then note that one of those question marks is different then the rest? So how would you fix that, you think?
    Lots of thanks if you can help me

  • Help me i am in desperate need of Help!!!

    I am trying to start Puzzlepirates and i believe its somethings to do with java, when i go to download it i just see a red X in the corner and this is the java console message,
    Java Plug-in 1.5.0_06
    Using JRE version 1.5.0_06 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\Jon Goodwin
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    p: reload proxy configuration
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    java.net.UnknownHostException: www.puzzlepirates.com
         at java.net.PlainSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at sun.net.NetworkClient.doConnect(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.<init>(Unknown Source)
         at sun.net.www.http.HttpClient.New(Unknown Source)
         at sun.net.www.http.HttpClient.New(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
         at sun.plugin.net.protocol.http.HttpUtils.followRedirects(Unknown Source)
         at sun.plugin.cache.CachedJarLoader.isUpToDate(Unknown Source)
         at sun.plugin.cache.CachedJarLoader.loadFromCache(Unknown Source)
         at sun.plugin.cache.CachedJarLoader.load(Unknown Source)
         at sun.plugin.cache.JarCache.get(Unknown Source)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.connect(Unknown Source)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)
         at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)
         at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)
         at sun.misc.URLClassPath$3.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.misc.URLClassPath.getLoader(Unknown Source)
         at sun.misc.URLClassPath.getLoader(Unknown Source)
         at sun.misc.URLClassPath.getResource(Unknown Source)
         at java.net.URLClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(Unknown Source)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    load: class Downloadlet not found.
    java.lang.ClassNotFoundException: Downloadlet
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    Exception in thread "Thread-4" java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletException(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletStatus(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    load: class Downloadlet not found.
    java.lang.ClassNotFoundException: Downloadlet
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    Exception in thread "Thread-9" java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletException(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletStatus(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception in thread "thread applet-Downloadlet" java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletException(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Please help as much as you can or as little i desperatly need help.

    Oi mate there's no need to be nasty, i was asking why
    and you just throw it in my face,Nobody is throwing anything in your face. You threw a stack trace at us and said Java is broken help me.
    Well Java is not broken.
    The Java program you are running is broken.
    But we don't know what it is doing and where it is broken. Only the people with the source for the program (puzzlepirates) can help you.
    It is not my fault if they won't help you or told you Java is broken.
    and it seems that the java is not working or
    something else is wrong on my computerAs a wild guess there is something wrong with the DNS on your machine or proxy or something like that. This is a guess based on the UnknownHostException. But again that is only a guess and the best guess one can make based on the information present.
    The problem I think is that their applet tries to do something but doesn't account for connections like yours and is blowing up because of that.
    Again only a guess and in the end really does nothing to solve your problem. If you want to solve this problem email the stack trace and perhaps my comments in this post about the UnknownHostException to puzzlepirates and ask them for help.
    Nobody else can help you but them.

  • IN DESPERATE NEED FOR HELP flashing question mark appears MacBook

    Hello everyone, I got this White MacBook Mac OS X 10.4.11 yesturday I was updating limewire and iTunes, I was downloading some songs from Limewire when all of a sudden my macbook frozed. I was not able to do a thing. Not even minimizing nor quiting the app nor even opening another aplication, so I decided to shut it down by holding the power button until it shut down (about 8 secs). So I restart my macbook and I got this grey=blank screen whit a flashing question mark on it. I've tried EVERYTHING on this link http://support.apple.com/kb/TS1440?viewlocale=en_US even these one http://support.apple.com/kb/HT1533 and all I was able to accomplish, was to hold the mouse (/trackpad) button to eject a Cd, and while pressing Shift during startup (in order to start in Safe Boot mode) all I get is this lock image and this space to type a password. I've tried typing every password I know and I can't fix my macbook. Can anyone please help me out on this one?

    It means certain system files needed for startup are corrupted. You will have to reinstall OS X. If your hard drive is unaffected you can try the following:
    How to Perform an Archive and Install
    An Archive and Install will NOT erase your hard drive, but you must have sufficient free space for a second OS X installation which could be from 3-9 GBs depending upon the version of OS X and selected installation options. The free space requirement is over and above normal free space requirements which should be at least 6-10 GBs. Read all the linked references carefully before proceeding.
    1. Be sure to use Disk Utility first to repair the disk before performing the Archive and Install.
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior (4.0 for Tiger) and/or TechTool Pro (4.5.2 for Tiger) to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Do not proceed with an Archive and Install if DU reports errors it cannot fix. In that case use Disk Warrior and/or TechTool Pro to repair the hard drive. If neither can repair the drive, then you will have to erase the drive and reinstall from scratch.
    3. Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When you reach the screen to select a destination drive click once on the destination drive then click on the Option button. Select the Archive and Install option. You have an option to preserve users and network preferences. Only select this option if you are sure you have no corrupted files in your user accounts. Otherwise leave this option unchecked. Click on the OK button and continue with the OS X Installation.
    4. Upon completion of the Archive and Install you will have a Previous System Folder in the root directory. You should retain the PSF until you are sure you do not need to manually transfer any items from the PSF to your newly installed system.
    5. After moving any items you want to keep from the PSF you should delete it. You can back it up if you prefer, but you must delete it from the hard drive.
    6. You can now download a Combo Updater directly from Apple's download site to update your new system to the desired version as well as install any security or other updates. You can also do this using Software Update.

  • Poor student in desperate need of help getting my Adam 4017 and 18 units functioning!!

    Thought I was getting a great deal. Like the loggers. Have them hooked up but I can not link to any program. Grant it I am a novice when it comes to these things. Im a microbiologist looking for bacteria that makes electric not a programmer.
    I need the most cost effective way to record data off of these loggers. Im supposesd to begin a project on friday. Dasylab? Anything. If I can just collect the numbers in a folder I can process.
    Please help. 
    Thanks

    DASYLab 13 includes an ADAM module that should work with those units. 
    You do need to ensure that they are configured correctly, and have unique unit ids, and that they are wired correctly. Documentation should be available on the Advantech site.
    You can download the DASYLab 13 evaluation from www.dasylab.com. Choose the Evaluation mode, and select the ADAM driver under the Data Acquisition packages.
    - cj
    Measurement Computing (MCC) has free technical support. Visit www.mccdaq.com and click on the "Support" tab for all support options, including DASYLab.

  • Premiere export option are grayed, only two options aren't gray, and neither are what i need please help!

    i am new to premiere pro, i recently edited a whole short film, effects, music, everything, but it will not give me an option to export. the only export options are: AAF and FINAL CUT PRO XML, can anyone please help me figure out how to fix this? i really dont think i can remake this project! and its due by the end of the week! i need to export as a regular avi/movie file, to upload to youtube and send in an email and burn on a disk. ive tried a few things, including searching online for answers but i havent had any luck on my own. please please help!

    CS5-thru-CC PPro/Encore tutorial list http://forums.adobe.com/thread/1448923 may help

  • I am in desperate need of help

    Hey, i am in a class at school and we need to use a forum to
    find out a word using this hint-
    Complex interactivity (buttons, navigation, etc.) can be
    built into Flash using this computer programming language:
    please help me out, thanks.

    schools should first teach you to use the search funtion -
    just asked and answered yesterday by
    someone else in your class - probably your best friend :p
    ~~~~~~~~~~~~~~~~
    --> Adobe Certified Expert
    --> www.mudbubble.com
    --> www.keyframer.com
    ~~~~~~~~~~~~~~~~
    t-cox wrote:
    > Hey, i am in a class at school and we need to use a
    forum to find out a word
    > using this hint-
    >
    > Complex interactivity (buttons, navigation, etc.) can be
    built into Flash
    > using this computer programming language:
    >
    > please help me out, thanks.
    >
    >

  • In desperate need of help trying to get router installed

    Hi,
    I have a macbook and I have just bought a Belkin router and have put the setup disk in the drive. It says to open up the disk and click start.osx.
    When I do this it just says 'There is no default application specified to open the document "start.osx"
    Then offers me the choice to choose application.
    What do I do? Please help me before I lose all my hair!
    Thanks

    I concur with the previous suggestion. I find the "setup wizards" to be useless at worst or poor at best. I'm thinking the only useful thing on that setup CD is the user manual.
    I think Belkin's usual web interface is at http://192.168.2.1:88 . That's what I recall from trying to get one working. Plug it in via the ethernet cable and try accessing the configuration from there. HTTP (web-page style) interfaces work great although sometimes you need to hunt around for all the steps you need. Even someone who uses a setup wizard will need to use the standard web-based configuration screens for more advanced settings and monitoring.

  • In desperate need of help/ideas to activate iPhone 5s before tomorrow!!

    I need to activate my brand new unlocked iPhone 5s bought directly from Apple yesterday. However my giffgaff sim card has not arrived .... speaking to giffgaff I can activate it using an O2 nano sim, then replace and alter APN settings when giffgaff sim arrives. What I want to know is can I activate with my brothers nano sim card although he is on a contract on EE. Alternatively can I activate it with a friends O2 nano sim even though they are on contract with O2?? Please help!

    You can use another SIM to activate the phone, however without your own SIM, you will not be able to use it for anything much. Do not activate iMessage with the other SIM installed, or that will associate your phone with the other person's iMessage and truly make a mess of things.

  • Simple button rollover effect help needed - please help!

    Hi everyone,
    I was hoping someone could tell me how was this rollover
    effect done - can be seen on the small map on the right:
    http://www.refinery29.com/
    What I want to do is to be able to have the same effect on
    rollover and rollout just reversed (fade in - fade out).
    Please help!!
    THANKS

    quote:
    Originally posted by:
    NedWebs
    That naming at both ends is something I consider a fluke in
    Flash's design, but only because I don't know why it won't work the
    way you probably had it.
    There's probably some logical explanation, but I haven't
    found it, just the solution for when it happens
    It's such a minor little detail. I suspected it would be
    something this small, as that's usually the case, but I just
    couldn't put my finger on it. Not one of the places I researched
    made any reference to that when they said to name the instance of
    the button. How stupid.
    Anyway, thank you again. I can finally move forward. This was
    driving me mad.

  • BlackBerry PlayBook glitches out don't no if it is the blackberry or a virus in DESPERATE need of help!!!!!!​!!!!!

    Hi,
    I got this black berry PlayBook for Christmas and it starts to open up random things and just 'glitch' out idk if it is a virus but I really want to find out I have restarted it and it didn't  work  please help!!!!!!

    If it opens random apps without you touching the screen at all, even after doing a 3 button reset, try a security wipe.
    Try the solution from knottyrope here:
    http://supportforums.blackberry.com/t5/BlackBerry-​PlayBook/debrick-method-OS-2/m-p/1605149#M29581 

  • Transfer iTunes music onto your iPod(desperate need of help)

    Ok, So I plugged in my iPod into the computer with that wire(whatever u want to call it) and it should say do not disconnect, but the iTunes should say it too but it doesn't. Now when i plug it in it's not doing anything at all!! It wont' transfer it into my iPod. SOMEONE PLEASE HELP!! If someone can please contact me onto my e-mail adress- [email protected] or if you have Aol instant messenger please IM me at- xAzNpRiDe1991x. THANKS!!

    June,
    We tend to keep answers on the public forum, that way, anyone else who is expereincing the same problem has the benefit of your experience.
    If your iPod is not recognised by the computer when you plug it in, try resetting it (with it connected). Hold down the menu/select buttons until you see the Apple logo. May take several tries.

Maybe you are looking for

  • Calling Multiple forms for a single Output Type in Smartforms

    Hi SAP Gurus.. I want to call 2 smartforms simultaneously for a Single O/P type. But the problem is that My Driver Program in Standard. I cannot edit the Driver form. Whatever I need to do I can do it only in the Smartforms. Please help me out in thi

  • Material type - maintainance by qty and value

    Dear All Guru, Yesterday I had copied the plant from the plant belong to same company and maintained the same val Gr Code. But i found that I am not able to make GR posting and the error was Plant and material type is not matching and then over SDN i

  • Data plans available for macs

    HI, what data plans are available for macs so that I can get internet access when none is available? Also, are any of these month to month???  Thank you!

  • Accounting and Reporting sequences

    I've configured the Accounting and reporting sequences for both: - GL-period Close - GL Journal Entry and - GL-period close - Subledger Journal Entry and I still can not see reporting sequences for all subledger journals (not on any form nor on any r

  • Apple ID and problems with credit card

    Hi, I'm having a lot of problems with the credit card registered to my ID. I always made purchases with the card registered but now I get an error message which is as follows: "Your payment method was not accepted. Please enter valid information for