Very Urgent help please. Support objects

Hello, I have developed a database application and I'm ready to deploy. I'm having a very important problem, though. I have installation scripts to run when my application is imported to create my tables and insert data. However, towing my four tables receive this error: ORA-00911: invalid character

Then my scripts to insert data or an error message because two of the tables could not be created or this one: ORA-04098 trigger 'admin BI_EMPLOYER' is invalid and does not have a revalidation.

To get CREATE TABLE scripts, I simply went to the object browser in the Application Express (4.0.2) and opened the SQL for each table and each copy and pasted. I looked at all this, and I don't see any errors. It is also strange that two of them worked, and two did not. I have to run this application tomorrow so I would really appreciate the help. Here is my SQL code

WORK OF SCRIPT:
CREATE TABLE 'EMPLOYEES '.
(SELECT "EMPLOYEE_NUMBER" NUMBER (5.0) NOT NULL,)
ACTIVATE THE "FIRST NAME" VARCHAR2 (40) NOT NULL,
ACTIVATE THE 'NAME' VARCHAR2 (40) NOT NULL,
ACTIVATE THE 'EMAIL_ADDRESS' VARCHAR2 (60) NOT NULL,
"PHONE_NUMBER" NUMBER (10.0).
NUMBER (10,0) "CELL_NUMBER."
ACTIVATE THE "ADRESSE_RUE" VARCHAR2 (80) NOT NULL,
ACTIVATE THE 'CITY' VARCHAR2 (50) NOT NULL,
ACTIVATE the 'STATE' VARCHAR2 (25) NOT NULL,
ACTIVATE THE "ZIP_CODE" NUMBER (5.0) NOT NULL,
ALLOW 'EMPLOYEES_PK' CONSTRAINT PRIMARY KEY ("EMPLOYEE_NUMBER")
) ;

CREATE OR REPLACE TRIGGER "BI_EMPLOYEES".
before inserting on the 'EMPLOYEES '.
for each line
Start
If: NEW. "" EMPLOYEE_NUMBER "is null then
Select 'EMPLOYEES_SEQ'.nextval in: NEW. "" EMPLOYEE_NUMBER "from dual;
end if;
end;

/
ALTER TRIGGER 'BI_EMPLOYEES' ENABLE;


2 WORKING SCRIPT:
CREATE TABLE 'EMPLOYER '.
("EMPLOYER_NUMBER" NUMBER (4,0) ACTIVATE NOT NULL,)
ACTIVATE THE 'COMPANY_NAME' VARCHAR2 (50) NOT NULL,
ACTIVATE THE "COMPANY_STREET_ADDRESS" VARCHAR2 (50) NOT NULL,
ACTIVATE THE "COMPANY_CITY" VARCHAR2 (50) NOT NULL,
ACTIVATE THE "COMPANY_STATE" VARCHAR2 (25) NOT NULL,
ACTIVATE THE "COMPANY_ZIP_CODE" NUMBER (5.0) NOT NULL,
ACTIVATE THE "COMPANY_PHONE_NUMBER" NUMBER (10,0) NOT NULL,
ACTIVATE THE "COMPANY_EMAIL_ADDRESS" VARCHAR2 (60) NOT NULL,
ACTIVATE THE "COMPANY_CONTACT_PERSON" VARCHAR2 (50) NOT NULL,
ENABLE 'EMPLOYER_PK' CONSTRAINT PRIMARY KEY ('EMPLOYER_NUMBER')
) ;

CREATE OR REPLACE TRIGGER "BI_EMPLOYER".
before inserting 'employer '.
for each line
Start
If: NEW. "' EMPLOYER_NUMBER ' is null then
Select 'EMPLOYER_SEQ'.nextval in: NEW. "' EMPLOYER_NUMBER ' from dual;
end if;
end;

/
ALTER TRIGGER 'BI_EMPLOYER' ACTIVE;

