Please need help with my application manifest signed Comodo to get rid of the Oracle security warning

Dear members. I need your help please

I have a game I'm hosting at www.hiredforoneday.com

I signed the code with Comodo M/s. I wrote the manifest file (and changed so many times) but I still get the Oracle security warning:

"This application will run with unrestricted access, which can put your computer and personal information at risk.

Run this application if you trust the place and the editor above.

I'm must admit am bat / do not understand what I do.

Please I need your help on how to write the code manifest, how correctly put it in the jar and how to reference the html code

The game can be played online from www.hiredforone Day

I need the system clock of the client and also I used getResources() to read images in the jar file

on the site, I have a (Play) button. During a call to the play button, the index page connects to the file play.html which is located in the folder pots.
The file play.html calls the HiredForOneDay.jar file that is located in the folder of the pots. Files such as launch.jnlp, launch.html are all in the jarsfolder.

My game using Cardlayout (CardLayOutClass) in the Applets init() the

cardLayoutClass.showCongratulationsPanel (); which shows the Congraculations class

then setJMenuBar (helpTopicSelector.getBar ()); HelpTopicSelector is also another class

Here is the code

[code]

package hiredforoneday;

/**
* @(#) HiredForADayApplet.java
*

* @author Ruth Bugembe
* @author John Bannick
* @version December 23, 2012
*/
@SuppressWarnings ("serial")
SerializableAttribute public class HiredForADayApplet extends javax.swing.JApplet {}

public static CardLayoutClass cardLayoutClass;
HelpTopicSelector helpTopicSelector;
@Override
@SuppressWarnings("static-access")
public void init() {}

cardLayoutClass = new CardLayoutClass();
helpTopicSelector = new HelpTopicSelector (this);

Add (cardLayoutClass.getMainPanel (), BorderLayout.CENTER);
cardLayoutClass.showCongratulationsPanel ();

setJMenuBar (helpTopicSelector.getBar ());

}

} [/ code]

I didn't send in the manifest code because I did so many versions and now am confused

Thanks again for your time

Ruth

I don't think it's possible to prevent the warning message from appearing at least once. There could be an option 'do not show this again' on the dialog box warning that users can check to prevent it from appearing again. Codezone-the only thing I can think is to eliminate the dependency on the system clock client side so that the attribute in the manifest file permissions can be set to 'sandbox' rather than 'all rights '. You don't know if he read images from the same signed jar file still qualified under 'sandbox' - try it and see.

It is worth noting that other publishers Java RIA as the Knowledge Base for the Skillsoft Support are also facing the same issue, and they document simply as a relatively mild warning message.

Tags: Java

