Count mismatch in source

Hi,
Recently i have perform one import in newly create machine.
after import, when i counted a records from different table , it is mismatching. in one table1 2030+ records are missing in compare to target database and in another table 1,00,000 records are more compare to source database.
For less records i can see the import log file and found out which row is not imported bcoz of ORA-12899.
But i am not able to understand why the records are more in another table ?
i am not creating the table structure(tables) manually before import the records in new database.
i m using IMPORT utility.
Can any buddy suggest and resolve my problem.
Description of machines are as follows:
Source database:
OS: Windows XP
Database version:
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
PL/SQL Release 10.2.0.4.0 - Production
CORE 10.2.0.4.0 Production
TNS for 64-bit Windows: Version 10.2.0.4.0 - Production
NLSRTL Version 10.2.0.4.0 - Production
Target database:
OS: Windows 2008 Server 64 bit on VMWare
Database version:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
PL/SQL Release 11.2.0.1.0 - Production
CORE 11.2.0.1.0 Production
TNS for 32-bit Windows: Version 11.2.0.1.0 - Production
NLSRTL Version 11.2.0.1.0 - Production
Please help to resolve this issue.
Thanks,

No NLS_CHARCTERSET are different in source and target database ... it is same.
But i m export the NLS_CHARACTER manually before running the Export command.
so that i can match the target database.(Bcoz in target database i don't have control)
Source database NLS setttings:
NLS_LANGUAGE AMERICAN
NLS_NCHAR_CHARACTERSET AL16UTF16
NLS_TERRITORY AMERICA
NLS_CURRENCY $
NLS_ISO_CURRENCY AMERICA
NLS_NUMERIC_CHARACTERS .,
NLS_CHARACTERSET               WE8MSWIN1252
NLS_CALENDAR GREGORIAN
NLS_DATE_FORMAT DD-MON-RR
NLS_DATE_LANGUAGE AMERICAN
NLS_SORT BINARY
NLS_TIME_FORMAT HH.MI.SSXFF AM
NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZR
NLS_TIMESTAMP_TZ_FORMAT DD-MON-RR HH.MI.SSXFF AM TZR
NLS_DUAL_CURRENCY $
NLS_COMP BINARY
NLS_LENGTH_SEMANTICS BYTE
NLS_NCHAR_CONV_EXCP FALSE
NLS_RDBMS_VERSION 10.2.0.4.0
Target database NLS settings:
NLS_LANGUAGE AMERICAN
NLS_TERRITORY AMERICA
NLS_CURRENCY $
NLS_ISO_CURRENCY AMERICA
NLS_NUMERIC_CHARACTERS .,
NLS_CHARACTERSET               AL32UTF8
NLS_CALENDAR GREGORIAN
NLS_DATE_FORMAT DD-MON-RR
NLS_DATE_LANGUAGE AMERICAN
NLS_SORT BINARY
NLS_TIME_FORMAT HH.MI.SSXFF AM
NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZR
NLS_TIMESTAMP_TZ_FORMAT DD-MON-RR HH.MI.SSXFF AM TZR
NLS_DUAL_CURRENCY $
NLS_COMP BINARY
NLS_LENGTH_SEMANTICS BYTE
NLS_NCHAR_CONV_EXCP FALSE
NLS_NCHAR_CHARACTERSET AL16UTF16
NLS_RDBMS_VERSION 11.2.0.1.0

Similar Messages

  • By using decode function, count mismatch between source and target

    Source query:
    select distinct
    frm_track_id,
    --ATTRIBUTE_NAME,
    SUBSTR(ATTRIBUTE_NAME,INSTR(ATTRIBUTE_NAME,'_',1,1)+1,INSTR(ATTRIBUTE_NAME,'_',1,2) - (INSTR(ATTRIBUTE_NAME,'_',1,1)+1)) LOCUS,
    frm_id,
    frm_maj_version,
    --'null' as ETL_LOAD_STATUS,
    --'null' as ETL_LOAD_DTE,
    --'null'as ETL_LOAD_STATUS2,
    DECODE(attribute_name,( select attribute_name from dual where attribute_name like '%_allele1'), OUTPUT_ANSWER_VAL, null) ORIGINAL_LOC_ALLELE1
    --DECODE(attribute_name, (select attribute_name from dual where attribute_name like '%_allele2'), OUTPUT_ANSWER_VAL, null) ORIGINAL_LOC_ALLELE2,
    --DECODE(attribute_name, (select attribute_name from dual where attribute_name like '%_ser1'), OUTPUT_ANSWER_VAL, null) ORIGINAL_LOC_SER1,
    --DECODE(attribute_name, (select attribute_name from dual where attribute_name like '%_ser2'), OUTPUT_ANSWER_VAL, null) ORIGINAL_LOC_SER
    from iidb_stg.stage_fn_base_translate
    where attribute_name in ( 
    'loc_a_allele1','loc_a_allele2','loc_a_ser1','loc_a_ser2', 
    'loc_b_allele1','loc_b_allele2','loc_b_ser1','loc_b_ser2', 
    'loc_c_allele1','loc_c_allele2','loc_c_ser1','loc_c_ser2', 
    'loc_dp_ser1','loc_dp_ser2', 
    'loc_dpa1_allele1','loc_dpa1_allele2', 
    'loc_dpb1_allele1','loc_dpb1_allele2', 
    'loc_dq_ser1','loc_dq_ser2', 
    'loc_dqa1_allele1','loc_dqa1_allele2', 
    'loc_dqb1_allele1','loc_dqb1_allele2', 
    'loc_dr_ser1','loc_dr_ser2', 
    'loc_drb1_allele1','loc_drb1_allele2', 
    'loc_drb3_allele1','loc_drb3_allele2', 
    'loc_drb4_allele1','loc_drb4_allele2', 
    'loc_drb5_allele1','loc_drb5_allele2' 
    and frm_track_id=308678
    order by 1,2
    result set:
    frm_track_id
    LOCUS
    frm_id
    frm_maj_version
    ORIGINAL_LOC_ALLELE1
    308678
    a
    2005
    1
    205
    308678
    b
    2005
    1
    3502
    308678
    c
    2005
    1
    401
    308678
    dqb1
    2005
    1
    301
    308678
    dqb1
    2005
    1
    null
    308678
    drb1
    2005
    1
    403
    308678
    drb1
    2005
    1
    null
    Target Query:
    select distinct
    FRM_TRACK_ID,
    LOCUS,
    FRM_ID,
    FRM_MAJ_VERSION,
    --ETL_LOAD_STATUS,
    --ETL_LOAD_DTE,
    --ETL_LOAD_ID,
    --ETL_LOAD_STATUS2,
    ORIGINAL_LOC_ALLELE1
    --ORIGINAL_LOC_ALLELE2,
    --ORIGINAL_LOC_SER1,
    --ORIGINAL_LOC_SER2
    from
    IIDB_STG.OPS_FN_SBJCT_TYPING
    where FRM_TRACK_ID=308678
    order by 1,2
    result set:
    frm_track_id
    LOCUS
    frm_id
    frm_maj_version
    ORIGINAL_LOC_ALLELE1
    308678
    a
    2005
    1
    205
    308678
    b
    2005
    1
    3502
    308678
    c
    2005
    1
    401
    308678
    dqb1
    2005
    1
    null
    308678
    drb1
    2005
    1
    403

    In Source, you are selecting from  iidb_stg.stage_fn_base_translate, however in target query you are selecting from IIDB_STG.OPS_FN_SBJCT_TYPING. the only condition in both where clause is of FRM_TRACK_ID=308678, so i assume that the missing 2 records are not present in
    IIDB_STG.OPS_FN_SBJCT_TYPING table. Modifying the target query might not resolve issue but you have to check why these two records are missing from this table in first place.

  • [Target] - Partition definition is not valid: [Cell count mismatch: [1814427] area for slice [1] members per dimension [67 1 1 1 1 1 1 1 51 531 ]]

    Hello Everyone,
    I am receiving the error : [Target] - Partition definition is not valid: [Cell count mismatch: [1814427] area for slice [1] members per dimension [67 1 1 1 1 1 1 1 51 531 ]] when trying to validate my transparent partition.
    Because of some issues the data is not getting reflected at the target database.
    Please suggest some solution.
    Thanks in advance.

    I would exercise the following steps
    1.Copy the original partition script in a notepad
    2.Open one source outline and target outline applications in EAS Console in vertical mode.
    3.Check the partition members coming from both source  to Target application are in sync, by checking the source members and target members in the respective cubes ,if  any new member got added in your source partition intersection then you need the member in the target too,if they are not ,then cell count mismatch will occur.
    4.Since its a transparent partition target the shared transparent areas of the data source and data target outlines need not be identical.The dimensions and member in the data source maps to each dimension and member in the data target.You need to define the definition of mapping
    5.Create partition either using maxl or using create partition in EAS .
    In your case 1 partitions has the cell mismatch counts ,since you are able to retrieve the data for 3 partitions in the target applications
    Thanks,
    Sreekumar Hariharan

  • VideoDisplay/Slider Error = Error #1063: Argument count mismatch on... Expected 0, got 1

    I'm trying to connect a hslider to a video display. The idea being that as I move the slider the video will update live however when I drag the slider or the playhead updates ie. the video moves forward by a second I get the error in the title of this thread i.e:-
    ArgumentError: Error #1063: Argument count mismatch on components::VideoPopUp/onPlayingVideoUpdate(). Expected 0, got 1
    Here is the code that I use for my HSlider and myVideo Display. Can anyone please help me out as I'm not sure where I'm going wrong here:-
    <mx:Script>
    <![CDATA[
      import mx.events.VideoEvent;
      import mx.events.SliderEvent;
      private function videoDisplaySliderThumbDragHandler(event:SliderEvent):void{   
          videoDisplay.playheadTime = videoDisplaySlider.value;  
      private function videoDisplaySlider_ThumbPress():void{
          videoDisplay.removeEventListener(VideoEvent.PLAYHEAD_UPDATE, onPlayingVideoUpdate);
          videoDisplay.pause();
      private function videoDisplaySlider_ThumbRelease():void{
           videoDisplay.addEventListener(VideoEvent.PLAYHEAD_UPDATE, onPlayingVideoUpdate);
           videoDisplay.playheadTime = videoDisplaySlider.value;
           videoDisplay.play();
      private function videoDisplay_ready():void{
           videoDisplay.addEventListener(VideoEvent.PLAYHEAD_UPDATE, onPlayingVideoUpdate);
           videoDisplay.visible = true;
      private function onPlayingVideoUpdate() :void{
           videoDisplaySlider.value = videoDisplay.playheadTime;
    ]]>
    </mx:Script>
    <mx:HSlider id="videoDisplaySlider" invertThumbDirection="true" allowTrackClick="false" liveDragging="true" thumbDrag="videoDisplaySliderThumbDragHandler(event)" thumbPress="videoDisplaySlider_ThumbPress()" thumbRelease="videoDisplaySlider_ThumbRelease()" minimum="0" maximum="{videoDisplay.totalTime}"/>
    <mx:VideoDisplay id="videoDisplay" ready="videoDisplay_ready()" source="assets/myVideo.mp4" playheadUpdate="onPlayingVideoUpdate()"/>

    Aha I've managed to solve my own problem I missed the event out of the onVideoPlayingUpdate function I've now changed it to:-
    private function onPlayingVideoUpdate(event:VideoEvent) :void{
    and it works now.
    However I now have another problem when I drag the slider's thumb and then release it the video doesn't jump straight to that point as it should and just starts to play really slowly and jumpy.
    Also as I drag the thumb the video isn't changing live.
    To see what I'm trying to achieve go to YouTube and start dragging the thumb on the slider on their videos, you can see the picture updating live but I can't get that to happen in this case.
    Can anybody help me out on getting this to work smoothly?

  • Error #1063: Argument count mismatch on CBClasses::cbIntro(). Expected 5, got 0

    Hi,
    This is my first attempt with AS3...now I am well aware of OOPs concepts and am comfortable with programming, but I am not able to wrap my head around the whole connecting the classes to the display objects on screen thing [linkages and class names n all]..now I managed to fix most errors in my file, which has cbIntro as the base class [set up successfully]...now cbIntro extends MovieClip as it links to an external fla [cbFlash]...but  within cbFLash I am calling the following...
    import CBClasses.cbIntro;
    var flipped:Boolean = false;
    var jobs:jobsBtn_mc = new jobsBtn_mc();  //not a button a movieclip within the library
    var flip:cbIntro;
    function callFlip(e:MouseEvent):void 
    trace("in call flip");
    if (!flipped)
    //some button code
    flip  = new cbIntro(evnts, jobs, 2, "left", true);  //evnts is a mc on stage
    addChild(flip);
    flipped = true;  
    else if (flipped)
    flip = new cbIntro(jobs, evnts, 2, "right", true); 
    addChild(flip); 
    flipped = false; 
    evnts.nxt.visible = true; 
    evnts.nxt.addEventListener(MouseEvent.MOUSE_DOWN, callFlip); //Adds the listeners to the buttons 
    jobs.bck.addEventListener(MouseEvent.MOUSE_DOWN, callFlip); 
    cbIntro has one constructor which takes 5 parameters, defined within a separate .as file.....now I am getting an error
    Error #1063: Argument count mismatch on CBClasses::cbIntro(). Expected 5, got 0 
    How can this happen, the only time an object is created, I am sending the right number of parameters...?? declaring a cbIntro variable should not call the constructor....?? Is that what is happening?? Or am I missing something important????

    Hi Ned,
    Sorry about posting two different topics thing...I was just trying to figure out the first problem by creating a stripped down version of the sending an on stage movieclip to an external class thing. I don't know how I can break up this post now...but since you have mentioned a few points...the problem is not with the private function declaration..you are correct of course..and that error was fixed..but I am still getting the error....
    inside intromain constructor
    Error: Error #2136: The SWF file file:///E|/Adobe/Flash%20CS5/Projects/trial/introduction.swf contains invalid data.
    at introMain/frame1()
    the introMain class only contains a constructor and a vanish function, which only shows a trace. I removed the problem with the on stage instance name, and tried to access it directly...but I don't think the code is even getting to that point...or may be it is...I am at a loss here...
    Code within introduction.swf
    var iMain:introMain = new introMain();
    var isVanished:Boolean = false;
    trace("events alpha" + eventsmc.alpha);
    I am not even calling the vanish function anymore...is something wrong with the constructor call???
    Code within introMain
    package  {
    import flash.display.*;
    import fl.transitions.easing.*;
    import fl.transitions.Tween;
    import fl.transitions.TweenEvent;
    import flash.events.MouseEvent;
    public class introMain extends MovieClip{
              public function introMain(){
                   trace("inside intromain constructor");
               public function vanish(mcName:MovieClip):void{
                 trace("inside vanish");

  • Import CSV file: column count mismatch by always 1

    Hello,
    I am trying to import data from a CSV file into a HANA db table with an .hdbti file.
    I have a large structure of 332 fields in the table. When I activate the files to start the import, I always get the following message:
    CSV table column count mismatch. The CSV-file: Test.data:data.csv does not match to target table: Test.data::test. The number of columns (333) in csv record 1 is higher than the number of columns (332) in the table.
    But even if I delete the last column in the CSV file, the message stays the same. I also tried adding an additional field in the table on HANA, but then the column numbers in the error message just increase by 1. Then the message is: The number of columns (334) in csv record 1 is higher than the number of columns (333) in the table.
    So, it seems, whatever I do, the system thinks always that the csv file has one column too much.
    With another smaller structure of 5 fields, the import worked that way.
    Do you have an idea what the problem could be?
    Regards,
    Michael

    Hi Michael,
    It may be coz of delimiter problem or something. Can you paste the control file content here. So that i can check it out. Issue may be in your control file.
    Also if you can show the contents of the your *.err error log file, we can have a broader picture.
    Regards,
    Safiyu

  • ArgumentError: Error #1063: Argument count mismatch on portfolio_fla::MainTimeline/loadFightBite().

    Hi
    I'm trying to load a swf onto my stage and I'm having some problems with the event handler. I'm getting an error: when I comment out the event handler, it returns no errors, I've tried the function both with and without void, but it doesn't fix the error. I know this should be an easy fix, but it's got me stumped. Can anybody help? Thanks guys.
    ArgumentError: Error #1063: Argument count mismatch on portfolio_fla::MainTimeline/loadFightBite(). Expected 0, got 1.
    var fightBite_mc:MovieClip;
    var swfLoader:Loader = new Loader ();
    var swfRequest:URLRequest;
    fightBite_but.addEventListener (MouseEvent.CLICK, loadFightBite);
    function loadFightBite():void {
         this.addChild(swfLoader);
         swfLoader.load(new URLRequest("ftb_preloader.swf"));
         swfLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, swfLoaded);
    function swfLoaded(loadEvent:Event){
         swfLoader.x = stage.stageHeight /2;
         swfLoader.y = stage.stageWidth /2;
         swfLoader.contentLoaderInfo.removeEventListener(Event.COMPLETE, swfLoaded);
         fightBite_mc=swfLoader.content as MovieClip;

    use:
    var fightBite_mc:MovieClip;
    var swfLoader:Loader = new Loader ();
    var swfRequest:URLRequest;
    fightBite_but.addEventListener (MouseEvent.CLICK, loadFightBite);
    function loadFightBite(e:MouseEvent):void {
         this.addChild(swfLoader);
         swfLoader.load(new URLRequest("ftb_preloader.swf"));
         swfLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, swfLoaded);
    function swfLoaded(loadEvent:Event:Event){
         swfLoader.x = stage.stageHeight /2;
         swfLoader.y = stage.stageWidth /2;
         swfLoader.contentLoaderInfo.removeEventListener(Event.COMPLETE, swfLoaded);
         fightBite_mc=swfLoader.content as MovieClip;

  • About ArgumentError: Error #1063: Argument count mismatch

    Hi
    i am newbie to Flex Environment .
    This is my first post in Flex , so please excuse if my question is a dumb one .
    I am trying to dynamically create a Button and add EventListener to it .
    public function handleClick(event:MouseEvent):void
    var myBtn2:Button = new Button()
    myBtn2.label = "Dynamic";
    myBtn2.addEventListener(MouseEvent.MOUSE_OVER,handleClick1);
    this.addChild(myBtn2);
    public function handleClick1(event:MouseEvent):void
    Alert.show("This is for Dynamic button");                                                                                                             
    I have observered that , if i dont pass event on to the handleClick1() function i am getting ArgumentError: Error #1063: Argument count mismatch and  if i pass , all is working fine .
    Please tell me , why is it mantadatory to pass this ??

    More accurate to say that if you define an event handler in MXML, as in  <mx:Button click="clickFunc()"/> then it is optional to pass an event object with clickFunc(event), and if you do not pass it, your clickFunc() method signature does not need that argument.
    But if you add an event listener with addEventListener, then the listener method signature must always tae the event object as an argument.
    If this post answers your question or helps, please mark it as such.
    Greg Lafrance - Flex 2 and 3 ACE certified
    www.ChikaraDev.com
    Flex / AIR Development, Training, and Support Services

  • Argument count mismatch error: Expected 1, got 0.

    I am writing a datagridcolumn array to the cookie, and upon retreiving the user data it immediately throws "argument count mismatch error: Expected 1, got 0" on MediaGridColumnInfo(). I assume there is a disconnect between what I am saving and what is expected to receive.
    this is how I am saving the array:
    public function Save():void
                user.data.MediaListGridColumnsArray = new MediaGridColumnInfo(this.datagrid.columns);
                user.flush();
    when I put a trace on user.data.MediaListGridColumnsArray.columnObject after saving, it shows the correct type [object datagridcolumn].
    This is the entire MediaGridColumnInfo class (got this from another thread for solving storing typed object issue):
    package digitalmedia.components.entities
        import flash.display.Sprite;
        import flash.events.*;
        import flash.net.SharedObject;
        import flash.net.registerClassAlias;
        import flash.utils.IDataInput;
        import flash.utils.IDataOutput;
        import flash.utils.IExternalizable;
        public class MediaGridColumnInfo implements IExternalizable 
            public var columnObject: Array;
            public function MediaGridColumnInfo(columnObject: Array)
                this.columnObject = columnObject;
            public function writeExternal(output:IDataOutput):void
                output.writeObject(columnObject);
            public function readExternal(input:IDataInput):void
                columnObject = input.readObject();
    any ideas? thanks

    I think you can't have required constructor parameters in objects that get
    serialized.

  • Argument count mismatch on mx.binding::PropertyWatcher()

    I am using Flex Builder 3, and created an app that has
    imported a Livecycle form. The project "builds" fine, but when I
    try to run it, I get:
    ArgumentError: Error #1063: Argument count mismatch on
    mx.binding::PropertyWatcher(). Expected 3, got 2.
    If I force the SDK to Flex 2 build 3, the app works. Any
    ideas?

    I know this is an old topic, but just in case anyone else
    finds there way here. It looks like the opensource part of Adobe
    has usurped flexunit,
    this article is the needful
    http://www.insideria.com/2008/04/unit-testing-with-flexunit-1.html
    There is a link for the SWC but it is old, below will save
    you a click.
    <<OLD>> http://code.google.com/p/as3flexunitlib/
    <<NEW>>
    http://opensource.adobe.com/wiki/display/flexunit/
    You should remove all your old FlexUnit libraries and replace
    with the one FlexUnit.swc (originally flexunit.swc). You will have
    a minor difference in the TestRunner.mxml, just grab the one form
    the above blog.

  • Run OSMFPlayer got "Argument count mismatch on OSMFPlayer(). Expected 1, got 0."

    I am trying to get sample code OSMFPlayer work.  I am using flash professional.
    When I press "test movie" I got "ArgumentError: Error #1063: Argument count mismatch on OSMFPlayer(). Expected 1, got 0."
    I need to pass in the preloader argument.  But how can I do it and what the value should I pass in?
    Please help! - Cathy

    Aha I've managed to solve my own problem I missed the event out of the onVideoPlayingUpdate function I've now changed it to:-
    private function onPlayingVideoUpdate(event:VideoEvent) :void{
    and it works now.
    However I now have another problem when I drag the slider's thumb and then release it the video doesn't jump straight to that point as it should and just starts to play really slowly and jumpy.
    Also as I drag the thumb the video isn't changing live.
    To see what I'm trying to achieve go to YouTube and start dragging the thumb on the slider on their videos, you can see the picture updating live but I can't get that to happen in this case.
    Can anybody help me out on getting this to work smoothly?

  • Argument Error #1063: Argument count mismatch

    So I'm having another issue my code.  I keep getting this error whenever I test:
    ArgumentError: Error #1063: Argument count mismatch on Enemy(). Expected 2, got 0.
        at flash.display::Sprite/constructChildren()
        at flash.display::Sprite()
        at flash.display::MovieClip()
        at MenuScreen()[C:\Users\Erin\Documents\School\National University\Game Scripting MUL 355 - December 2012\AvoiderGameFinal\Classes\MenuScreen.as:10]
        at DocumentClass()[C:\Users\Erin\Documents\School\National University\Game Scripting MUL 355 - December 2012\AvoiderGameFinal\Classes\DocumentClass.as:13]
    Here's my code for MenuScreen:
    <pre>
    package
        import flash.display.MovieClip;
        import flash.display.SimpleButton;
        import flash.events.MouseEvent;
        public class MenuScreen extends MovieClip
            public function MenuScreen()
                var startButton:StartButton = new StartButton();
                startButton.addEventListener( MouseEvent.CLICK, onClickStart );
            public function onClickStart( event:MouseEvent ):void
                dispatchEvent( new NavigationEvent( NavigationEvent.START ) );
    </pre>
    And here's my code for DocumentClass:
    <pre>
    package
        import flash.display.MovieClip;
        public class DocumentClass extends MovieClip
            public var menuScreen:MenuScreen;
            public var playScreen:AvoiderGame;
            public var gameOverScreen:GameOverScreen;
            public function DocumentClass()
                    super();
                    menuScreen = new MenuScreen();
                    menuScreen.addEventListener( NavigationEvent.START, onRequestStart );
                    menuScreen.x = 0;
                    menuScreen.y = 0;
                    addChild( menuScreen );
                public function onAvatarDeath( avatarEvent:AvatarEvent ):void
                    gameOverScreen = new GameOverScreen();
                    gameOverScreen.addEventListener( NavigationEvent.RESTART, onRequestRestart );
                    gameOverScreen.x = 0;
                    gameOverScreen.y = 0;
                    addChild( gameOverScreen );
                    playScreen = null;
                public function onRequestRestart( navigationEvent:NavigationEvent ):void
                    restartGame();
                public function onRequestStart( navigationEvent:NavigationEvent ):void
                    playScreen = new AvoiderGame();
                    playScreen.addEventListener( AvatarEvent.DEAD, onAvatarDeath );
                    playScreen.x = 0;
                    playScreen.y = 0;
                    addChild( playScreen );
                    menuScreen = null
                public function restartGame():void
                        menuScreen = new MenuScreen();
                    menuScreen.addEventListener( AvatarEvent.DEAD, onAvatarDeath );
                    menuScreen.x = 0;
                    menuScreen.y = 0;
                    addChild( menuScreen );
                    gameOverScreen = null;
    </pre>
    Any ideas?

    Hi sinious - yeah that's what I was thinking, but why does it say in the error message that it's in these two AC3 files?  I'm very new to it too.  Here's my Enemy file:
    <pre>
    package
        import flash.display.MovieClip;
        public class Enemy extends MovieClip
            public function Enemy( startX:Number, startY:Number )
                x = startX;
                y = startY;
            public function moveDownABit():void
                y = y + 3;
    </pre>

  • Error #1063: Argument count mismatch. Expected 1, got 0.

    I'm trying to call a TweenEvent function which is placed in another class from my Document Class.
    ActionScript Code:
    ball[i].tweenX();
    However, the following error message is appearing...
    ActionScript Code:
    Error #1063: Argument count mismatch on Ball/tweenX(). Expected 1, got 0.
    I'm guessing I need to include something in the parentheses when I call .tweenx();, but I'm not too sure what?!
    Here's the Tween Event function in the Ball class as well if it helps.
    ActionScript Code:
    public function tweenX(event:TweenEvent):void
                var randomXBoundary = (xBoundary[int(Math.random() * xBoundary.length)]);
                myTweenX = new Tween(this, "x", None.easeOut, this.x, randomXBoundary, 10, true);
                trace("tweenX function for " + this + " has been called and is heading for" + randomXBoundary + " x pos");
                myTweenX.addEventListener(TweenEvent.MOTION_FINISH,tweenX);
            }//end of tweenX function

    There is a slight conflict of interests so to speak in that you want to call the same function in two different ways... with and without the event argument being passed.
    What you probably need to do is separate the tweening function from the event handler function...
    public function tweenX():void {
                var randomXBoundary = (xBoundary[int(Math.random() * xBoundary.length)]);
                myTweenX = new Tween(this, "x", None.easeOut, this.x, randomXBoundary, 10, true);
                trace("tweenX function for " + this + " has been called and is heading for" + randomXBoundary + " x pos");
                myTweenX.addEventListener(TweenEvent.MOTION_FINISH, tweenXEvt);
    public function tweenXEvt(event:TweenEvent):void {
                tweenX();

  • VerifyError: Error #1063: Argument count mismatch on mx.core::RSLItem(). Expected 1, got 3.

    Im getting the following error when trying to run my application, which was migrated from 3.5 to 3.6A:
    VerifyError: Error #1063: Argument count mismatch on mx.core::RSLItem(). Expected 1, got 3.
    The original application was built with Flash Builder 4 (SDK 3.5), and imported in Flash Builder 4.6 (using SDK 3.6A).
    The error is displayed only when the framework linkage type is set to RSL, when using the framework linkage "Merged into code", the application runs fine. But we need to use RSL as the application is quite large.
    Any help appreciated.
    Thanks.

    After generating the link report, i found that the RSLItem is called from core classes, namely: RSLListLoader.as, RSLItem.as, framework.swc. Find below the XML report generated.
    Can you please  have a look and see if there is any anomaly in the report ?
    Thanks.
    <report>
      <scripts>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\libs\framework.swc(mx/resources/ResourceBundle)" mod="1308335066955" size="3594" optimizedsize="1671">
          <def id="mx.resources:ResourceBundle" />
          <pre id="mx.resources:IResourceBundle" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="mx.utils:StringUtil" />
          <dep id="mx.core:mx_internal" />
          <dep id="flash.system:ApplicationDomain" />
          <dep id="Error" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/images/GIFImage)" mod="1264282454000" size="588" optimizedsize="296">
          <def id="org.alivepdf.images:GIFImage" />
          <pre id="org.alivepdf.images:PDFImage" />
          <dep id="flash.utils:ByteArray" />
          <dep id="AS3" />
          <dep id="org.alivepdf.images:ColorSpace" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/links/HTTPLink)" mod="1308306274843" size="470" optimizedsize="210">
          <def id="org.alivepdf.links:HTTPLink" />
          <pre id="Object" />
          <pre id="org.alivepdf.links:ILink" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\src\modules\reports\PmsAnnexReport.as" mod="1308307027120" size="4769" optimizedsize="3101">
          <def id="modules.reports:PmsAnnexReport" />
          <pre id="modules.reports:BasePmsReport" />
          <pre id="interfaces:IDisposable" />
          <dep id="org.alivepdf.layout:Align" />
          <dep id="models:MappingScoringRemark" />
          <dep id="org.alivepdf.drawing:Joint" />
          <dep id="org.alivepdf.images:ColorSpace" />
          <dep id="mx.collections:ArrayCollection" />
          <dep id="models:Family" />
          <dep id="org.alivepdf.layout:Mode" />
          <dep id="AS3" />
          <dep id="org.alivepdf.layout:Position" />
          <dep id="org.alivepdf.data:Grid" />
          <dep id="org.alivepdf.data:GridColumn" />
          <dep id="org.alivepdf.layout:Resize" />
          <dep id="org.alivepdf.colors:RGBColor" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/fonts/FontMetrics)" mod="1264163544000" size="8666" optimizedsize="6536">
          <def id="org.alivepdf.fonts:FontMetrics" />
          <pre id="Object" />
          <dep id="org.alivepdf.fonts:FontFamily" />
          <dep id="AS3" />
          <dep id="Error" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/pages/Page)" mod="1308306275804" size="5962" optimizedsize="2628">
          <def id="org.alivepdf.pages:Page" />
          <pre id="Object" />
          <dep id="org.alivepdf.layout:Size" />
          <dep id="RangeError" />
          <dep id="AS3" />
          <dep id="org.alivepdf.layout:Orientation" />
          <dep id="org.alivepdf.events:PagingEvent" />
          <dep id="org.alivepdf.layout:Unit" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/images/PNGImage)" mod="1308306276248" size="2506" optimizedsize="1655">
          <def id="org.alivepdf.images:PNGImage" />
          <pre id="org.alivepdf.images:PDFImage" />
          <dep id="org.alivepdf.decoding:Filter" />
          <dep id="flash.utils:ByteArray" />
          <dep id="AS3" />
          <dep id="org.alivepdf.images:ColorSpace" />
          <dep id="Error" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\src\mx\core\RSLListLoader.as" mod="1302697093262" size="2303" optimizedsize="1135">
          <def id="mx.core:RSLListLoader" />
          <pre id="Object" />
          <dep id="flash.events:Event" />
          <dep id="mx.core:RSLItem" />
          <dep id="AS3" />
          <dep id="flash.utils:Dictionary" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/fonts/CodePage_CP1252)" mod="1264282452000" size="753" optimizedsize="249">
          <def id="org.alivepdf.fonts:CodePage_CP1252" />
          <pre id="mx.core:ByteArrayAsset" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/images/TIFFImage)" mod="1265032112000" size="635" optimizedsize="278">
          <def id="org.alivepdf.images:TIFFImage" />
          <pre id="org.alivepdf.images:PDFImage" />
          <dep id="flash.utils:ByteArray" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/layout/Position)" mod="1264282454000" size="562" optimizedsize="269">
          <def id="org.alivepdf.layout:Position" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/links/ILink)" mod="1264282450000" size="318" optimizedsize="104">
          <def id="org.alivepdf.links:ILink" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\src\modules\models\PdfItem.as" mod="1302697106112" size="863" optimizedsize="414">
          <def id="modules.models:PdfItem" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/encoding/PNGEncoder)" mod="1264278206000" size="2218" optimizedsize="1283">
          <def id="org.alivepdf.encoding:PNGEncoder" />
          <pre id="Object" />
          <dep id="flash.display:BitmapData" />
          <dep id="flash.utils:ByteArray" />
          <dep id="AS3" />
          <dep id="flash.geom:Rectangle" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/images/ColorSpace)" mod="1264282454000" size="648" optimizedsize="331">
          <def id="org.alivepdf.images:ColorSpace" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/display/PageMode)" mod="1264282454000" size="751" optimizedsize="405">
          <def id="org.alivepdf.display:PageMode" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/visibility/Visibility)" mod="1264282452000" size="587" optimizedsize="275">
          <def id="org.alivepdf.visibility:Visibility" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\libs\framework.swc(mx/core/mx_internal)" mod="1308335051533" size="188" optimizedsize="109">
          <def id="mx.core:mx_internal" />
          <dep id="AS3" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\locale\en_US\automation_agent_rb.swc$locale/en_US/controls.prop erties" mod="1330491712199" size="2963" optimizedsize="2848">
          <def id="en_US$controls_properties" />
          <def id="fr_FR$controls_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/layout/Size)" mod="1264282456000" size="1741" optimizedsize="1007">
          <def id="org.alivepdf.layout:Size" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/images/PDFImage)" mod="1308306276348" size="2560" optimizedsize="1020">
          <def id="org.alivepdf.images:PDFImage" />
          <pre id="org.alivepdf.images:IImage" />
          <pre id="Object" />
          <dep id="flash.utils:ByteArray" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/drawing/DashedLine)" mod="1264282452000" size="848" optimizedsize="426">
          <def id="org.alivepdf.drawing:DashedLine" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/events/CharacterEvent)" mod="1261661978000" size="873" optimizedsize="391">
          <def id="org.alivepdf.events:CharacterEvent" />
          <pre id="flash.events:Event" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\src\modules\helpers\PdfHelper.as" mod="1313559214599" size="7275" optimizedsize="4683">
          <def id="modules.helpers:PdfHelper" />
          <pre id="Object" />
          <dep id="helpers:Translation" />
          <dep id="org.alivepdf.layout:Align" />
          <dep id="models:User" />
          <dep id="flash.errors:IllegalOperationError" />
          <dep id="flash.utils:ByteArray" />
          <dep id="views:LoaderWindow" />
          <dep id="flash.geom:Rectangle" />
          <dep id="modules.helpers:CustPDF" />
          <dep id="org.alivepdf.layout:Orientation" />
          <dep id="Math" />
          <dep id="modules.models:PdfItem" />
          <dep id="org.alivepdf.fonts:CoreFont" />
          <dep id="flash.geom:Point" />
          <dep id="mx.collections:ArrayCollection" />
          <dep id="org.alivepdf.layout:Size" />
          <dep id="org.alivepdf.fonts:Style" />
          <dep id="org.alivepdf.fonts:FontFamily" />
          <dep id="Date" />
          <dep id="AS3" />
          <dep id="org.alivepdf.saving:Method" />
          <dep id="org.alivepdf.layout:Unit" />
          <dep id="org.alivepdf.colors:RGBColor" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/fonts/CodePage_CP1253)" mod="1264282452000" size="754" optimizedsize="249">
          <def id="org.alivepdf.fonts:CodePage_CP1253" />
          <pre id="mx.core:ByteArrayAsset" />
          <dep id="AS3" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\locale\en_US\automation_agent_rb.swc$locale/en_US/effects.prope rties" mod="1330491712215" size="551" optimizedsize="512">
          <def id="en_US$effects_properties" />
          <def id="fr_FR$effects_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/colors/IColor)" mod="1264282454000" size="327" optimizedsize="106">
          <def id="org.alivepdf.colors:IColor" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/annotations/MovieAnnotation)" mod="1265087336000" size="611" optimizedsize="259">
          <def id="org.alivepdf.annotations:MovieAnnotation" />
          <pre id="org.alivepdf.annotations:Annotation" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/fonts/IFont)" mod="1308306275234" size="1376" optimizedsize="400">
          <def id="org.alivepdf.fonts:IFont" />
          <pre id="flash.events:IEventDispatcher" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\libs\framework.swc(mx/events/ResourceEvent)" mod="1308335063174" size="1038" optimizedsize="570">
          <def id="mx.events:ResourceEvent" />
          <pre id="flash.events:ProgressEvent" />
          <dep id="flash.events:Event" />
          <dep id="AS3" />
          <dep id="mx.core:mx_internal" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/images/DoPNGImage)" mod="1265035590000" size="1023" optimizedsize="629">
          <def id="org.alivepdf.images:DoPNGImage" />
          <pre id="org.alivepdf.images:PNGImage" />
          <dep id="flash.display:BitmapData" />
          <dep id="flash.utils:ByteArray" />
          <dep id="AS3" />
          <dep id="org.alivepdf.images:ColorSpace" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/annotations/Annotation)" mod="1265082924000" size="1280" optimizedsize="507">
          <def id="org.alivepdf.annotations:Annotation" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/encoding/IntBlock)" mod="1264282452000" size="1381" optimizedsize="860">
          <def id="org.alivepdf.encoding:IntBlock" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="Error" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\src\modules\reports\BasePmsReport.as" mod="1305264212432" size="4225" optimizedsize="2696">
          <def id="modules.reports:BasePmsReport" />
          <pre id="modules.interfaces:IPdfReport" />
          <pre id="Object" />
          <dep id="helpers:Translation" />
          <dep id="flash.events:Event" />
          <dep id="org.alivepdf.layout:Align" />
          <dep id="flash.utils:ByteArray" />
          <dep id="flash.net:URLRequest" />
          <dep id="flash.display:BitmapData" />
          <dep id="mx.controls:Alert" />
          <dep id="flash.events:IOErrorEvent" />
          <dep id="org.alivepdf.images:ColorSpace" />
          <dep id="Error" />
          <dep id="flash.utils:setTimeout" />
          <dep id="mx.collections:ArrayCollection" />
          <dep id="flash.net:URLLoaderDataFormat" />
          <dep id="org.alivepdf.encoding:JPEGEncoder" />
          <dep id="modules.helpers:PdfHelper" />
          <dep id="org.alivepdf.layout:Mode" />
          <dep id="AS3" />
          <dep id="org.alivepdf.layout:Position" />
          <dep id="flash.net:URLLoader" />
          <dep id="org.alivepdf.layout:Resize" />
          <dep id="org.alivepdf.colors:RGBColor" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/fonts/CodePage_CP1254)" mod="1264282452000" size="754" optimizedsize="249">
          <def id="org.alivepdf.fonts:CodePage_CP1254" />
          <pre id="mx.core:ByteArrayAsset" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/serializer/ISerializer)" mod="1264282454000" size="548" optimizedsize="201">
          <def id="org.alivepdf.serializer:ISerializer" />
          <pre id="Object" />
          <dep id="flash.utils:ByteArray" />
          <dep id="AS3" />
        </script>
        <script name="modules\reports\PmsAppraisalReport_icon_report_ok.as" mod="1302697102570" size="871" optimizedsize="352">
          <def id="modules.reports:PmsAppraisalReport_icon_report_ok" />
          <pre id="mx.core:BitmapAsset" />
          <dep id="AS3" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\locale\en_US\automation_agent_rb.swc$locale/en_US/skins.propert ies" mod="1330491712245" size="429" optimizedsize="392">
          <def id="en_US$skins_properties" />
          <def id="fr_FR$skins_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/operators/Drawing)" mod="1264282456000" size="675" optimizedsize="344">
          <def id="org.alivepdf.operators:Drawing" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/colors/RGBColor)" mod="1264282454000" size="932" optimizedsize="518">
          <def id="org.alivepdf.colors:RGBColor" />
          <pre id="org.alivepdf.colors:IColor" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/images/gif/events/FileTypeEvent)" mod="1264282454000" size="721" optimizedsize="322">
          <def id="org.alivepdf.images.gif.events:FileTypeEvent" />
          <pre id="flash.events:Event" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/tools/sprintf)" mod="1264282454000" size="3636" optimizedsize="2442">
          <def id="org.alivepdf.tools:sprintf" />
          <dep id="AS3" />
          <dep id="String" />
          <dep id="Number" />
          <dep id="int" />
          <dep id="Math" />
          <dep id="Boolean" />
          <dep id="uint" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\libs\framework.swc(mx/utils/LoaderUtil)" mod="1308335055471" size="1990" optimizedsize="1169">
          <def id="mx.utils:LoaderUtil" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="Math" />
          <dep id="flash.display:LoaderInfo" />
          <dep id="mx.core:mx_internal" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/fonts/FontType)" mod="1308306275524" size="515" optimizedsize="243">
          <def id="org.alivepdf.fonts:FontType" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\locale\en_US\automation_agent_rb.swc$locale/en_US/containers.pr operties" mod="1330491712191" size="614" optimizedsize="571">
          <def id="fr_FR$containers_properties" />
          <def id="en_US$containers_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/fonts/Style)" mod="1262664974000" size="563" optimizedsize="269">
          <def id="org.alivepdf.fonts:Style" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\libs\framework.swc(mx/core/IFlexModuleFactory)" mod="1308335051502" size="972" optimizedsize="297">
          <def id="mx.core:IFlexModuleFactory" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="flash.utils:Dictionary" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/images/gif/decoder/GIFDecoder)" mod="1308306276171" size="11444" optimizedsize="5893">
          <def id="org.alivepdf.images.gif.decoder:GIFDecoder" />
          <pre id="Object" />
          <dep id="RangeError" />
          <dep id="flash.display:BitmapData" />
          <dep id="flash.utils:ByteArray" />
          <dep id="AS3" />
          <dep id="flash.geom:Rectangle" />
          <dep id="org.alivepdf.images.gif.frames:GIFFrame" />
          <dep id="org.alivepdf.images.gif.errors:FileTypeError" />
          <dep id="Error" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\libs\framework.swc(mx/resources/IResourceBundle)" mod="1308335066987" size="736" optimizedsize="221">
          <def id="mx.resources:IResourceBundle" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/fonts/EmbeddedFont)" mod="1264666580000" size="2550" optimizedsize="1383">
          <def id="org.alivepdf.fonts:EmbeddedFont" />
          <pre id="org.alivepdf.fonts:IFont" />
          <pre id="org.alivepdf.fonts:CoreFont" />
          <dep id="org.alivepdf.fonts:FontMetrics" />
          <dep id="org.alivepdf.fonts:AFMParser" />
          <dep id="org.alivepdf.fonts:FontType" />
          <dep id="flash.utils:ByteArray" />
          <dep id="AS3" />
          <dep id="org.alivepdf.fonts:FontDescription" />
          <dep id="org.alivepdf.events:CharacterEvent" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/cells/CellVO)" mod="1264282454000" size="838" optimizedsize="462">
          <def id="org.alivepdf.cells:CellVO" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="org.alivepdf.fonts:IFont" />
          <dep id="org.alivepdf.colors:IColor" />
          <dep id="org.alivepdf.links:ILink" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\src\modules\reports\PmsMergedReferenceReport.as" mod="1329369707783" size="11739" optimizedsize="8300">
          <def id="modules.reports:PmsMergedReferenceReport" />
          <pre id="modules.reports:BasePmsReport" />
          <pre id="interfaces:IDisposable" />
          <dep id="helpers:Translation" />
          <dep id="org.alivepdf.layout:Align" />
          <dep id="models:Globals" />
          <dep id="org.alivepdf.drawing:Joint" />
          <dep id="modules.models:PdfItem" />
          <dep id="models:GenericQuery" />
          <dep id="org.alivepdf.events:PageEvent" />
          <dep id="uccore.utils:DateParser" />
          <dep id="models:AppraisalDetail" />
          <dep id="org.alivepdf.fonts:Style" />
          <dep id="mx.collections:ArrayCollection" />
          <dep id="mx.formatters:NumberFormatter" />
          <dep id="org.alivepdf.layout:Mode" />
          <dep id="AS3" />
          <dep id="mx.formatters:NumberBaseRoundType" />
          <dep id="org.alivepdf.layout:Position" />
          <dep id="org.alivepdf.layout:Resize" />
          <dep id="org.alivepdf.data:GridColumn" />
          <dep id="org.alivepdf.data:Grid" />
          <dep id="flash.utils:Dictionary" />
          <dep id="org.alivepdf.colors:RGBColor" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/fonts/CodePage_CP1255)" mod="1264282452000" size="754" optimizedsize="249">
          <def id="org.alivepdf.fonts:CodePage_CP1255" />
          <pre id="mx.core:ByteArrayAsset" />
          <dep id="AS3" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\libs\framework.swc(mx/resources/ResourceManager)" mod="1308335066971" size="946" optimizedsize="518">
          <def id="mx.resources:ResourceManager" />
          <pre id="Object" />
          <dep id="mx.resources:IResourceManager" />
          <dep id="AS3" />
          <dep id="mx.resources:ResourceManagerImpl" />
          <dep id="mx.core:Singleton" />
          <dep id="mx.core:mx_internal" />
          <dep id="Error" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/images/DoTIFFImage)" mod="1265035054000" size="848" optimizedsize="459">
          <def id="org.alivepdf.images:DoTIFFImage" />
          <pre id="org.alivepdf.images:TIFFImage" />
          <dep id="flash.display:BitmapData" />
          <dep id="flash.utils:ByteArray" />
          <dep id="AS3" />
          <dep id="org.alivepdf.images:ColorSpace" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/encoding/BitString)" mod="1264282452000" size="525" optimizedsize="226">
          <def id="org.alivepdf.encoding:BitString" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/html/HTMLTag)" mod="1308306275923" size="524" optimizedsize="232">
          <def id="org.alivepdf.html:HTMLTag" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/colors/GrayColor)" mod="1264282454000" size="483" optimizedsize="215">
          <def id="org.alivepdf.colors:GrayColor" />
          <pre id="org.alivepdf.colors:IColor" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/events/PageEvent)" mod="1264282454000" size="689" optimizedsize="337">
          <def id="org.alivepdf.events:PageEvent" />
          <pre id="flash.events:Event" />
          <dep id="org.alivepdf.pages:Page" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/fonts/CodePage_KOI8R)" mod="1264282452000" size="748" optimizedsize="247">
          <def id="org.alivepdf.fonts:CodePage_KOI8R" />
          <pre id="mx.core:ByteArrayAsset" />
          <dep id="AS3" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\libs\framework.swc(mx/core/Singleton)" mod="1308335052487" size="1087" optimizedsize="555">
          <def id="mx.core:Singleton" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="mx.core:mx_internal" />
          <dep id="Error" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/annotations/TextAnnotation)" mod="1265087094000" size="886" optimizedsize="368">
          <def id="org.alivepdf.annotations:TextAnnotation" />
          <pre id="org.alivepdf.annotations:Annotation" />
          <dep id="AS3" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\libs\framework.swc(mx/core/FlexVersion)" mod="1308335052315" size="2696" optimizedsize="1439">
          <def id="mx.core:FlexVersion" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="fr_FR$core_properties" />
          <dep id="en_US$core_properties" />
          <dep id="mx.core:mx_internal" />
          <dep id="mx.resources:ResourceManager" />
          <dep id="Error" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/fonts/CodePage)" mod="1262727576000" size="1477" optimizedsize="577">
          <def id="org.alivepdf.fonts:CodePage" />
          <pre id="Object" />
          <dep id="org.alivepdf.fonts:CodePage_CP1257" />
          <dep id="org.alivepdf.fonts:CodePage_KOI8U" />
          <dep id="org.alivepdf.fonts:CodePage_CP1258" />
          <dep id="org.alivepdf.fonts:CodePage_CP1255" />
          <dep id="org.alivepdf.fonts:CodePage_KOI8R" />
          <dep id="org.alivepdf.fonts:CodePage_CP1253" />
          <dep id="org.alivepdf.fonts:CodePage_CP1254" />
          <dep id="AS3" />
          <dep id="org.alivepdf.fonts:CodePage_CP1251" />
          <dep id="org.alivepdf.fonts:CodePage_CP1252" />
          <dep id="org.alivepdf.fonts:CodePage_CP1250" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/drawing/WindingRule)" mod="1264282452000" size="553" optimizedsize="263">
          <def id="org.alivepdf.drawing:WindingRule" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/fonts/AFMParser)" mod="1308306275328" size="8118" optimizedsize="4757">
          <def id="org.alivepdf.fonts:AFMParser" />
          <pre id="flash.events:EventDispatcher" />
          <dep id="org.alivepdf.fonts:FontType" />
          <dep id="flash.utils:ByteArray" />
          <dep id="org.alivepdf.fonts:CodePage" />
          <dep id="AS3" />
          <dep id="RegExp" />
          <dep id="flash.utils:Dictionary" />
          <dep id="Error" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\libs\framework.swc(mx/core/IFlexModule)" mod="1308335052362" size="568" optimizedsize="188">
          <def id="mx.core:IFlexModule" />
          <pre id="Object" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/export/CSVExport)" mod="1308306274976" size="1314" optimizedsize="783">
          <def id="org.alivepdf.export:CSVExport" />
          <pre id="org.alivepdf.serializer:ISerializer" />
          <pre id="Object" />
          <dep id="flash.utils:ByteArray" />
          <dep id="AS3" />
          <dep id="org.alivepdf.data:GridColumn" />
          <dep id="Error" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\libs\framework.swc(mx/modules/ModuleManagerGlobals)" mod="1308335065565" size="518" optimizedsize="211">
          <def id="mx.modules:ModuleManagerGlobals" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\src\modules\reports\Pms360Report.as" mod="1317802148831" size="7875" optimizedsize="5680">
          <def id="modules.reports:Pms360Report" />
          <pre id="modules.reports:BasePmsReport" />
          <pre id="interfaces:IDisposable" />
          <dep id="mx.containers:VBox" />
          <dep id="helpers:Translation" />
          <dep id="org.alivepdf.layout:Align" />
          <dep id="Math" />
          <dep id="org.alivepdf.drawing:Joint" />
          <dep id="modules.models:PdfItem" />
          <dep id="XMLList" />
          <dep id="org.alivepdf.events:PageEvent" />
          <dep id="models:FeedbackReport" />
          <dep id="uccore.utils:DateParser" />
          <dep id="Error" />
          <dep id="org.alivepdf.fonts:Style" />
          <dep id="mx.collections:ArrayCollection" />
          <dep id="org.alivepdf.layout:Mode" />
          <dep id="AS3" />
          <dep id="org.alivepdf.layout:Position" />
          <dep id="XML" />
          <dep id="org.alivepdf.layout:Resize" />
          <dep id="org.alivepdf.data:GridColumn" />
          <dep id="org.alivepdf.data:Grid" />
          <dep id="org.alivepdf.colors:RGBColor" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\locale\en_US\automation_agent_rb.swc$locale/en_US/core.properti es" mod="1330491712207" size="1078" optimizedsize="1025">
          <def id="fr_FR$core_properties" />
          <def id="en_US$core_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/pdf/PDF)" mod="1317801532942" size="66728" optimizedsize="40851">
          <def id="org.alivepdf.pdf:PDF" />
          <pre id="flash.events:IEventDispatcher" />
          <pre id="Object" />
          <dep id="flash.utils:ByteArray" />
          <dep id="Math" />
          <dep id="org.alivepdf.images:DoTIFFImage" />
          <dep id="org.alivepdf.images:ColorSpace" />
          <dep id="org.alivepdf.images:PDFImage" />
          <dep id="org.alivepdf.images:PNGImage" />
          <dep id="flash.display:Shape" />
          <dep id="org.alivepdf.pages:Page" />
          <dep id="org.alivepdf.layout:Size" />
          <dep id="org.alivepdf.images:GIFImage" />
          <dep id="Date" />
          <dep id="flash.geom:Matrix" />
          <dep id="org.alivepdf.links:Outline" />
          <dep id="org.alivepdf.colors:IColor" />
          <dep id="org.alivepdf.layout:Resize" />
          <dep id="org.alivepdf.links:HTTPLink" />
          <dep id="org.alivepdf.html:HTMLTag" />
          <dep id="org.alivepdf.links:ILink" />
          <dep id="org.alivepdf.drawing:DashedLine" />
          <dep id="flash.geom:Rectangle" />
          <dep id="org.alivepdf.encoding:Base64" />
          <dep id="org.alivepdf.colors:SpotColor" />
          <dep id="flash.net:navigateToURL" />
          <dep id="org.alivepdf.operators:Drawing" />
          <dep id="org.alivepdf.events:ProcessingEvent" />
          <dep id="XMLList" />
          <dep id="flash.geom:Point" />
          <dep id="org.alivepdf.images:JPEGImage" />
          <dep id="org.alivepdf.layout:Mode" />
          <dep id="org.alivepdf.images:DoJPEGImage" />
          <dep id="flash.system:Capabilities" />
          <dep id="flash.display:DisplayObject" />
          <dep id="org.alivepdf.data:Grid" />
          <dep id="org.alivepdf.data:GridColumn" />
          <dep id="org.alivepdf.fonts:EmbeddedFont" />
          <dep id="org.alivepdf.annotations:TextAnnotation" />
          <dep id="org.alivepdf.images:TIFFImage" />
          <dep id="flash.events:Event" />
          <dep id="org.alivepdf.links:InternalLink" />
          <dep id="org.alivepdf.drawing:WindingRule" />
          <dep id="org.alivepdf.fonts:FontType" />
          <dep id="flash.display:BitmapData" />
          <dep id="org.alivepdf.fonts:IFont" />
          <dep id="org.alivepdf.colors:GrayColor" />
          <dep id="org.alivepdf.colors:CMYKColor" />
          <dep id="flash.net:URLRequestMethod" />
          <dep id="org.alivepdf.fonts:FontMetrics" />
          <dep id="org.alivepdf.cells:CellVO" />
          <dep id="org.alivepdf.decoding:Filter" />
          <dep id="org.alivepdf.annotations:Annotation" />
          <dep id="org.alivepdf.images:DoPNGImage" />
          <dep id="AS3" />
          <dep id="org.alivepdf.annotations:MovieAnnotation" />
          <dep id="org.alivepdf.layout:Position" />
          <dep id="org.alivepdf.display:Display" />
          <dep id="flash.utils:Dictionary" />
          <dep id="org.alivepdf.images.gif.player:GIFPlayer" />
          <dep id="org.alivepdf.display:PageMode" />
          <dep id="org.alivepdf.layout:Align" />
          <dep id="org.alivepdf.images:ImageFormat" />
          <dep id="RangeError" />
          <dep id="org.alivepdf.encoding:PNGEncoder" />
          <dep id="org.alivepdf.encoding:TIFFEncoder" />
          <dep id="flash.net:URLRequest" />
          <dep id="org.alivepdf.tools:sprintf" />
          <dep id="flash.utils:getTimer" />
          <dep id="org.alivepdf.fonts:CoreFont" />
          <dep id="org.alivepdf.events:PageEvent" />
          <dep id="Error" />
          <dep id="flash.net:URLRequestHeader" />
          <dep id="org.alivepdf.encoding:JPEGEncoder" />
          <dep id="flash.events:EventDispatcher" />
          <dep id="org.alivepdf.fonts:FontFamily" />
          <dep id="org.alivepdf.layout:Layout" />
          <dep id="org.alivepdf.visibility:Visibility" />
          <dep id="flash.utils:Endian" />
          <dep id="org.alivepdf.saving:Method" />
          <dep id="org.alivepdf.fonts:FontDescription" />
          <dep id="XML" />
          <dep id="org.alivepdf.layout:Unit" />
          <dep id="org.alivepdf.colors:RGBColor" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/events/PagingEvent)" mod="1264282454000" size="681" optimizedsize="320">
          <def id="org.alivepdf.events:PagingEvent" />
          <pre id="flash.events:Event" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\src\modules\reports\PmsAppraisalReport.as" mod="1329369707767" size="24879" optimizedsize="17825">
          <def id="modules.reports:PmsAppraisalReport" />
          <pre id="flash.events:IEventDispatcher" />
          <pre id="modules.reports:BasePmsReport" />
          <pre id="interfaces:IDisposable" />
          <dep id="flash.events:Event" />
          <dep id="flash.utils:ByteArray" />
          <dep id="flash.display:BitmapData" />
          <dep id="models:AppraisalNotes" />
          <dep id="mx.utils:StringUtil" />
          <dep id="models:Scoring" />
          <dep id="Math" />
          <dep id="modules.models:PdfItem" />
          <dep id="models:GenericQuery" />
          <dep id="org.alivepdf.images:ColorSpace" />
          <dep id="uccore.utils:DateParser" />
          <dep id="mx.formatters:NumberFormatter" />
          <dep id="AS3" />
          <dep id="org.alivepdf.layout:Position" />
          <dep id="org.alivepdf.layout:Resize" />
          <dep id="mx.events:PropertyChangeEvent" />
          <dep id="flash.utils:Dictionary" />
          <dep id="helpers:Translation" />
          <dep id="org.alivepdf.layout:Align" />
          <dep id="mx.core:BitmapAsset" />
          <dep id="models:Globals" />
          <dep id="org.alivepdf.drawing:Joint" />
          <dep id="org.alivepdf.events:PageEvent" />
          <dep id="models:DevelopmentPlan" />
          <dep id="models:AppraisalDetail" />
          <dep id="org.alivepdf.fonts:Style" />
          <dep id="mx.collections:ArrayCollection" />
          <dep id="org.alivepdf.encoding:JPEGEncoder" />
          <dep id="flash.events:EventDispatcher" />
          <dep id="org.alivepdf.layout:Mode" />
          <dep id="mx.formatters:NumberBaseRoundType" />
          <dep id="org.alivepdf.data:Grid" />
          <dep id="org.alivepdf.data:GridColumn" />
          <dep id="org.alivepdf.colors:RGBColor" />
          <dep id="modules.reports:PmsAppraisalReport_icon_report_ok" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/saving/Method)" mod="1264282452000" size="550" optimizedsize="266">
          <def id="org.alivepdf.saving:Method" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/events/ProcessingEvent)" mod="1264282454000" size="876" optimizedsize="444">
          <def id="org.alivepdf.events:ProcessingEvent" />
          <pre id="flash.events:Event" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/encoding/Base64)" mod="1264282452000" size="3130" optimizedsize="1666">
          <def id="org.alivepdf.encoding:Base64" />
          <pre id="Object" />
          <dep id="flash.utils:ByteArray" />
          <dep id="AS3" />
          <dep id="Math" />
          <dep id="flash.utils:Dictionary" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/layout/Orientation)" mod="1264282456000" size="546" optimizedsize="258">
          <def id="org.alivepdf.layout:Orientation" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/fonts/CodePage_KOI8U)" mod="1264282452000" size="748" optimizedsize="247">
          <def id="org.alivepdf.fonts:CodePage_KOI8U" />
          <pre id="mx.core:ByteArrayAsset" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/layout/Align)" mod="1308306276705" size="650" optimizedsize="319">
          <def id="org.alivepdf.layout:Align" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\locale\en_US\rpc_rb.swc$locale/en_US/messaging.properties" mod="1330491712835" size="6422" optimizedsize="6242">
          <def id="fr_FR$messaging_properties" />
          <def id="en_US$messaging_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/fonts/FontFamily)" mod="1264282452000" size="1307" optimizedsize="801">
          <def id="org.alivepdf.fonts:FontFamily" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/images/gif/events/FrameEvent)" mod="1264282454000" size="805" optimizedsize="391">
          <def id="org.alivepdf.images.gif.events:FrameEvent" />
          <pre id="flash.events:Event" />
          <dep id="AS3" />
          <dep id="org.alivepdf.images.gif.frames:GIFFrame" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\src\modules\reports\PmsBlankReport.as" mod="1302697108152" size="5236" optimizedsize="3486">
          <def id="modules.reports:PmsBlankReport" />
          <pre id="modules.reports:BasePmsReport" />
          <pre id="interfaces:IDisposable" />
          <dep id="mx.collections:ArrayCollection" />
          <dep id="org.alivepdf.layout:Align" />
          <dep id="org.alivepdf.fonts:Style" />
          <dep id="models:Item" />
          <dep id="models:Family" />
          <dep id="AS3" />
          <dep id="mx.utils:StringUtil" />
          <dep id="models:Scoring" />
          <dep id="Math" />
          <dep id="modules.models:PdfItem" />
          <dep id="org.alivepdf.colors:RGBColor" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/images/gif/events/GIFPlayerEvent)" mod="1264282454000" size="806" optimizedsize="373">
          <def id="org.alivepdf.images.gif.events:GIFPlayerEvent" />
          <pre id="flash.events:Event" />
          <dep id="AS3" />
          <dep id="flash.geom:Rectangle" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\locale\en_US\automation_rb.swc$locale/en_US/collections.propert ies" mod="1330491712183" size="1555" optimizedsize="1484">
          <def id="en_US$collections_properties" />
          <def id="fr_FR$collections_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/images/gif/player/GIFPlayer)" mod="1264282454000" size="5820" optimizedsize="3442">
          <def id="org.alivepdf.images.gif.player:GIFPlayer" />
          <pre id="flash.display:Bitmap" />
          <dep id="flash.events:Event" />
          <dep id="RangeError" />
          <dep id="org.alivepdf.images.gif.events:TimeoutEvent" />
          <dep id="flash.utils:ByteArray" />
          <dep id="flash.display:BitmapData" />
          <dep id="flash.net:URLRequest" />
          <dep id="org.alivepdf.images.gif.events:GIFPlayerEvent" />
          <dep id="flash.errors:ScriptTimeoutError" />
          <dep id="org.alivepdf.images.gif.frames:GIFFrame" />
          <dep id="flash.events:IOErrorEvent" />
          <dep id="org.alivepdf.images.gif.errors:FileTypeError" />
          <dep id="Error" />
          <dep id="org.alivepdf.images.gif.events:FrameEvent" />
          <dep id="flash.net:URLLoaderDataFormat" />
          <dep id="AS3" />
          <dep id="org.alivepdf.images.gif.events:FileTypeEvent" />
          <dep id="flash.utils:Timer" />
          <dep id="flash.events:TimerEvent" />
          <dep id="flash.net:URLLoader" />
          <dep id="org.alivepdf.images.gif.decoder:GIFDecoder" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/decoding/Filter)" mod="1264282454000" size="586" optimizedsize="296">
          <def id="org.alivepdf.decoding:Filter" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/fonts/CodePage_CP1257)" mod="1264282452000" size="754" optimizedsize="249">
          <def id="org.alivepdf.fonts:CodePage_CP1257" />
          <pre id="mx.core:ByteArrayAsset" />
          <dep id="AS3" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\libs\framework.swc(mx/events/RSLEvent)" mod="1308335063487" size="1272" optimizedsize="735">
          <def id="mx.events:RSLEvent" />
          <pre id="flash.events:ProgressEvent" />
          <dep id="flash.events:Event" />
          <dep id="flash.net:URLRequest" />
          <dep id="AS3" />
          <dep id="flash.display:LoaderInfo" />
          <dep id="mx.core:mx_internal" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\libs\framework.swc(mx/utils/StringUtil)" mod="1308335055408" size="1699" optimizedsize="953">
          <def id="mx.utils:StringUtil" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="mx.core:mx_internal" />
          <dep id="RegExp" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/images/gif/frames/GIFFrame)" mod="1264282454000" size="609" optimizedsize="278">
          <def id="org.alivepdf.images.gif.frames:GIFFrame" />
          <pre id="Object" />
          <dep id="flash.display:BitmapData" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/images/JPEGImage)" mod="1265035468000" size="2427" optimizedsize="1489">
          <def id="org.alivepdf.images:JPEGImage" />
          <pre id="org.alivepdf.images:PDFImage" />
          <dep id="org.alivepdf.decoding:Filter" />
          <dep id="flash.utils:ByteArray" />
          <dep id="AS3" />
          <dep id="org.alivepdf.images:ColorSpace" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/export/Export)" mod="1264282452000" size="453" optimizedsize="203">
          <def id="org.alivepdf.export:Export" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\libs\framework.swc(mx/resources/LocaleSorter)" mod="1308335066940" size="10128" optimizedsize="6820">
          <def id="mx.resources:LocaleSorter" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="mx.core:mx_internal" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/links/Outline)" mod="1264282450000" size="859" optimizedsize="424">
          <def id="org.alivepdf.links:Outline" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\locale\en_US\framework_rb.swc$locale/en_US/logging.properties" mod="1330491712230" size="898" optimizedsize="851">
          <def id="fr_FR$logging_properties" />
          <def id="en_US$logging_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/encoding/JPEGEncoder)" mod="1264282452000" size="13095" optimizedsize="7727">
          <def id="org.alivepdf.encoding:JPEGEncoder" />
          <pre id="Object" />
          <dep id="org.alivepdf.encoding:BitString" />
          <dep id="flash.display:BitmapData" />
          <dep id="flash.utils:ByteArray" />
          <dep id="AS3" />
          <dep id="org.alivepdf.encoding:IntList" />
          <dep id="org.alivepdf.encoding:IntBlock" />
          <dep id="flash.filters:ColorMatrixFilter" />
          <dep id="flash.geom:Point" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\locale\en_US\automation_agent_rb.swc$locale/en_US/styles.proper ties" mod="1330491712260" size="445" optimizedsize="408">
          <def id="en_US$styles_properties" />
          <def id="fr_FR$styles_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/display/Display)" mod="1264282454000" size="618" optimizedsize="310">
          <def id="org.alivepdf.display:Display" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\src\modules\reports\PmsGraphsReport.as" mod="1302697108143" size="3971" optimizedsize="2709">
          <def id="modules.reports:PmsGraphsReport" />
          <pre id="modules.reports:BasePmsReport" />
          <pre id="interfaces:IDisposable" />
          <dep id="mx.collections:ArrayCollection" />
          <dep id="org.alivepdf.layout:Align" />
          <dep id="org.alivepdf.fonts:Style" />
          <dep id="org.alivepdf.layout:Mode" />
          <dep id="Date" />
          <dep id="AS3" />
          <dep id="org.alivepdf.layout:Position" />
          <dep id="modules.models:PdfItem" />
          <dep id="org.alivepdf.layout:Resize" />
          <dep id="uccore.utils:DateParser" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/fonts/CodePage_CP1258)" mod="1264282452000" size="754" optimizedsize="249">
          <def id="org.alivepdf.fonts:CodePage_CP1258" />
          <pre id="mx.core:ByteArrayAsset" />
          <dep id="AS3" />
        </script>
        <script name="D:\Program Files\Adobe Flash Builder 4.6\sdks\3.6.0\frameworks\libs\framework.swc(mx/resources/IResourceManager)" mod="1308335067002" size="3595" optimizedsize="1031">
          <def id="mx.resources:IResourceManager" />
          <pre id="flash.events:IEventDispatcher" />
          <pre id="Object" />
          <dep id="flash.system:SecurityDomain" />
          <dep id="AS3" />
          <dep id="mx.resources:IResourceBundle" />
          <dep id="flash.system:ApplicationDomain" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\src\modules\helpers\CustPDF.as" mod="1308544824310" size="1422" optimizedsize="942">
          <def id="modules.helpers:CustPDF" />
          <pre id="org.alivepdf.pdf:PDF" />
          <dep id="org.alivepdf.layout:Size" />
          <dep id="org.alivepdf.layout:Align" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/images/ImageFormat)" mod="1264282454000" size="552" optimizedsize="248">
          <def id="org.alivepdf.images:ImageFormat" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/colors/SpotColor)" mod="1264282454000" size="646" optimizedsize="313">
          <def id="org.alivepdf.colors:SpotColor" />
          <pre id="org.alivepdf.colors:IColor" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="org.alivepdf.colors:CMYKColor" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/fonts/CodePage_CP1251)" mod="1264282452000" size="753" optimizedsize="249">
          <def id="org.alivepdf.fonts:CodePage_CP1251" />
          <pre id="mx.core:ByteArrayAsset" />
          <dep id="AS3" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\src\modules\PmsReport.as" mod="1316150559806" size="1365" optimizedsize="895">
          <def id="modules:PmsReport" />
          <pre id="modules.interfaces:IUniModule" />
          <pre id="mx.modules:ModuleBase" />
          <pre id="interfaces:IDisposable" />
          <dep id="modules.reports:PmsAppraisalReport" />
          <dep id="modules.reports:PmsBlankReport" />
          <dep id="AS3" />
          <dep id="modules.reports:PmsAnnexReport" />
          <dep id="modules.interfaces:IPdfReport" />
          <dep id="flash.utils:getDefinitionByName" />
          <dep id="modules.reports:PmsGraphsReport" />
          <dep id="modules.reports:Pms360Report" />
          <dep id="modules.reports:PmsMergedReferenceReport" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/data/Grid)" mod="1308555326771" size="2876" optimizedsize="1409">
          <def id="org.alivepdf.data:Grid" />
          <pre id="Object" />
          <dep id="org.alivepdf.export:Export" />
          <dep id="flash.utils:ByteArray" />
          <dep id="org.alivepdf.serializer:ISerializer" />
          <dep id="AS3" />
          <dep id="org.alivepdf.export:CSVExport" />
          <dep id="org.alivepdf.colors:IColor" />
        </script>
        <script name="D:\Dev\Flex 4.6\my_project\libs\AlivePDF.swc(org/alivepdf/encoding/

  • Error #1063: Argument count mismatch on "filename"

    Hi, all. I keep getting an error I cannot seem to solve. Although it does not seem to influence the behavior of my file, I don't know if it will in the future.
    ArgumentError: Error #1063: Argument count mismatch on "filename"::MainTimeline/"thisfunction"(). Expected 0, got 1.
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at fl.transitions::Tween/set time()
    at fl.transitions::Tween/nextFrame()
    at fl.transitions::Tween/onEnterFrame()
    I've already looked up the error, and it's true, there is no argument assigned within the "()" of my function, but I don't know what to put since it's a function that applies to multiple buttons and is called upon in another function. A similar function doesn't return this error. When I put "e:Event" within the "()" it returns "error 1136: Incorrect number of arguments.  Expected 1.

    This type of thing can often happen if you are calling a function from an event listener, as well as directly.
    When an event listener triggers a function it passes an object, of the listener type (MouseEvent, Event, VideoEvent, etc) to the function.
    You say that button presses trigger it, which leads me to believe that you should be watching for a MouseEvent.
    So:
    function thisfunction(e:MouseEvent){
    Furthermore, if you are calling it directly, you need to do 1 of 2 things.
    1. You can send a MouseEvent to it (so, thisfunction(new MouseEvent(MouseEvent.CLICK));
    2. You can set a default value for the argument, allowing 0 to be passed (so,   function thisfunction(e:MouseEvent = null){    )
    If neither of these suggestions work, please post the code so a more thorough look can be performed.

Maybe you are looking for

  • Role of abaper's in ALE/IDoc's

    Hell all I am new for ALE/Idoc's . can anybody tell what is the role of abaper's in ALE/Idoc's.

  • Select multiple value in a where clause

    hello, im using developer 2000. suppose I have several values in a data grid. I want to use all of them in a where clause using IN operator or something. anybody knows how to do that. what I do is always insert all values in the grid into a temporary

  • Creating environment in solution manager 4.0

    I have been assigned to create a an environment within Solution Manager under Business Process however I do not know how to do this, can somebody please advice me on how to do this or refer me to the correct guide or CBT. Any help would be much appri

  • Cannot use my account its stuck at 80%

    I can't complete my profile it says IM 80% finished and need to merge my Microsoft and old Skype account to Finnish but I can find anywhere in my profile were it will let me or instructions on where to do so!!!!

  • Dynamically removing a component button...

    Sorry if this question sounds stupid/easy, but I'm blanking. How do I use AS to dynamically remove a component button that was dragged out onto the stage?... Thanks!...