NONWORKING day SCRIPT (ORA-00911: invalid character):
CREATE TABLE 'EVALUATION_RESULTS '.
("EVALUATION_NUMBER" NUMBER (6,0) ACTIVATE NOT NULL,)
ACTIVATE THE "EMPLOYEE_NUMBER" NUMBER (5.0) NOT NULL,
ACTIVATE THE "EMPLOYER_NUMBER" NUMBER (4,0) NOT NULL,
"EVALUATION_DATE" DATE NOT NULL ACTIVATE.
"NEXT_EVALUATION_DATE" DATE NOT NULL ACTIVATE.
ACTIVATE THE "WORK_QUALITY_SCORE" NUMBER (1.0) NOT NULL,
ACTIVATE THE "WORK_QUALITY_COMMENTS" VARCHAR2 (256) NOT NULL,
ACTIVATE THE "WORK_HABITS_SCORE" NUMBER (1.0) NOT NULL,
ACTIVATE THE "WORK_HABITS_COMMENTS" VARCHAR2 (256) NOT NULL,
ACTIVATE THE "JOB_KNOWLEDGE_SCORE" NUMBER (1.0) NOT NULL,
ACTIVATE THE "JOB_KNOWLEDGE_COMMENTS" VARCHAR2 (256) NOT NULL,
ACTIVATE THE "BEHAVIOR_SCORE" NUMBER (1.0) NOT NULL,
ACTIVATE THE "BEHAVIOR_COMMENTS" VARCHAR2 (256) NOT NULL,
NUMBER (3.2) "AVERAGE_SCORE."
ACTIVATE THE "OVERALL_PROGRESS_SCORE" NUMBER (1.0) NOT NULL,
ACTIVATE THE "OVERALL_COMMENTS" VARCHAR2 (256) NOT NULL,
'EMPLOYMENT_RECOMMENDATION' VARCHAR2 (3),
ENABLE 'EVALUATION_RESULTS_PK' CONSTRAINT PRIMARY KEY ('EVALUATION_NUMBER')
) ; ALTER TABLE 'EVALUATION_RESULTS' ADD 'EVALUATION_RESULTS_FK' OF CONSTRAINT FOREIGN KEY ("EMPLOYEE_NUMBER")
ALLOW REFERENCES 'EMPLOYEES' ("EMPLOYEE_NUMBER"); ALTER TABLE 'EVALUATION_RESULTS' ADD 'EVALUATION_RESULTS_FK2' ('EMPLOYER_NUMBER') FOREIGN KEY CONSTRAINT
ALLOW REFERENCES "EMPLOYER" ("EMPLOYER_NUMBER");

CREATE OR REPLACE TRIGGER "BI_EVALUATION_RESULTS".
Before Insert on 'EVALUATION_RESULTS '.
for each line
Start
If: NEW. "' EVALUATION_NUMBER ' is null then
Select 'EVALUATION_RESULTS_SEQ'.nextval in: NEW. "' EVALUATION_NUMBER ' from dual;
end if;
end;

/
ALTER TRIGGER 'BI_EVALUATION_RESULTS' ENABLE;


* Non-WORKING SCRIPT 2 (ORA-00911: invalid character): *.
CREATE TABLE 'FIELD_PLACEMENTS '.
("FIELD_PLACEMENT_NUMBER" NUMBER (5.0) ACTIVATE NOT NULL,)
ACTIVATE THE "EMPLOYEE_NUMBER" NUMBER (5.0) NOT NULL,
ACTIVATE THE "EMPLOYER_NUMBER" NUMBER (4,0) NOT NULL,
ENABLE 'FIELD_PLACEMENTS_PK' CONSTRAINT PRIMARY KEY ('FIELD_PLACEMENT_NUMBER')
) ; ALTER TABLE 'FIELD_PLACEMENTS' ADD 'FIELD_PLACEMENTS_FK' OF CONSTRAINT FOREIGN KEY ("EMPLOYEE_NUMBER")
ALLOW REFERENCES 'EMPLOYEES' ("EMPLOYEE_NUMBER"); ALTER TABLE 'FIELD_PLACEMENTS' ADD 'FIELD_PLACEMENTS_FK2' ('EMPLOYER_NUMBER') FOREIGN KEY CONSTRAINT
ALLOW REFERENCES "EMPLOYER" ("EMPLOYER_NUMBER");

CREATE OR REPLACE TRIGGER "BI_FIELD_PLACEMENTS".
Before Insert on 'FIELD_PLACEMENTS '.
for each line
Start
If: NEW. "' FIELD_PLACEMENT_NUMBER ' is null then
Select 'FIELD_PLACEMENTS_SEQ'.nextval in: NEW. "' FIELD_PLACEMENT_NUMBER ' from dual;
end if;
end;

/
ALTER TRIGGER 'BI_FIELD_PLACEMENTS' ENABLE;

NONWORKING day INSERT SCRIPTS DATA (for work tables):
INSERT EMPLOYEES
VALUES (10000, 'John', 'Smith', '[email protected]', 3038675309, 7203087689, ' 1500 FBLA Way', 'Denver', 'Colorado', 80052)

AND