Similar Questions

  • Please need help with the deployment of web applications in Jdeveloper 12 c

    Hello

    I'm desperate for help guys. am trying to deploy a web application in weblogic server, but nothing works!

    I have created a project in jdeveloper and created a jsp page in the project, what I want is to run this page!

    I followed the instructions here: Deployment of Applications Web Fusion , I don't really know if I did good or bad, the document is too detailed and not understood clearly.

    I am a newbie oracle user and trying to build a jsp web application connected to the oracle database. fails application deployment it says: cannot run application deployment IntegratedWeblogic error...

    Please could you tell me the steps of deploying applications in Jdeveloper 12 c?
    What deployment profiles, I need to create (ear, war, mar)?

    This deployment descriptor, I need for my application work?

    Please guys I am newbie to oracle, if you could give me simplified answers and straight instructions it will be appreciated .

    Thank you

    It depends on your knowledge of jsp and the possible controllers like struts, the faces and the adf (which is an addon of jsf). ADF has the advantage that a large number of configurations and other stuff is handled for you. However, if you are familiar with Struts you can use it too.

    The decision also depends on demand and what he should do. I can't comment on this, as I don't know.

    As you use 12 c my recommendation is to use the stack complete adf, meaning adf faces and adfbc for access to the data in the Database.

    There is a license for the adf if you want to deploy on a WebLogic Server, however there is a free version (adf essentials) that uses a GlassFish server.

    Timo

  • Need help with VB6 Application.

    Original title: Windows 7 & VB6

    We have developed the VB6 Application on Windows XP, this VB6 application calls the dot net (x 86) DLL. The VB6 Application works fine in Win XP environment. When we deploy VB6 application in Win 7 environment, we get errors. only the calling part of Dot net does not work.

    is there any solution for this?

    This issue is beyond the scope of this site and must be placed on Technet or MSDN

    http://social.msdn.Microsoft.com/forums/en-us/home

  • need help with downloading applications

    Hi I am trying to download some creative Cloud applications and he goes on to say that it has been downloaded already, but will not be displayed on my folder of the application. I installed a trial version but maybe he deleted things that it was already installed. Any help would be amazing.

    Thank you!

    Hi student-panda,

    Please run creative tool cloud cleanser and then launch CC desktop applications. It should solve the problem.

    http://www.Adobe.com/support/contact/cscleanertool.html

    Kind regards

    Abhijit

  • Need help with my application

    Hi all

    My select query is as below,

    Select x.col_1 in the x tble_name, where x.col2.id = x.id;

    Looks like a simple request, but the problem here is col2 includes the name of the table. This means that table1.table_name.id = table1.my_field

    and my error message is below.

    ORA-00904: 'x '. "" col2 ". "" id ": invalid identifier (it is quite common that the column name is not valid, but my where condition must be table1.my_field = tablle2.id (table2 is a field value in my table1))
    00904, 00000 - '% s: invalid identifier '.

    How...?

    Thank you
    NGO

    It's like an intermediate table that I use it to update several tables. To update the value in the column new_date with the value of column_name (of the destination table) to destination_table (table name).

    You'll need generate SQL code and execute it. The following method should result in a single SQL statement by tables and columns to update so if you update the same lots of times with different values column, you will not have many versions of essentially the same SQL code. I create my own test data you provide none. Be sure to read the FAQ on how to ask questions.

    SQL> create table test_synch
      2  (
      3  type_is varchar(10) ,
      4  cycle_date date ,
      5  destination_table varchar(30),
      6  column_name varchar(30),
      7  old_data varchar(100),
      8  new_data varchar(100),
      9  column_type varchar(15),
     10  seq_number varchar(10),
     11  last_upd_user varchar(15) NOT NULL ,
     12  last_upd_date date default(sysdate) ,
     13  PRIMARY KEY (type_is, cycle_date,destination_table,column_name, seq_number)
     14  );
    
    Table created.
    
    Elapsed: 00:00:00.17
    SQL>
    SQL> CREATE TABLE dt_test_target
      2  (      ID    NUMBER NOT NULL,
      3         col1  VARCHAR2(100)
      4  )
      5  /
    
    Table created.
    
    Elapsed: 00:00:00.04
    SQL> INSERT INTO dt_test_target SELECT ROWNUM, 'ROW'||TO_CHAR(ROWNUM) FROM dual CONNECT BY LEVEL <=10
      2  /
    
    10 rows created.
    
    Elapsed: 00:00:00.03
    SQL> SELECT * FROM dt_test_target
      2  /
    
            ID COL1
    ---------- --------------------
             1 ROW1
             2 ROW2
             3 ROW3
             4 ROW4
             5 ROW5
             6 ROW6
             7 ROW7
             8 ROW8
             9 ROW9
            10 ROW10
    
    10 rows selected.
    
    Elapsed: 00:00:00.01
    SQL> insert into test_synch
      2  VALUES ('UDPATE',SYSDATE,'dt_test_target','col1','ROW1','UPDATED ROW1','VARCHAR2',1,USER,SYSDATE)
      3  /
    
    1 row created.
    
    Elapsed: 00:00:00.01
    SQL> insert into test_synch
      2  VALUES ('UDPATE',SYSDATE,'dt_test_target','col1','ROW5','UPDATED ROW5','VARCHAR2',2,USER,SYSDATE)
      3  /
    
    1 row created.
    
    DECLARE
    
         ls_Sql          VARCHAR2(4000);
    
    BEGIN
    
         FOR lr_Update IN (     SELECT
                             destination_table,
                             column_name,
                             old_data,
                             new_data,
                             column_type,
                             seq_number,
                             type_is,
                             cycle_date
                        FROM
                             test_synch
                        ORDER BY
                             destination_table,
                             seq_number
                   )
         LOOP
    
              ls_Sql := '
            UPDATE '||lr_Update.destination_table||' dest
            SET dest.'||lr_Update.column_name||' =
                (SELECT src.new_data FROM test_synch src WHERE
                src.old_data = dest.'||lr_Update.column_name||'
                AND src.destination_table = :dest_table
                AND src.column_name = :column_name
                AND src.seq_number = :seq_num
                AND src.cycle_date = :cycle_date
                AND src.type_is = :type_is)
            WHERE EXISTS(   SELECT NULL
                            FROM   test_synch src
                            WHERE  src.old_data = dest.'||lr_Update.column_name||'
                            AND src.destination_table = :dest_table
                            AND src.column_name = :column_name
                            AND src.seq_number = :seq_num
                            AND src.cycle_date = :cycle_date
                            AND src.type_is = :type_is
                            )';
    
             DBMS_OUTPUT.put_line(ls_SQL);
             DBMS_OUTPUT.put_line(lr_Update.destination_table);
             DBMS_OUTPUT.put_line(lr_Update.column_name);
             DBMS_OUTPUT.put_line(lr_Update.seq_number);
             DBMS_OUTPUT.put_line(lr_Update.cycle_date);
             DBMS_OUTPUT.put_line(lr_Update.type_is);
    
             EXECUTE IMMEDIATE ls_SQL USING lr_Update.destination_table,
                                            lr_Update.column_name,
                                            lr_Update.seq_number,
                                            lr_Update.cycle_date,
                                            lr_Update.type_is,
                                            lr_Update.destination_table,
                                            lr_Update.column_name,
                                            lr_Update.seq_number,
                                            lr_Update.cycle_date,
                                            lr_Update.type_is;
    
         END LOOP;
    
    END;
    /
    PL/SQL procedure successfully completed.
    
    Elapsed: 00:00:00.15
    SQL> SELECT * FROM dt_test_target
      2  /
    
            ID COL1
    ---------- --------------------
             1 UPDATED ROW1
             2 ROW2
             3 ROW3
             4 ROW4
             5 UPDATED ROW5
             6 ROW6
             7 ROW7
             8 ROW8
             9 ROW9
            10 ROW10
    
    10 rows selected.
    
    Elapsed: 00:00:00.03
    

    HTH

    David

  • I need help with change of subscription countries - in Australia now, moving to the UK in 6 months.

    Hi adobe communities.

    I was wondering if someone could kindly help? Please, I beg you.

    Currently, I am based in Melbourne since April. I came to the United Kingdom.

    I intend to sign up to the below plan in the coming days when my trial ends. Come February 2016 (for 6 months), I'll be back to the United Kingdom in recent years.

    It's regarding Adobe Creative cloud (for Photoshop and Lightroom) an amount of $9.99 per month plan.

    Q1. If me sign up for a subscription to Adobe and start using Lightroom in Australia now... in 6 months when I move to the United Kingdom, what steps should I do so that things will run smoothly for me in terms of Photoshop and Lightoom? Can someone please clarify, step by step, please?

    Q2.  I'll LOSE all the presets and also all action I did my edited and imported images that I've done so far in my Adobe Lightroom (in Australia)?

    OR I'll be able to transfer all my Australian presets and imported images published to my NEW Adobe in the United Kingdom?

    Q3. I noticed there are only 2 subscriptions: Annual Plan - pay monthly & annual Plan - prepaid.

    My question: is there a plan monthly - paid monthly?

    So am I right in saying that: if I choose the Annual - Plan paid a monthly subscription now... .and in February 2016 (duration of 6 months)... when I cancel that subscription, I will be always deducted 6 months x $9.99 = $60 for my rest of commitment 6 months... I just wanted to clarify so I know where I am.

    Q4. How can I Cancel when it comes to January 2016? What are the steps...

    Q5. My Lightroom trial period is about to end in a few days time... If I just decide to sign up and start my monthly subscription (for example in 3 weeks) I'll LOSE all my presets of action and program of the edited images, I currently have in my Lightroom trial?

    Q6. Am I just creative cloud Adobe (for Photoshop and Lightroom) $ 9.99 per month plan has only 2 GB of cloud.

    Which means at some point soon, I have to remove my images currently published from Lightroom in order to continue to import and working on new images...

    Thanks very much for kindness for all your answers... deeply and sincerely appreciate it.

    Thanks again,

    Kevin

    Hey Kevin,

    1. You can check the Change the country associated with your Adobe ID link.
    2. The actions presets are stored in the memory of your computer and associated subscription or adobe ID. So unless you change the computer, everything associated with applications will remain the same.

    3. Yes, we have only an annual Plan - pay monthly & annual Plan - paid in case of cloud Creative photography program

    After Six months, when you will spend in the UK then:

    PREPAID ANNUAL plan - you can continue the subscription without cancelling if you buy

    Paid MONTHLY - ANNUAL plan, you can continue to use the subscription if you want to use the billing information, address and e-mail id of Australia you do not need to cancel

    Or, you must cancel and redeem the subscription with new details

    When you cancel after 6 months, there will be some early termination fee which will be 50% of the remaining months. You can check the link plans creative cloud pricing and membership | Adobe Creative Cloud

    For more information

    4. to cancel the subscription, you can check the link below.

    Cancel your membership creative cloud

    5. No, all edited images and presets will remain the same because they are saved in the memory of your office.

    6. Yes, you reason that Adobe Creative cloud (for Photoshop Lightroom &) $ 9.99 per month plan has only 2 GB of space cloud. Given that all the images are stored on your computer's memory, the cloud storage space is not used.

    Kind regards

    Hervé Khare

  • Menu accordion need help with 1084 identifier expected before case (line 58 &amp; 98); in the meantime identifier before rightmenu (line 59 &amp; 99)

    Guys,

    I am doing an accordion menu option and wrote the ActionScript for that and in the end I got a two errors. I enclose the code, it would really help if you could help me solve this problem.

    line 58 & 59

    case 'whoBar ':

    if(this.whoBackground.y<0) {}

    line 98 & 99

    case 'innoBar ':

    if(this.innoBackground.y<72) {}

    Code:

    package {}

    import flash.display.MovieClip;

    import flash.events.Event;

    import flash.events.MouseEvent;

    SerializableAttribute public class MenuAccordionMC extends MovieClip {}

    public var activeColor:String = new String();

    public var speed: Number = new Number().

    public void MenuAccordionMC() {}

    activeColor = 'none ';

    Speed = 10;

    addEventListener (MouseEvent.CLICK, accordionClick);

    addEventListener (Event.ENTER_FRAME, accordionMove);

    }

    public void accordionClick(event:MouseEvent):void {}

    {if(Event.Target.currentFrame==1)}

    event.target.gotoAndStop (2);

    activeColor = event.target.name;

    } else {}

    event.target.gotoAndStop (1);

    activeColor = 'none ';

    }

    }

    public void accordionMove(event:Event):void {}

    Switch (activeColor) {}

    'none ': case study

    If (this.whoBackground.y > =-288) {}

    this.whoBackground.y = speed;

    }

    If (this.innoBackground.y > =-216) {}

    this.innoBackground.y = speed;

    }

    If (this.susBackground.y > = 144) {}

    this.susBackground.y = speed;

    }

    If (this.transBackground.y > =-72) {}

    this.transBackground.y = speed;

    }

    If (this.contriBackground.y > = 0) {}

    This.contribackground.y = speed;

    }

    }

    if(this.innoBar.x>72) {}

    this.innoBar.x = speed;

    }

    if(this.susBar.x>144) {}

    this.susBar.x = speed;

    }

    if(this.transBar.x>216) {}

    this.transBar.x = speed;

    }

    if(this.contriBar.x>288) {}

    this.contriBar.x = speed;

    }

    break;

    case 'whoBar ':

    if(this.whoBackground.y<0) {}

    this.whoBackground.y += speed;

    move all the bars to the right of the screen and sets the previous bar position x

    if(this.innoBar.y<432) {}

    this.innoBar.y += speed;

    }

    if(this.innoBackground.y<72) {}

    this.innoBackground.y += speed;

    }

    if(this.susBar.y<504) {}

    this.susBar.y += speed;

    }

    if(this.susBackground.y<144) {}

    this.susBackground.y += speed;

    }

    if(this.transBar.y<576) {}

    this.transBar.y += speed;

    }

    if(this.transBackground.y<216) {}

    this.transBackground.y += speed;

    }

    if(this.contriBar.y<648) {}

    this.contriBar.y += speed;

    }

    if(this.contriBackground.y<288) {}

    this.contriBackground.y += speed;

    }

    If another color is already selected

    {if(this.innoBar.currentFrame==2)}

    this.innoBar.gotoAndStop (1);

    } else {if(this.susBar.currentFrame==2)

    this.susBar.gotoAndStop (1);

    } else {if(this.transBar.currentFrame==2)

    this.transBar.gotoAndStop (1);

    } else {if(this.contriBar.currentFrame==2)

    this.contriBar.gotoAndStop (1);

    }

    }

    break;

    case 'innoBar ':

    if(this.innoBackground.y<72) {}

    this.innoBackground.y += speed;

    if(this.susBar.y<504) {}

    this.susBar.y += speed;

    }

    if(this.susBackground.y<144) {}

    this.susBackground.y += speed;

    }

    if(this.transBar.y<576) {}

    this.transBar.y += speed;

    }

    if(this.transBackground.y<216) {}

    this.transBackground.y += speed;

    }

    if(this.contriBar.y<648) {}

    this.transBar.y += speed;

    }

    if(this.transBackground.y<288) {}

    this.transBackground.y += speed;

    }

    If another color is already selected

    {if(this.whoBar.currentFrame==2)}

    this.whoBar.gotoAndStop (1);

    } else {if(this.susBar.currentFrame==2)

    this.susBar.gotoAndStop (1);

    } else {if(this.transBar.currentFrame==2)

    this.transBar.gotoAndStop (1);

    } else {if(this.contriBar.currentFrame==2)

    this.transBar.gotoAndStop (1);

    }

    }

    if(this.innoBar.y>72) {}

    this.innoBar.y = speed;

    If (this.whoBackground.y >-288) {}

    this.whoBackground.y = speed;

    }

    if(this.susBar.y<504) {}

    this.susBar.y += speed;

    }

    if(this.susBackground.y<144) {}

    this.susBackground.y += speed;

    }

    if(this.transBar.y<576) {}

    this.transBar.y += speed;

    }

    if(this.transBackground.y<216) {}

    this.transBackground.y += speed;

    }

    if(this.contriBar.y<648) {}

    this.contriBar.y += speed;

    }

    if(this.contriBackground.y<288) {}

    this.contriBackground.y += speed;

    }

    If another color is already selected

    {if(this.whoBar.currentFrame==2)}

    this.whoBar.gotoAndStop (1);

    } else {if(this.susBar.currentFrame==2)

    this.susBar.gotoAndStop (1);

    } else {if(this.transBar.currentFrame==2)

    this.transBar.gotoAndStop (1);

    } else {if(this.contriBar.currentFrame==2)

    this.contriBar.gotoAndStop (1);

    }

    }

    break;

    case 'susBar ':

    if(this.susBackground.y<144) {}

    this.susBackground.y += speed;

    if(this.transBar.y<576) {}

    this.transBar.y += speed;

    }

    if(this.transBackground.y<216) {}

    this.transBackground.y += speed;

    }

    if(this.contriBar.y<648) {}

    this.contriBar.y += speed;

    }

    if(this.contriBackground.y<288) {}

    this.contriBackground.y += speed;

    }

    If another color is already selected

    {if(this.whoBar.currentFrame==2)}

    this.whoBar.gotoAndStop (1);

    } else {if(this.innoBar.currentFrame==2)

    this.innoBar.gotoAndStop (1);

    } else {if(this.transBar.currentFrame==2)

    this.transBar.gotoAndStop (1);

    } else {if(this.contriBar.currentFrame==2)

    this.contriBar.gotoAndStop (1);

    }

    }

    if(this.susBar.y>144) {}

    this.susBar.y = speed;

    If (this.whoBackground.y >-288) {}

    this.whoBackground.y = speed;

    }

    if(this.innoBar.y>72) {}

    this.innoBar.y = speed;

    }

    If (this.innoBackground.y > =-216) {}

    this.innoBackground.y = speed;

    }

    if(this.transBar.y<576) {}

    this.transBar.y += speed;

    }

    if(this.transBackground.y<144) {}

    this.transBackground.y += speed;

    }

    if(this.contriBar.y<648) {}

    this.contriBar.y += speed;

    }

    if(this.transBackground.y<216) {}

    this.transBackground.y += speed;

    }

    If another color is already selected

    {if(this.whoBar.currentFrame==2)}

    this.whoBar.gotoAndStop (1);

    } else {if(this.innoBar.currentFrame==2)

    this.innoBar.gotoAndStop (1);

    } else {if(this.transBar.currentFrame==2)

    this.transBar.gotoAndStop (1);

    } else {if(this.contriBar.currentFrame==2)

    this.contriBar.gotoAndStop (1);

    }

    }

    break;

    case "transBar:

    if(this.transBackground.y<216) {}

    this.transBackground.y += speed;

    if(this.contriBar.y<648) {}

    this.contriBar.y += speed;

    }

    if(this.contriBackground.y<288) {}

    this.contriBackground.y += speed;

    }

    If another color is already selected

    {if(this.whoBar.currentFrame==2)}

    this.whoBar.gotoAndStop (1);

    } else {if(this.innoBar.currentFrame==2)

    this.innoBar.gotoAndStop (1);

    } else {if(this.susBar.currentFrame==2)

    this.susBar.gotoAndStop (1);

    } else {if(this.susBar.currentFrame==2)

    this.susBar.gotoAndStop (1);

    } else {if(this.contriBar.currentFrame==2)

    this.contriBar.gotoAndStop (1);

    }

    }

    if(this.transBar.y>216) {}

    this.transBar.y = speed;

    If (this.whoBackground.y >-288) {}

    this.whoBackground.y = speed;

    }

    if(this.innoBar.y>72) {}

    this.innoBar.y = speed;

    }

    If (this.innoBackground.y > =-216) {}

    this.innoBackground.y = speed;

    }

    if(this.susBar.y>144) {}

    this.susBar.y = speed;

    }

    If (this.susBackground.y > = 144) {}

    this.susBackground.y = speed;

    }

    if(this.contriBar.y<648) {}

    this.contriBar.y += speed;

    }

    if(this.contriBackground.y<288) {}

    this.contriBackground.y += speed;

    }

    If another color is already selected

    {if(this.whoBar.currentFrame==2)}

    this.whoBar.gotoAndStop (1);

    } else {if(this.innoBar.currentFrame==2)

    this.innoBar.gotoAndStop (1);

    } else {if(this.susBar.currentFrame==2)

    this.susBar.gotoAndStop (1);

    } else {if(this.contriBar.currentFrame==2)

    this.contriBar.gotoAndStop (1);

    }

    }

    break;

    case 'contriBar ':

    if(this.contriBackground.y<288) {}

    this.contriBackground.y += speed;

    {if(this.whoBar.currentFrame==2)}

    this.whoBar.gotoAndStop (1);

    } else {if(this.innoBar.currentFrame==2)

    this.innoBar.gotoAndStop (1);

    } else {if(this.susBar.currentFrame==2)

    this.susBar.gotoAndStop (1);

    } else {if(this.transBar.currentFrame==2)

    this.transBar.gotoAndStop (1);

    }

    }

    if(this.contriBar.y>288) {}

    this.contriBar.y = speed;

    If (this.whoBackground.y >-288) {}

    this.whoBackground.y = speed;

    }

    if(this.innoBar.y>72) {}

    this.innoBar.y = speed;

    }

    If (this.innoBackground.y > =-216) {}

    this.innoBackground.y = speed;

    }

    if(this.susBar.y>144) {}

    this.susBar.y = speed;

    }

    If (this.susBackground.y > = 144) {}

    this.susBackground.y = speed;

    }

    if(this.transBar.y>216) {}

    this.transBar.y = speed;

    }

    If (this.transBackground.y > =-72) {}

    this.transBackground.y = speed;

    }

    {if(this.whoBar.currentFrame==2)}

    this.whoBar.gotoAndStop (1);

    } else {if(this.innoBar.currentFrame==2)

    this.innoBar.gotoAndStop (1);

    } else {if(this.susBar.currentFrame==2)

    this.susBar.gotoAndStop (1);

    } else {if(this.transBar.currentFrame==2)

    this.transBar.gotoAndStop (1);

    }

    }

    break;

    }

    }

    }

    }

    Please, I worked on it for a long time.

    public void accordionMove(event:Event):void {}

    Switch (activeColor) {}

    'none ': case study

    {if(this.whoBackground.y>=-288)}

    this.whoBackground.y = speed;

    }

    {if(this.innoBackground.y>=-216)}

    this.innoBackground.y = speed;

    }

    {if(this.susBackground.y>=-144)}

    this.susBackground.y = speed;

    }

    {if(this.transBackground.y>=-72)}

    this.transBackground.y = speed;

    }

    {if(this.contriBackground.y>=0)}

    This.contribackground.y = speed;

    }

    }  //<- this="" is="" the="" end="" of="" your="" switch="" statement="" and="" is="" the="" first="" problematic="" line. ="" remove="">

  • I am looking for a software that will help me to clean up my computer and get rid of the files that are basically take place and causing my computer to run slowly.

    My computer is running slowly. Sometimes, when several programs are open the computer will just restart. I ran a free program offered by Gateway but do not know if the program does what it says it will and I don't want to pay for something that probably just convinced bridge their product works and gateway could recover a kick to it people buy.

    Hello

    I suggest that you click on the link provided below to optimize Windows XP computer for better performance.

    Slow PC? Optimize your computer for peak performance

    http://www.Microsoft.com/athome/Setup/optimize.aspx

    Note:

    Running chkdsk on the drive if bad sectors are found on the disk hard when chkdsk attempts to repair this area if all available on which data may be lost

  • Need help with following error Message: ERROR of OPENING WET7CABLE. LOG FILE on my Windows XP laptop

    Please need help with an Error Message on my cell phone. The message is as follows: ERROR of OPENING WET7CABLE. LOG FILE

    This message came after running a disk that was provided by Belkin cable easy transfer (FU279) on my old laptop with Windows XP Home Edition you are trying to transfer my files from my old computer laptop w/Win XP on a new computer laptop w/Win 7. This record is for the Windows XP upgrade to Windows 7 and transfer the files.

    I want to thank all in advance for your answers.

    Nelson Santiago

    Hi NELSONSANTIAGO,

    1. when exactly you receive the error message?

    2. is the Belkin easy transfer cable recognized by the Windows XP computer?

    This file may be located on the Belkin Easy Transfer Cable installation disc.

    For more information on how to use or configure the Belkin Easy Transfer cable in Windows XP, see the link below the manual on the Belkin site and check if that helps.

    http://en-UK-support.Belkin.com/app/product/detail/p/4825

  • Need help with text in After Effects

    Hello!

    I'm new with After Effects and need help with something that should be simple.

    I use the effect of the stroke and Freehand drawing, and I'm trying to get the text to go from left to right, but for some reason any, that it seems to be random.

    Any ideas?

    Click and drag as you would layers.

    If you're new to AE, it would be a good idea to take a step back, take some time and go through these resources. Have solid foundation in how AE work will make things go a lot faster and with much less frustration.

  • How can I get ahold of a LIVE person? I need HELP with my email account (Email removed for privacy), you can contact me at Email removed for privacy or * withdrawn * please someone HELP! Mike Golab

    How can I get ahold of a LIVE person? I need HELP with my email account (* address email is removed from the privacy *) you can contact me to the * address email is removed from the privacy * or * remove * please someone HELP! Mike Golab

    E-mail address is removed from the privacy *.

    No, and that has nothing to do with this old thread. This is a scam that last for years. Microsoft never does unsolicited phone calls.
     
     
     
     
     

    Scams by e-mail or web: how to protect yourself
    http://www.Microsoft.com/security/online-privacy/phishing-scams.aspx
     
     
     
     

    Aggressive, persistent Windows tech support fraudsters continue to track consumers
    http://www.Computerworld.com/s/article/9248122/Aggressive_persistent_Windows_tech_support_scammers_continue_to_stalk_consumers
     
     
  • I'm suddenly needing help with my browser Firefox (6.0.2)

    Hello
    I'm suddenly needing help with my browser Firefox (6.0.2)

    (OS: I use Windows XP).

    When I open the browser, I don't see is a totally white screen of white, with all the toolbars at the top.

    I know that my physical connections are very good: I have tested the modem, turned the pc market etc and I can also receive/send emails.

    This problem started today, September 8, 2011 and has never happened before.

    Is it a coincidence that Firefox itself to day before I disconnected yesterday evening? Could this be something to do with this particular new update?

    I also noticed that just before I "opened" Firefox, I now get a small box indicating:

    [JAVASCRIPT APPLICATION]
    Handl exc in Ev: TypeError: this oRoot.enable is not a function

    This never appeared before - I hope that it offers a clue has what is wrong.

    The browser not be stuck in Mode safe, said by the way.

    Of course, I can't find solutions to the problem on the internet, I don't physically see all Web sites!
    (A friend sends this request in my name from their pc)

    Any light you can throw on this problem of confusion would be much appreciated. I'd rather not have to uninstall and reinstall Firefox if possible.

    If the only option is to uninstall Firefox and reinstall from your site, I'm also in trouble (I can not see the internet or download).
    In this case, would you be able to send the .exe file as an attachment to my e-mail address? In the affirmative, please let me know and I'll give you more details.

    Thanks in advance.

    One possible cause is security software (firewall) that blocks or limits Firefox or plugin-container process without informing you, possibly after the detection of changes (update) for the Firefox program.

    Delete all rules for Firefox in the list of permissions in the firewall and leave your firewall again ask permission to get full unlimited access to the internet for Firefox and the plugin-container and the update process.

    See:

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions of the origin of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

  • Need help with my Mail window. I can't export my message to the PST format. I keep getting the message error "an error occurred during initialization of MAPI".

    Hello

    Need help with my Mail window. I can't export my message to the PST format. I keep getting the message error "an error occurred during initialization of MAPI". Y at - it solution or another method?

    Hi ErikLee,

    Do you have MS Outlook installed on your computer?

    Windows mail import and export opportunities are limited to an Outlook .pst file or an Exchange Server mailbox. They are available only if MS Outlook is installed.
    If MS Outlook is not installed and you start an import or export action, the necessary support files are not present for Windows mail complete the operation. Then I suggest you to install Outlook temporarily and see if the problem is resolved.

    Follow the instructions below and check if the problem is resolved.

    1. reboot your computer, and then start Windows Mail.
    2. on the Tools menu, click Options.
    3. in the connection tab, click on edit to open the Internet Properties dialog box.
    4. in the tab programs, click on an application other than Windows mail e-mail in the e-mail list. Click on apply and then click OK.
    5. click OK again to close the Options dialog box.
    6. exit Windows mail and restart Windows mail.

    If this does not work, I suggest you upgrade to Windows Live Mail to import or export messages that may help you resolve the issue.

    To download Windows Live Mail, visit the following Microsoft Web site:
    http://get.live.com/wlmail/overview

    For more information about Windows Live Mail, see the Microsoft Web site at the following address:
    http://windowshelp.Microsoft.com/Windows/en-us/help/4b30d3d6-abe2-46d1-a5fd-4a1ba786a1381033.mspx

    Check whether the problem is resolved.

    Please post back and let us know if it helped to solve your problem.

    Kind regards
    KarthiK TP

  • Need help with slui message with the Validation Code: 50

    OT: need help with the message 'victim' slui...

    Diagnostic report (1.9.0027.0):
    -----------------------------------------
    Validation of Windows data-->

    Validation code: 50
    Code of Validation caching online: 0xc004c4a2
    Windows product key: *-* - YMK9F - 7Q3XK-X7D3P
    Windows product key hash: 9WDJkbD1PdUJ + GCdK63bG2yus5g =
    Windows product ID: 00371-702-8613485-06367
    Windows product ID type: 5
    Windows license type: retail
    The Windows OS version: 6.1.7601.2.00010100.1.0.048
    ID: {60986DD4-5ADA-464C-A590-469385BD5D3A} (1)
    Admin: Yes
    TestCab: 0x0
    LegitcheckControl ActiveX: N/a, hr = 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Product name: Windows 7 Professional
    Architecture: 0 x 00000009
    Build lab: 7601.win7sp1_gdr.150928 - 1507
    TTS error:
    Validation of diagnosis:
    Resolution state: n/a

    Given Vista WgaER-->
    ThreatID (s): n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002

    Windows XP Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    File: No.
    Version: N/a, hr = 0 x 80070002
    WgaTray.exe signed by: n/a, hr = 0 x 80070002
    WgaLogon.dll signed by: n/a, hr = 0 x 80070002

    OGA Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002
    OGAExec.exe signed by: n/a, hr = 0 x 80070002
    OGAAddin.dll signed by: n/a, hr = 0 x 80070002

    OGA data-->
    Office status: 109 n/a
    OGA Version: N/a, 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Office Diagnostics: 025D1FF3-364-80041010_025D1FF3-229-80041010_025D1FF3-230-1_025D1FF3-517-80040154_025D1FF3-237-80040154_025D1FF3-238-2_025D1FF3-244-80070002_025D1FF3-258-3

    Data browser-->
    Proxy settings: N/A
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Win32)
    Default browser: C:\Program Files (x 86) \Mozilla Firefox\firefox.exe
    Download signed ActiveX controls: fast
    Download unsigned ActiveX controls: disabled
    Run ActiveX controls and plug-ins: allowed
    Initialize and script ActiveX controls not marked as safe: disabled
    Allow the Internet Explorer Webbrowser control scripts: disabled
    Active scripting: allowed
    Recognized ActiveX controls safe for scripting: allowed

    Analysis of file data-->

    Other data-->
    Office details: {60986DD4-5ADA-464C-A590-469385BD5D3A}1.9.0027.06.1.7601.2.00010100.1.0.048x 64*-*-*-*-X7D3P5S-1-5-21-4040712825-3780279311-4191590923the system manufacturer,System Product NameAmerican Megatrends Inc. 00371-702-8613485-06367 0802 20110601000000.000000 + 000F3A53C07018400FE04090409Central Standard Time(GMT-06:00)03109

    Content Spsys.log: 0 x 80070002

    License data-->
    The software licensing service version: 6.1.7601.17514

    Name: Windows 7 Professional edition
    Description: operating system Windows - Windows (r) 7, retail channel
    Activation ID: c1e88de3-96c4-4563-ad7d-775f65b1e670
    ID of the application: 55c92734-d682-4d71-983e-d6ec3f16059f
    Extended PID: 00371-00212-702-861348-00-1033-7601.0000-1142014
    Installation ID: 022214046070387640229264400212325972472065330163335456
    Processor certificate URL: http://go.microsoft.com/fwlink/?LinkID=88338
    Machine certificate URL: http://go.microsoft.com/fwlink/?LinkID=88339
    Use license URL: http://go.microsoft.com/fwlink/?LinkID=88341
    Product key certificate URL: http://go.microsoft.com/fwlink/?LinkID=88340
    Partial product key: X7D3P
    License status: Notification
    Reason for the notification: 0xC004F200 (non-genuine).
    Remaining Windows rearm count: 4
    Trust time: 12/01/2016 11:28:57

    Windows Activation Technologies-->
    HrOffline: 0x00000000
    HrOnline: 0xC004C4A2
    Beyond: 0 x 0000000000000000
    Event timestamp: 1:11:2016 12:55
    ActiveX: Registered, Version: 7.1.7600.16395
    The admin service: recorded, Version: 7.1.7600.16395
    Output beyond bitmask:

    --> HWID data
    Current HWID of Hash: QAAAAAEAAwABAAEAAQADAAAABwABAAEAln3OI0bUDFRsO24dgCKo58SW2JyUY/1mMckmPrb67HxoDsAKMMl2Vg ==

    Activation 1.0 data OEM-->
    N/A

    Activation 2.0 data OEM-->
    BIOS valid for OA 2.0: Yes, but no SLIC table
    Windows marker version: N/A
    OEMID and OEMTableID consistent: n/a
    BIOS information:
    ACPI Table name OEMID value OEMTableID value
    APIC1425 APIC 060111
    FACP 060111 FACP1425
    HPET 060111 OEMHPET
    MCFG 060111 OEMMCFG
    LASRYVITRAGE OEMB1425 060111
    ASPT 060111 PerfTune
    OEMOSFR OSFR 060111
    SSDT DpgPmm CpuPm

    Hello

    Thanks to everyone who responded to my question.

    Turns out it would not activate the system properties page.

    He did, however, turn on the tool online browser without a

    hitch. Yes, problem solved.

    Jon

  • Need help with image fusion

    Hello

    Before I get to my question, I want to give you a glimpse of the project I'm working on and the aspects that I need help. For a school project, a customer, 94Fifty asked us to create an advertisement that depicts their basketball and could be used in advertising online and in magazines. The 94Fifty of basketball is the world's first "smart ball." It can count how many times you dribbling, the arc of your shot, release time it takes for you shoot, etc. To use the ball, you need an Apple product that can download the application 94Fifty on the App Store, so that this project is done as a collaboration with the company 94Fifty and Apple.

    For my ad, to really capture the idea of being the first smart ball, 94Fifty ball I wanted to mix an image of the texture of the ball of 94Fifty, with the shape and details of a brain, with the slogan being, "A ball that is as smart as you." I have my design buried on, but I'm not sure how to combine the image of the brain with ball should I use layers? How can I remove the pink color of the brain and replace it with the ball while keeping the shape of the brain and the lines creased the brain? Any help and technical that you can give would be greatly appreciated.

    Here are two pictures that I'm trying to mix.

    8376271918_cf0b1b5c4f_o.jpg94fifty ball.png

    I would also try and keep the logo of 94Fifty which is on the ball in the mixed picture.

    Please do not confuse this for to ask me someone to do it for me, it's the exact opposite of what I want, I just need help with what to do.

    Here is a fairly simple method:

    First of all, level of basketball for the type to be horizontal. (Also correct the values of white light - burn at the top left and bottom top right.)

    Mask on white background of the brain and turn the image to 0% of saturation.

    Put the brain on basketball on its own layer. Make the overlay blend mode.

    Using free transform, reshape the brain is greater (rounder), like the basketball, with a visible margin around the edge of the ball.

    -Now, you have a brain in a basketball, but the brain is a bit too subtle.

    Duplicate the layer of brain as many times as you need to get the good contrast (I've duped the layer of brain three times, for a total of four layers of brain).

    You will probably find that you need to use the levels adjustment layers or curves on each layer of the brain, for finer value adjustments. Make sure that each adjustment layer affects only the layer directly below.

Maybe you are looking for

  • KitKat for the HP Slate 10?

    I recently bought this tablet and was trying to find out about this upgraded to KitKat. I came across a comment here:http://www.Knowyourmobile.com/HP/HP-slate-10-HD/22277/HP-slate-10-HD-review-mobile-Internet-capable-...For you save that it threatens

  • Refnum problem

    I have a weird problem with references to control. The refnum is chaning to a real number to a path to control the refnum. I probed the refnum and it flashes between: (a) Class name: RingControl label: select LPFRefNum (in hexadecimal): 0xBB6000E0Own

  • What is unwanted inf

    What is unwanted inf

  • Be able to listen to music, but can not see the game

    Original title: no video I have a Dell XPS1 and loaded a game software.  I can hear the music, but do not see the game.  Any suggestions?  Thank you!  Karen

  • I have Windows XP running on a XPS 8700 and I need a driver for the video card

    Hello I have Windows XP running on a 8700 XPS. Is there a Windows XP-compatible driver that is compatible with the OEM GeForce GT 635? The video when you drag windows around the screen is very choppy. The site of Invidia was not very helpful. Thanks