INSERT IN THE EMPLOYER
VALUES (1000, 'AnyCo' ', ' 120 Apex Street ', 'Denver', 'Colorado', 80052, 3034569876, '[email protected]', "Lauara Johnson")

NONWORKING INSERT SCRIPTS DATA (for the periods nonworking time tables):
INSERT INTO FIELD_PLACEMENTS
VALUES (10000, 10000, 1000)

AND
INSERT INTO EVALUATION_RESULTS
VALUES (100000, 10000, 1000, 4 January 2013 ', 18 January 2013', 3, 'satisfies the expectations", 3,"expectations", 3,"satisfies the expectations', 3, 'expectations', 3, 3, 'an average employee', 'yes')

Place it on top of your script

CREATE SEQUENCE EMPLOYEES_SEQ;
CREATE SEQUENCE EMPLOYER_SEQ;
CREATE SEQUENCE EVALUATION_NUMBER;
CREATE SEQUENCE FIELD_PLACEMENTS_SEQ;

You try to access a new value of a sequence without declaring the object ;)

Good luck

Concerning

Tags: Database

Similar Questions

  • URGENT HELP PLEASE! Windows did an automatic update finished & gave me the Option "restart now or later. I chose Now.A screen from Windows is going down, a startup problem occurred immediately after the installation of updates, this has happened about 9 h

    Windows has finished just do the automatic updates on my Sony Vaio... He said that he should be released on... When it restarted it goes to the ' start windows normally, safe mode, safe mode w/network, safe w/command prompt mode and the last known good configuration "screen... I tried "start windows normally", and last known good configuration, and no matter what I did, it looks like its about to begin, with the 'windows' logo & he says it's the boot process, but then instantly a screen flashes, but too fast for me to read what he says, so I immediately finished fashion splash screen choose again. Whenever I try to get my PC to boot it goes through this again. Exactly... I tried restarting, shutdown PC up to 30 min. waiting & more & again it does the same thing & will NOT start! HELP PLEASE!
    I do not have my current work & News & saved downloads & need help & I timed commitments to people... ASAP PLEASE!
    Thanking you in advance...

    Windows XP logon screen does not appear and the computer continuously restarts
    http://support.Microsoft.com/kb/310396

    Resources to solve startup problems in Windows XP
    http://support.Microsoft.com/kb/308041 TaurArian [MVP] 2005-2010 - Update Services

  • Loading XML into the intranet? urgent help please...

    Dear friends, I need urgent help: I have a screen CAYIN (which allows me to display the evetns, etc.) and gives me the possibility of loading / displaying a FLASH (SWF) file, well, I need this SWF to load data XML ("texto.xml") but seems when the CAYIN programme that is running flash, does not the SWF find the XML code in the same folder...

    Then I tried many ways to load the XML file without success up to now. Some tests are:

    obj_xml. Load("\\192.168.0.100\media\texto.xml")

    obj_xml. Load("\media\texto.xml")

    obj_xml. Load ("texto.xml")

    obj_xml. Load("..) ("/ media/texto.xml")

    obj_xml. Load("\\media\texto.xml")

    obj_xml. Load("file:\\192.168.0.100\media\texto.xml")

    obj_xml. Load("..) \\192.168.0.100\media\texto. XML")

    I guess I write something wrong or forget something. Could someone help me please? because these files are in a '192.168.0.100' internal server (intranet).

    Emergency help please, thanks in advance,

    If the swf file is in a directory with subdirectory media that contains texto.xml, use:

    obj_xml. Load("Media/texto.xml")

  • URGENT - help please, Muse of support helps do not!

    Dear all (especially personal Adobe)

    I'm really frustrated by a series of questions with Adobe Muse CC 2015.

    I contacted Adobe Help Center, in India, I think, but they said they could not help to be honest close whenever I got in touch with them, my questions remained outstanding.

    I suggest Adobe staff to get trained to give full support Muse.

    Especially, the Center help just say don't know us and say to post on a forum like this but there's no way to manage a business and in fact virtually anything I posted here has already been answered either.

    I'm finally at the bottom of an issue which is why the pages on a site I'm working on not allowing not green https and a padlock to appear (yellow instead of the triangle). The answer I found by a process of elimination is slideshows generated in Muse, nothing else these pages have in common. Please could Adobe developers lean on this.


    In addition, now that I have the site redirecting to https my tumblr blog that is embedded in an iframe is gone total . Anyone knows how I can get it to display in the browser again?

    Then and more important that the above question is that my current Muse Web site is considered to be the version tablet seen on a desktop in Chrome with Win 8.1. Also, Bing Webmaster Tools and many website scanners also see the site in this way when you place it in this link: https://advanceconsult.co.uk .

    Please can someone tell me how to solve this problem.

    Thank you very much

    Kind regards

    Mike

    The html embed code does not use the https protocol as a blog of result is not displayed. You are using a secure url as default domain for the site so only http will not be rendered.

    If you open the site with http, you can see the difference.

    Also in Chrome click on the lock icon with chrome yellow warning triangle, you will see that the description is what chrome is implemented.

    Thank you

    Sanjit

  • Camera problem-> please very urgent help hit with output

    Hello

    I use default camera in my application once I have capture any image, it is to be saved in the section Gallery consumes memory. Please help how to solve this problem is possible to register in any other directory too, I checked using camera roll path but his does not work... Please help I need to release tomorrow

    import bb.cascades 1.0
    import bb.system 1.0
    import bb.multimedia 1.0
    import my.library 1.0
    import bb.cascades.multimedia 1.0

    {Page}

    ID: cameraScreen
    string property using:
    Boolean photoBeingTaken property

    actions:]
    {ActionItem}
    Title: "capture."
    imageSource: "asset:///images/items/camera-icon.png."

    ActionBar.placement: ActionBarPlacement.OnBar
    onTriggered: {}
    _APP.setBHResult (false);
    photoBeingTaken = _app.getCaptured ();
    If (photoBeingTaken == false) {}
    Camera1.capturePhoto ();
    _APP.setCaptured (true);
                     
    }
    }

    },

    {ActionItem}
    Title: "bookmarks".
    imageSource: "asset:///images/items/bookmark.png."
    ActionBar.placement: ActionBarPlacement.InOverflow

    onTriggered: {}
    _APP.setBHString ("Bookmarks");
    _APP. CallBookmarkScreen (7, 0);
    _APP.setBHResult (false);
    Bookmark var = _bookmarks.createObject ();
    NAV.push (Bookmark)
    }
    attachedObjects:]
    {ComponentDefinition}
    ID: _bookmarks
    Source: "Loading.qml".
    }
    ]
    },
    {ActionItem}
    Title: 'history '.

    imageSource: "asset:///images/items/history.png."
    ActionBar.placement: ActionBarPlacement.InOverflow
    onTriggered: {}
    _APP.setBHString ("History");
    _APP. CallBookmarkScreen (8, 0);
    _APP.setBHResult (false);
    Bookmark var = _history.createObject ();
    NAV.push (Bookmark)
    }
    attachedObjects:]
    {ComponentDefinition}
    ID: _history
    Source: "Loading.qml".
    }
    ]
    },
    {ActionItem}
    Title: "settings".
    imageSource: "asset:///images/items/settings.png."
    ActionBar.placement: ActionBarPlacement.InOverflow
    onTriggered: {}
                    
    var setingscr = _settings.createObject ();
    NAV.push (setingscr)

    }

    attachedObjects:]
    {ComponentDefinition}
    ID: _settings
    Source: "Settings.qml".
    }
    ]
    },
    {ActionItem}
    Title: "Exit".
    imageSource: "asset:///images/items/Exit-button.png."
    ActionBar.placement: ActionBarPlacement.InOverflow
    onTriggered: {}
    _APP.exitpopUP ("\t\tAre are you sure you want to exit?");
    }
    }

    ]

    {Of container
    ID: camerascreen
           
    layout: {DockLayout}

    }
    {Of container
    ID: camerascreen1
    visible: true

    Camera {}
    ID: camera1
    visible: true;
    supCameras variant of property
    attachedObjects:]
    SystemSound {}
    ID: shutterSound
    sound: SystemSound.CameraShutterEvent
    },
    {CameraSettings}
    ID: settings
    }
    ]
    onCreationCompleted: {}
    supCameras = camera1.supportedCameras;
    CameraFocusMode = 1;
    Console.log ("aftercomeback1");
    _APP.setCaptured (false);
    If (supCameras.length == 0 | supCameras [0] == CameraUnit.None) {}
    Console.log ("no unit of the camera is accessible");
    } ElseIf (supCameras [0] == CameraUnit.Rear: supCameras [1] == CameraUnit.Rear) {}
    Console.log ("the rear camera is available.");
    Camera1.open (CameraUnit.Rear);
    } ElseIf (supCameras [0] == CameraUnit.Front: supCameras [1] == CameraUnit.Front) {}
    Console.log ("unity front camera is available.");
    Camera1.open (CameraUnit.front);
    } else {}

    }
    }

    Notecard: {}
    Camera1.getSettings (Settings);
    settings.focusMode = CameraFocusMode.Auto;
    settings.shootingMode = CameraShootingMode.Stabilization
    Camera1.applySettings (Settings);
    }

    onCameraOpened: {}
    Console.log ("aftercomeback1 in oncameraopned");
    Camera1.getSettings (Settings);
    settings.focusMode = CameraFocusMode.Auto;
    settings.shootingMode = CameraShootingMode.Stabilization
    Camera1.applySettings (Settings);
    Camera1.startViewfinder ();
    }
    onCameraClosed: {}
    Console.log ("viewfinder has stopped");
    Camera1.stopViewfinder ();
    }

    onCameraResourceReleased: {}
    Console.log ("viewfinder stopped onCameraResourceReleased");
    Camera1.stopViewfinder ();
    Camera1.close)
    Console.log ("reduce to the minimum is" + Application.minimize ());
    Application.autoExit)
    Camera1.stopViewfinder ();
    Camera1.close)
    }
    / * onCameraResourceAvailable: {}
    Console.log ("viewfinder stopped onCameraResourceAvailable");
    Camera1.open)
    Camera1.startViewfinder ();
    }*/
    onViewfinderStarted: {}
    Console.log ("aftercomeback1 in oncameraopnedonViewfinderStarted");
    Console.log ("oncamera openedd onViewfinderStarted >");
    myIndicator.stop)
    photoBeingTaken = false;
    }

    / * onCameraResourceAvailable: {}
    Camera1.startViewfinder)
    }*/
    onShutterFired: {}
    shutterSound.play ();
    If {(photoBeingTaken)
    Processing.Visible = true;
    }

    }
    / * keyListeners:]
    KeyListener {}
    onKeyEvent: {}
    Perform an action when the signal is emitted
    Camera1.startViewfinder)
    }

    onKeyPressed: {}
    Perform an action when the signal is emitted
    Camera1.startViewfinder)
    }

    onKeyReleased: {}
    Perform an action when the signal is emitted
    Camera1.startViewfinder)
    }
    }
    ]*/
    onViewfinderStartFailed: {}
    Console.log ("oncamera openedd onViewfinderStartFailed >");
    }
    onPhotoSaved: {}
    _APP.setImgFileName (fileName);
    var process = marks.createObject ();
    NAV.push (Processing);

    }
                    
    }
    }
    {Of container
    layout: {DockLayout}
                    
    }
    horizontalAlignment: P
    verticalAlignment: VerticalAlignment.Center
    {ActivityIndicator}
    ID: myIndicator
    visible: false
    preferredWidth: 500
    preferredHeight: 500
    }
    }
    {Of container

    ID: treatment
    verticalAlignment: VerticalAlignment.Center
    horizontalAlignment: P
    visible: false
    preferredHeight: 30
    preferredWidth: 500

    background: Color.create ("#000000")
    TextArea {}
    leftPadding: 170
    verticalAlignment: VerticalAlignment.Center
    horizontalAlignment: HorizontalAlignment.Fill
    editable: false
    text: qsTr ("Loading...")
    textStyle {}
    fontWeight: FontWeight.Bold
    fontStyle: FontStyle.Normal
    color: Color.create ("#ffffff")
    }

    }

    }
    }

    attachedObjects:]
    {ComponentDefinition}
    ID: brands
    Source: "Processing.qml".
    }
    ]
        
       
       
    onCreationCompleted: {}
    Console.log ("onCreationCompleted is called")
    Application.Asleep.Connect (onAsleep);
    Application.Awake.Connect (onAwake);
    Console.log ("onCreationCompleted's over")
    }
    function onAsleep() {}
    Console.log ("onAsleep is called in the function")
    If (camera1.open () == true) {}
    Console.log ("open camera true onAsleep is called in function")
    Camera1.close ();
    Console.log ("closed camera onAsleep is called in function")
    } else {}
    Console.log ("open camera fake onAsleep is called in function")
    Camera1.stopViewfinder ();
    Camera1.close ();
    applicationAsleep();
    }
    }
    function onAwake() {}
    Console.log ("onAwake is called in the function")
    myIndicator.start)
    If (camera1.close () == false) {}
    Console.log ("closed camera fake onAwake is called in function")
    Camera1.open ();
    Console.log ("open camera onAwake is called in function")
    } else {}
    Console.log ("closed camera true onAwake is called in function")
    applicationAwake();
                
    Console.log ("open camera is called in the function")
    Camera1.open ();
    Console.log ("after open camera is called in the function")
    }
    }}

    So, thank you it is is stored in the SD card now... Thanks a lot bb10 community

    is it possible that I can remove the image released from the sd card before you capture another image... access to remove.

    Concerning

    Rashmi

  • my sound stoped it was working then, how can I get my sound back, I miss my music, thank you very much help please

    help me get my sound back to music simply collapsed and I get a pop up saying my sound card has not been installed, but there one worked well real but collapsed I get no player Windows soundfrom please help thank you very much

    Hello

    1. have you done any change in software on the computer lately?
    2. What is the brand and the model number of the sound card?

    Method 1.
    Follow the procedure step by step in the article below and check.
    No sound in Windows
    http://Windows.Microsoft.com/en-us/Windows/help/no-sound-in-Windows

    Method 2.
    If the problem persists, follow the steps listed in the article below and check.
    How to troubleshoot sound problems in Windows XP
    http://support.Microsoft.com/kb/307918

    Note: You can visit the website of the manufacturer of the computer to get the latest drivers for Windows XP and install it.

    I hope this helps.

  • Urgent help please! AJAX does not have the BB8900

    Hello world

    in a big trouble... I have developed a very simple web application using Java, Spring, and AJAX. Connection on the success page, a form appears when the user must fill out and save later.

    As a number of selection lists (list drop-down combobox) should be used. Some of them are disabled for the first time, by certain actions (for example a field filler text or by selecting another list), the lists must be activated and filled using AJAX to a servlet.

    This works with PC, iPhone, with HTC (IE, Firefox, Opera...). But in BB9000 emulator and a device BB8900 I faced with the following problems (although I have activated JavaScript):

    (1) text fields are enabled to disabled correctly, but drop-down lists are not disabled.

    (2) AJAX does not, for example, select a city leads AJAX to the streets of this city.

    (3) DOM does not work... for example a button, no news... elements are added to a table in the form.

    Please help since my deadline is coming and I'm short on time!

    Kind regards

    Hello

    Strangely, I could make it work 'more or less' in the Simulator and the BB 8900 device. Worked on the version used:

    strlist.options[strlist.options.length] = new Option("Text 1", "Value 1");
    

    ??? I had to disable the javascript first, clear the cache, close the browser, reopen, enable javascript, and re-run the web application. Since there is no Javascript errors when you fill out the lists, DOM works very well.

    I couldn't make the dropdowns 'disabled', however, the list object is set to true 'deactivated' property until the debugger showed? Somehow, I can live with that for a while :-)

    Thank you all for...

  • Need help with performance android... very slow, help please

    Hello guys

    We are developing an application for android and ios

    I use Adobe Flash CC 2015 - Adobe Air 21

    It of kind of big and complicated coding and a lot of Images, loaders, etc...

    in ios, it is almost ok, but in his crappy slow android!

    I mean, it's it takes like 15 sec to even run the application.

    I put the rendering to GPU mode - I use greensock interpolations.

    I have a lot of vectors, bitmaps, so

    I thought about moving to the framework of starling, do you think it helps?

    If so, what codes should settle there?

    I mean that Starling would I use each unique code gives me for parts?

    Touch listeners? or Chargers? or?

    I need to know these because I don't have a lot of time, and it's a loooot so change

    What is the most emotional in the performance and memory management?

    Please let me know if you have a tip

    It is really important

    Thank you very much

    Sam

    There is no single simple answer to optimize performance.

    However, you can usually improve performance by learning how to use cacheAsBitmap and cacheAsBitmapMatrix and they often give the biggest improvement with the least effort.

    Here is an excerpt from a chapter in development of Flash games: in a Social, Mobile and 3D world

    Chapter 7

    Optimize the performance of the game

    Easier to the more difficult to implement

    1. do not use the filters.

    2. always use the reverse for loops and avoid loops and avoid while loops.

    3. explicitly stop timers for their loan for gc (garbage collection).

    4. use the weak event listeners and remove headphones.

    5. strictly type variable when possible.

    6. explicitly disable interactivity mouse when interactivity smile not necessary.

    7. replace dispatchEvents with callback functions whenever possible.

    8 it would be gc stop sounds for the sounds and SoundChannels.

    9. use the DisplayObject most basic need.

    10. always use cacheAsBitmap and cacheAsBitmapMatrix with air applications (i.e., mobile).

    11. reuse of objects when possible.

    12 Event.ENTER_FRAME loops: use different listeners and different listener functions applied to DisplayObjects as little as possible.

    13. the pool instead of creating objects and gc objects ' ing.

    14. use partial blitting.

    15. use step blitting.

    16 use Stage3D.

    Biggest advantage less

    1. Use the blitting Stadium (if there is enough memory system).
    2. Use Stage3D.
    3. Use partial blitting.
    4. Use cacheAsBitmap and cacheAsBitmapMatrix with mobile devices.
    5. Disable explicitly interactivity mouse when interactivity smile not necessary.
    6. Do not use filters.
    7. Use the most basic necessary DisplayObject.
    8. Reuse objects whenever possible.
    9. Event.ENTER_FRAME loops: use different listeners and different listener functions applied to DisplayObjects as little as possible.
    10. Use reverse for loops and avoid the do loops and while loops.
    11. The pool instead of creating objects and gc'ing.
    12. Strictly, type variable when possible.
    13. Use weak event listeners and remove headphones.
    14. Replace dispatchEvents by the callback functions whenever possible.
    15. Explicitly stop timers on loan for the gc.

    16 stop sounds for the sounds and SoundChannels be gc would be.

  • InDesign CC - "Adobe InDesign is not authorized and will leave now" - URGENT HELP Please!

    So, random, my InDesign CC has decided to refuse to run because it is not "allowed", properly.

    Screen Shot 2013-11-10 at 00.48.10.png

    I tried to remove all apps from my Mac, including the creative desktop and even cloud using the Adobe Creative Cloud Tool Cleaner to completely erase the traces of it.

    After hours of waiting for re - install I get the same annoying message again!

    Photoshop behaves itself, Adobe Edge animate behaves but now Illustrator just refuses to stay open and automatically stops by itself.

    Can someone help me, please?

    I am running an iMac Intel 2009 and current circulating the new Mavericks OS (OSX 10.9).

    Thank you very much

    Hi michael_pwd,

    Are other apps CC outside Indesign CC licensed. Do you have any previous version of Adobe installed on your machine, if not then please navigate to/Library/Application Support / Adobe and rename SLCache and SLstore in SLCache.old/SLstore.old. Start Indesign and try to activate.

    Kind regards

    Romit Sinha

  • BlackBerry Smartphones Urgent help please, I think that I broke completely.

    So I plugged my computer and has been in the BlackBerry Desktop Manager thing and I was updating the software of the phone, but in 9 of the 11. Then I looked at the list of things that are done on the phone and he said he would delete BlackBerry messenger. So I unplugged the phone and now it won't turn.

    I get out the battery and put that it back in and all that happens is the screen and the keys light up in white and that's it, nothing else.

    Any help would be great. Thank you

    UPDATE: I plug the computer and started the update, removal of BBM is not on the list of things to delete this time even if it wasn't at the beginning of the last update.

    So, if he doesdelete BBM can someone help me please as to how that I get it back?

    In other words, if it works once again this update finished.

    Thank you

    Yes, you should have allowed him to complete, and then you can go back and add BBMessenger to the device.

    So, now, follow the instructions below.

    See the link below to download it and follow these simple instructions.

    First find your operator and the system operating file that you want to use.
    http://NA.BlackBerry.com/eng/support/downloads/download_sites.jsp

    1. download the OS files to the PC then install on the PC by running (double click) the downloaded file.
    2. go in c:\program files Research in motion\apploader and delete the file named "vendor.xml."
    3. plug in the BB and double-click on "Loader.exe." It is located in the same place as the above vendor.xml file.

    Once this is complete and your BlackBerry is back up and running, you may need to do a restore of the personal data that you have a previous backup.

  • Urgent help please - reloading Freehand

    I have been using Freehand for yars 10.4.9 (maybe sad, bug, it works and I like it) but all of a sudden it will not work properly. I create a document and send it to print. It downloads, then everything closes. The job will still print, but I have to restart the program until I can use it again. In addition, the document does not appear under "open recent".

    So I thought - reload the software. Problem is that all my software is in the form of an upgrade (I've updated since the V1). So, can I just reload the updated (Freehand MX) and there it is, or what I need to do something else.  I don't really remember what I did last time (2005).
    I don't want to undo entirely what I have at the moment, even if it does not work, until I finished the work that I'm trying. Please help will be very appreciated.

    Your upgrade disc allows to install again but have your registration number to enter when it asks.

  • Opening of unreadable code files need urgent help please

    When I got my new laptop Toshiba as a gift in 2007 Microsoft Office Word and Excel etc were already set up so I don't have disks or keycodes. . An old person, it is also possible that my son who gifted it me may have installed above records to settle, but he has no recollection of this, except that he gave me the Toshiba Recovery Disc I have.

    My laptop had to go back to Toshiba for a long time for a manufacturing - related issue. They also informed me that some of my files were corrupt. All the features have remained on my computer as before repair, so nothing has been lost or had to be re-load.

    I found that since then all my docs are open in code form and are unreadable. Microsoft Word seems to have disappeared and I had to install an old Microsoft Works 2001 drive in order to work on new material. Microsoft Onenote was the disk, but not the word, if the docs will not open with Onenote, so I'm stuck.

    Is it possible for me to know if Toshiba can contain my original Microsoft Office key code and I was able to download again. ? I can't afford to buy a completely new desktop system and I have no way of knowing which Microsoft Office (2007)? creating documents. I have to know if there is any way I can read these documents and to establish which of the two may be corrupted so that I can remove them. A system restore would make readable documents? I'm not very technical minded with regard to computers that you can observe my text and will appreciate any help you can give I can't afford to pay someone who keeps my computer for a day or more and then charge me an exorbitant amount.
    Thank you very much in advance if you can help me in any way with easy to follow instructions or advice.

    What is the model number of your laptop?

    A trial version of MS Office may have been pre-installed. If you have activated Office (purchased a license), then you could try to call Microsoft to reactivate.

    If you reinstall Windows using your Toshiba recovery disc, the installation of Office must be installed. (Note that the restore disk will delete your data, back up your files first).

    Alternatively, you can use OpenOffice to read your documents. OpenOffice (free) works with Microsoft Office files.

  • The application could not start error 0xc000007b URGENT HELP PLEASE

    Hi a few weeks a go I started getting an error (The was unable to start correctly 0xc000007b Application error click OK to close the Application)

    and I was looking for a solution since but nothing works and I don't want to reinstall my windows yet I only met the error when you try to start some games I've tried
    The difficulty of Cmd/sfc and I tried to reinstall Microsoft Visual C++ Redistributable Packages 2010 and sp1 and I can't make them work
    Windows 7 Ultimate X 64
    Could you please help me

    Thank you for your help, I tried to completely uninstall Microsoft redistributable and then I just reinstalled directly from microsoft, I think it was a corrupted update which screwed things anyway thanks for your help

  • Urgent - help please with fast query!

    Hello, could someone tell me please if you use digital certificates and pre-shared keys as on a PIX sent to sites through the VPN?

    We use a v7 PIX 525 our end and need to connect to a site via certificates, but we already use pré-partagées for our vpn authentication keys.

    Thank you very much

    Hello

    It should work perfectly.

    Thank you

    Gagan

  • BlackBerry Smartphones has problem in my 8520 please I need urgent help please :(

    Hey guys, I am from Lebanon, I bought a blackberry, I discovered that my platform is 5.2.0.64, the problem is I want the 5.0 version and 5.2 not because I'm having some problems, for example, if I want to block my phone with a password, I have to wait 1 min for a lock, if I want to open it I can't support on * + A , I should press the button mute to unlock... more if I want to check an Arabic word Web site in the site is written in the wrong way, please how do I return my phone back to normal!  Please guys waiting for your answer

    Remove information staff to comply with the Community guidelines and the terms and Conditions of use.

    In the vernacular, you are therefore on BB OS 5.0.0.592 version. So it is confusing what you asking to do.

    But... by using this procedure, you can install any version of the OS on your BB. You must download and install the version you want, on your PC, but you can use any version that applies to your BB model number:

    If you use a bundle of BONES, which is not the original carrier of your BB, then insert, between steps 1 and 2, the deletion, on your PC, a file named PROVIDER. XML.

    Good luck!

Maybe you are looking for

  • Messages marked as 'not spam' go to the spam folder

    I get messages in my spam folder that are not spam. I continue to mark them as non-spam, but the following messages keep going to spam. How can I stop this.

  • Encoding problems in Web sites

    I have problems in different websites. Some texts are as if the encoding was messed up. In the page itself, either in the form of pages such as this. This is not the case in the various browsers.I downloaded a few screenshots of this problem: http://

  • Draw names like value axis

    Hello experts! I need represent the value of the y axis (number per defalt) as a name of channel (parcels). For example on the attached photo. The plots quantaty will change from time to time as a names of conspiracy. So I need control programmatical

  • Last updated XP prevent boot upward

    My laptop is automatically updated to Windows XP when I switch off the installation. The last update takes about 30 minutes to download 2 days ago. My notebook of cannot be started now. The first time I turned on my laptop after the XP update, he per

  • Compaq Elite 8000 PC Convertible (CMT) E8500

    I updated my BIOS for v1.13 but I can't ME Firmware update called sp54355 updated 5.2.1.1001 to version 5.2.5.1039 update; It acts as if it is not for my computer model type; However, it does not say whether a 8000 Elite (CMT) Also, I've updated my t