Conflict exists with another time entry

Hi, a user tries to submit a vacation leave for April 1 2009 in ESS and gets the following error:
Conflict exists with another time entry from 16.12.2008 to 19.12.2008
I checked her infotype 2001 records and the there are no time entry for April 1 2009
How come the error message is saying the conflict is with a date in 2008 when she is entering a vacation request for 2009.
Any suggestions how to resolve this?
Thanks.

there is an absence from 12/19/2008 to 12/26/2008 but it was processed successfully so there shouldn't be any conflict there but the system seems to be thinking there is.
Another thing - the absence for 12/19 to 12/26 is not a vacation but sickness with certificate.  The user is trying to do a vacation time for April 14 and system is saying it conflicts with 12/16 to 12/19 dates (which there weren't any dates in infotype 2001).

Similar Messages

  • ESS - Time - Collision with another Time Entry

    Dear Sir,
    We have an Attendance Maintained (2002) for emp X today.
    When we apply for leave on same day (Absence - 2001) through PA30 System over writes the entry.
    (Not a problem)
    While we apply for leave throught ESS we are getting the error "Collision with another Time Entry" .
    Please let us know what all changes are to be done so that the system can accept the absence on same day on which attendance is there.
    Thanks & Regards
    Param

    Hi,
    1st check the Time constrain for the infoype with help of the HR functional consultant, try to make entry by Tcode PA30 if itu2019s a successfully done.
    Check the configuration by "PTARQ" Customizing options.
    Check the T-code "PTARQ" in that select "Post Document " in the Post Document selection screen 1st click upon the "Test Run" and then execute see the data is proper or not, Once you clear with the DATA is correct then again Run same report without clicking upon " Test Run" once you done with the posting then check the same by T-code "PA30u201D.
    Let me know the details

  • 1151: A conflict exists with definition timer in namespace internal.

    I am starting to see error on following code: private var timer:Timer;
    And when I change it to private var timerxxxxxx:Timer;
    The error message changed to "A Conflict exists with definition timerxxxxxx in namespace internal.
    I have googled and read some posts suggesting uncheck something under "Publish Setting". I am using "Flash Builder 4"(based on Eclipse) now and don't see that setting anywhere.
    Any help is highly appreciated.

    This example seems to work fine for me:
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                      xmlns:s="library://ns.adobe.com/flex/spark">
         <fx:Script>
              <![CDATA[
                   private var timer:Timer;
                   private var timerxxxxxx:Timer;
              ]]>
         </fx:Script>
    </s:Application>
    Does that work for you?

  • Collision with Another Time Entry

    Hi all,
    User is getting above error while he is trying to book his annual leave.
    He has 25 days of quota left in IT2006.
    Besides i checked in RPTARTDBVIEW there is only one leave in SENT status which belongs to the previous year.
    User is unable to book any leaves for randomly any period.
    Please help
    Deepali

    Hi Deepali,
    First check in the collision message, what date is appearing. Then check if for that particualr date and entry already exists in the IT2001 or IT2002.  If yes then check in report RPTARQDBVIEW if there is a query in the sent status which corresponds to that particualr collinding date. If yes, then from report RPTARQDBDEL, delete that particular entry.  Remember when executing the report RPTARQDBDEL uncheck the test run.
    PS: you can delete all the queries with status sent which are already existing in the IT2001 or IT2002.
    thanks,
    ayyaps

  • Prevent error "Collision with another time entry"

    Hi,
    This is one error we are facing regularly in the system. I am aware
    about fixes but we dont want this error to keep recurring in the system.The main reason for the error is because there is a posted leave for
    the user in IT2001 and for the same date there is one open leave in the
    system. For eg, If the user has applied for a leave which has not been
    approved by the manager and his substitute for long and the HR
    administrator cretaes IT2001 record directly from the back-end. When
    the HR administrator should be alerted as to the presence of an open
    leave in the leave database when he is trying to create IT2001 record
    from the back end.
    The second scenario is as follows:
    Suppose the user was on leave and has come back to office and has
    raised a leave for a particular day. But before the leave request can
    reach the manager's inbox, the manager has applied a leave on-behalf of
    the user for that date from the record working time which has been
    poseted directly to the IT2001 of the user. Then also, when the manager
    is applying the leave, he should get an error message informing him of
    the leave request that has been sent.
    Can you please let me know whether any such alert is present in the
    system which can be switched on to let check the leave database before
    posting in the IT2001.
    I am aware that this problem can be resolved by applying SNote 1288919, but i want to preven this error from occurring.
    Thanks and Regards,
    Pinki

    Dear Pinki,
    You are correct the problem can be resolved by applying the SNote 1288919.But I don't think such alert system is available in standard functionality.
    Thanks,
    Dora.

  • 1151: A conflict exists with definition direction in namespace internal.

    Hello everyone, i'm a newbie in flash so be cool and patient...
    for my final project in college i'm doing a site in which i have scroll buttons (Scroll up and downs)..i use those buttons on more than one page and differently...so i copy pasted the same actions of one pasted for the other and changed the names accordingly..and i got this error...i researched for a solution and found out that i can't put to "var" that are the same...so for the second i took out...gona show u how my codes were and how they are now :
    b12.buttonMode=true;
    b22.buttonMode=true;
    b12.addEventListener(MouseEvent.MOUSE_DOWN, scrollDown);
    b22.addEventListener(MouseEvent.MOUSE_DOWN, scrollUp);
    b12.addEventListener(MouseEvent.MOUSE_UP, stopScroll);
    b22.addEventListener(MouseEvent.MOUSE_UP, stopScroll);
    var direction = "";
    txtgam.addEventListener(Event.ENTER_FRAME, keepScrolling);
    function keepScrolling(e)
              if(direction == "down") {
                        if(txtgam.y > -400){
                                  txtgam.y = txtgam.y - 10;
              if(direction == "up") {
                        if(txtgam.y < 25){
                                  txtgam.y = txtgam.y +25;
    function scrollUp(e)
              direction = "down";
    function stopScroll(e)
              direction = "";
    function scrollDown(e)
              direction = "up";
    to change i just erased "var" in var direction ="";
    now i got another problem :
    Scene 1, Layer 'actions', Frame 147, Line 42
    1021: Duplicate function definition.
    about
    scrollUp       stopScroll         scrollDown
    so i changed and put 2 after each word and i got another problem :
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Flashfinal_fla::MainTimeline/keepScrolling()
    please help

    this is the code now....without var it worked but gave me the #1009..now with var it's giving me
    Scene 1, Layer 'actions', Frame 147, Line 17
    1151: A conflict exists with definition direction in namespace internal.
    b12.buttonMode=true;
    b22.buttonMode=true;
    b12.addEventListener(MouseEvent.MOUSE_DOWN, scrollDown);
    b22.addEventListener(MouseEvent.MOUSE_DOWN, scrollUp);
    b12.addEventListener(MouseEvent.MOUSE_UP, stopScroll);
    b22.addEventListener(MouseEvent.MOUSE_UP, stopScroll);
    var direction = "";
    txtgam.addEventListener(Event.ENTER_FRAME, keepScrolling2);
    function keepScrolling2(e)
              if(direction == "down") {
                        if(txtgam.y > -270){
                                  txtgam.y = txtgam.y - 10;
              if(direction == "up") {
                        if(txtgam.y < 25){
                                  txtgam.y = txtgam.y +25;
    function scrollUp2(e)
              direction = "down";
    function stopScroll2(e)
              direction = "";
    function scrollDown2(e)
              direction = "up";

  • How do I insert a section with another time signature than the one im inser

    How do I insert a section with another time signature than the one im inser

    Yeah I've been trying to figure this out as well, for example... my song might be 90 bpm and I want to program another track using midi but have it play at 180 bpm. The only way I've found to work around this is to write my 180 bpm part make a sample of this and then loop this into the 90 bpm song.

  • 1151: A conflict exists with definition i in namespace internal

    I've double checked my codes but can't seem to find the solution to the problem. 1151: A conflict exists with definition i in namespace internal this keeps coming up and I don't know how to get around it.
    It's meant for this bit of code:
    for (var i: = 0; i < wordLength; i ++)
         myDisplay [i] = "_";
         displayOut += " " + myDisplay[i];
    Help please.
    Code for the script as a whole is below just in case.
    import flash.text.TextField;
    import flash.text.TextFormat;
    var words:Array = ['BUTTERFLY', 'GOGGLES'];
    var number: Number;
    var inProgress:String = new String;
    var wordLength:Number;
    var myDisplay:Array = new Array;
    var displayOut: String = new String;
    var rightCount:Number = 0;
    var used : String = new String;
    var guess : String = new String;
    var guessLetter: String = new String;
    var correctGuess:Boolean = false;
    number = (Math.floor(Math.random() * 6));
    inProgress = words [number];
    wordLength = inProgress.length;
    for (var i: = 0; i < wordLength; i ++)
              myDisplay [i] = "_";
              displayOut += " " + myDisplay[i];
    var answerText: TextField = new TextField ();
    var myFormat : TextFormat = new TextFormat ();
              myFormat.font = "Janda Curlygirl Chunky";
              myFormat.color = 0X336600;
              myFormat.size = 22;
    addChild(answerText);
    this.answerText.x = 375;
    this.answerText.y = 100;
    this.answerText.width = 250;
    this.answerText.text = displayOut;
    answerText.setTextFormat(myFormat);
    this.guess_btn.addEventListener(MouseEvent.CLICK, playMe);
    function playMe (Event:MouseEvent) : void
                        guessLetter = this.letterIn_txt.text.toUpperCase();
                        for (var i = 0 ; i < wordLength; i++)
                                  if (inProgress.charAt == guessLetter)
                                            trace ("true");
                                            myDisplay [i] = guessLetter;
                                            correctGuess = true;
                                            rightCount++;
    if (correctGuess == false)
                        used += this.letterIn_txt.text;
                        this.usedLetter_txt.text = used;
                        this.hang_mc.gotoAndStop('paths');
              else
                        correctGuess = false;
                        displayOut = "";
    for (var c=; c < wordLengthl; c++)
                        displayOut += " " + myDisplay[c];
    this.answerText.text = displayOut;
    this.answerText.text. set TextFormat(myFormat)
    this.letterIn_txt.text =" ";

    Okay I've made these changes but still have errors...this seems to still be the problem:
    for (var i:int=0; i < wordLength; i ++)
    Help please.
    import flash.text.TextField;import flash.text.TextFormat;
    var words:Array = ;var number: Number;var inProgress:String = new String;var wordLength:Number;var myDisplay:Array = new Array;var displayOut: String = new String;var rightCount:Number = 0;var used : String = new String;var guess : String = new String;var guessLetter: String = new String;var correctGuess:Boolean = false;
    number = (Math.floor(Math.random() * 6));inProgress = words ;wordLength = inProgress.length;
    for (var i:int = 0; i < wordLength; i ++){     myDisplay = "_";     displayOut += " " + myDisplay[i];}
    var answerText: TextField = new TextField ();var myFormat : TextFormat = new TextFormat ();     myFormat.font = "Janda Curlygirl Chunky";     myFormat.color = 0X336600;     myFormat.size = 22;     addChild(answerText);answerText.x = 375;answerText.y = 100;answerText.width = 250;answerText.text = displayOut;
    answerText.setTextFormat(myFormat);
    this.guess_btn.addEventListener(MouseEvent.CLICK, playMe);
    function playMe (Event:MouseEvent) : void     {          guessLetter = this.letterIn_txt.text.toUpperCase();          for (var i:int = 0 ; i < wordLength; i+)          {               if (inProgress.charAt == guessLetter)               {                    trace ("true");                    myDisplay = guessLetter;                    correctGuess = true;                    rightCount+;               }          }
    if (correctGuess == false)     {           used = this.letterIn_txt.text;          this.usedLetter_txt.text = used;          this.hang_mc.gotoAndStop('paths');     }     else          correctGuess = false;                    displayOut = "";          for (var c:int= 0; c < wordLength; c+)     {          displayOut += " " + myDisplay[c];     }
    answerText.text = displayOut;answerText.setTextFormat(myFormat)letterIn_txt.text =" "; }
    Date: Fri, 8 Jun 2012 09:04:14 -0600
    From: [email protected]
    To: [email protected]
    Subject: 1151: A conflict exists with definition i in namespace internal
        Re: 1151: A conflict exists with definition i in namespace internal
        created by dmennenoh in ActionScript 3 - View the full discussion
    You have:for (var i: = 0; i < wordLength; i ++) With i: but no type after it. Use: for (var i:int = 0; i < wordLength; i +) Later you also have: for (var c=; c < wordLengthl; c+) you're missing the value to initialze c and you have wordLengthl not wordLength
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4476474#4476474
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4476474#4476474. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in ActionScript 3 by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • If I create a new appointment in iCloud, I found it in my device, but with another time. Any idea why?

    If I create a new appointment in iCloud, I found it in my device, but with another time. Any idea why?

    Most likely because your iPhone and your iCloud account are set to two different time zones.
    In the iCloud web interface, click your account name at the top right.  This will pop up a window that lets you configure the time zone.  You may also need to enable or disable time zone support within the Calendar (Settings -> Preferences -> Advanced).
    On your iPhone, go to Settings -> Mail, Contacts, Calendars -> Time Zone Support.  Turn it off to let your iPhone automatically determine your time zone, or turn it on and select a time zone.

  • ICal ichanges the time of the events with another time zone when sync

    I've changed my time zone in my iphone during a trip and when I came back, I reset my actual time zone, then, I syncronized it with my lap and they show different times for the same event.
    Events added directly in my iphone stay the same in it, but appear in another time in my computer, even though I have verified both of them have the same time zone. 
    Events added directly on my lap stay the same in it but appear wrong in my iphone.
    Thanks,

    Perhaps the answer in this thread will help:
    https://discussions.apple.com/message/7950396#7950396
    Understanding and Using Time Zone Support:
    http://support.apple.com/kb/HT4504

  • How to merge existing itunes library with another time machine volume?

    hi all,
    i am 2 macs, an iMac and a MacBook - both running Snow Leopard 10.6.3 and both running itunes 9.
    is possible to merge the itunes library on the MacBook onto the iMac via my MacBook's Time Machine volume? i do not have my MacBook with me at this moment cos' i have sent it for diagnostic and repair. i have the latest itunes library backups on my MacBook's Time Machine.
    hope to hear some valuable pointers. Thank you!

    mook73 wrote:
    is possible to merge the itunes library on the MacBook onto the iMac via my MacBook's Time Machine volume?
    i have never attempted such an operation, so no step-by-step guide !
    you will be able to restore the other Mac's library to the iMac. go here and follow the instructions: http://web.me.com/pondini/Time_Machine/17.html. restore whatever you need to a temporary location, i.e. the desktop.
    if you only want the media files, just restore the iTunes music folder. when restored, use +add to library+ from the file menu or just drag the folder you restored to the +automatically add to iTunes+ folder inside the iTunes folder.
    if you also want playlists, playcounts, and ratings, you should restore the entire iTunes folder.
    take a look @ PowerTunes. this app should enable you to merge the two libraries.
    good luck !
    JGG

  • Extend Time Capsule network with another Time Capsule

    Hi guys.
    Like the title says: I want to extend the wireless network of the dual-band Time Capsule (2TB) with a first generation Time Capsule (500GB).
    So, I opened AirPort Utility, selected the older model and completed the logical steps (extend another network wirelessly), but it doesn't restart. It hangs there, with the orange light blinking...
    What should I do to make it work?
    Thanks.

    Welcome to the discussions!
    Check your settings as follows:
    On the 2TB Time Capsule, open AirPort Utility - Click Manual Setup
    Click the Wireless tab below the row of icons
    Wireless Mode = Create a wireless network
    There must be a check mark entered next to Allow this network to be extended
    On the 500GB Time Capsule, open AirPort Utility and click Manual Setup
    Click the Wireless tab
    Wireless Mode = Extend a wireless network
    Wireless Network Name = Same name as your 2TB Time Capsule
    Enter a check mark next to Allow wireless clients
    Wireless Security = Same setting as your 2 TB Time Capsule
    Wireless Password = Same password as your 2 TB Time Capsule
    Update to save settings

  • How to backup one Time Capsule with another Time Capsule?

    I have two Time Capsules and a Mac Mini. The first Time Capsule (TC1) is plugged by ethernet cable directly to my Mac Mini. It is also set up to provide my home with a wireless network. The second Time Capsule (TC2) is upstairs and connected to this network wirelessly.
    I am using TC1 to store all my photos and iTunes music library because the Mac Mini hard drive is too small, and I want to setup TC2 to backup the Mac Mini and certain specific folders on TC1.
    I've started Time Machine up and selected TC2 as the backup drive but it only seems to backup my Mac Mini hard drive and not the contents of TC1. There doesn't appear to be any way to tell Time Machine to backup TC1 either.
    Can anyone offer a solution?
    P.S. I'm a Mac newbie so please humour me if I have asked anything completely obvious!
    Message was edited by: Carl Bradbury

    Final solution:
    I setup my first TC to use as a Time Machine backup of my Mac Mini, connected via an ethernet cable. It broadcasts a wireless-n network that my other laptops connect to.
    I then bought Intego's Personal Backup to make periodic copies of the important folders (iPhoto library, iTunes library, etc) over to my second Time Capsule, which is creating its own private wireless-g network. The Mac Mini's airport is set to connect to this private network.

  • Error 1151: A conflict exists with definition win in namespace internal

    Hello,
    I am trying to create a link to two popup windows in my flex
    application with the following code.
    <?xml version="1.0" encoding="utf-8"?>
    <!--Application Initialization -->
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" width="850" height="750"
    cornerRadius="10" borderColor="#000000"
    backgroundGradientColors="[#1b3434, #000000]">
    <mx:Model id="IMSAI_client">
    <client>
    <clientName>IMSAI Microcomputers and Fischer-Freitas
    Company</clientName>
    <industry>Computer Manufacturing</industry>
    <description>Information
    Technology</description>
    </client>
    </mx:Model>
    <!--IMSAI Popup-->
    <mx:Script>
    <![CDATA[
    import mx.managers.PopUpManager;
    [Bindable]
    18. private var win:IMSAI;
    private function init():void{}
    private function createPopup():void{
    23. win=IMSAI(PopUpManager.createPopUp(this,IMSAI,true));
    win.title = 'IMSAI.Net';
    win.x = -500;
    win.y = 0;
    customMove.end();
    customMove.play();
    ]]>
    </mx:Script>
    <mx:Style>
    TitleWindow {
    borderStyle:solid;
    borderThickness:2;
    </mx:Style>
    <mx:Parallel id="customMove" target="{win}">
    <mx:Move duration="2000" xTo="{(stage.width - win.width)
    / 2}" yTo="{(stage.height - win.height) / 2}" />
    <mx:WipeDown duration="2000" />
    </mx:Parallel>
    <!--New Popup-->
    <mx:Script>
    <![CDATA[
    import mx.managers.PopUpManager;
    [Bindable]
    53. private var win:Horse;
    private function inits():void{}
    private function createPopups():void{
    win=Horse(PopUpManager.createPopUp(this,Horse,true));
    win.title = 'Horse';
    win.x = -500;
    win.y = 0;
    customMove.end();
    customMove.play();
    ]]>
    </mx:Script>
    <mx:Style>
    TitleWindow {
    borderStyle:solid;
    borderThickness:2;
    </mx:Style>
    <mx:Parallel id="customMove2" target="{win}">
    <mx:Move duration="2000" xTo="{(stage.width - win.width)
    / 2}" yTo="{(stage.height - win.height) / 2}" />
    <mx:WipeDown duration="2000" />
    </mx:Parallel>
    I verified that the code works with one window, but when I
    try to use the code to link to a second window I get the 1151:
    error message during compile on line 53. It seems to center around
    win:Horse. win:Horse in intended for the second popup, much like
    win:IMSAI is intended for the first popup. I changed the names of
    the variables in the second half of the code so it would not
    produce the same window or call the same variables. However, when I
    change the names in the second half of the code that is for a
    second popup, I get three errors for the top half of the code
    instead of the single 1151 error for all of the code.
    When I change the name of the variables for the second half
    to prevent it from calling the same window, I get the following
    errors in the first half of the code.
    Line:18: 1046: Type was not found or was not a compile-time
    contact:IMSAI.
    Line 23: 1180: Call to a possibly undefined method: IMSAI
    Line 23: 1067: Implicit coersion of a value of the type
    mx:controls: Button to an unrelated class.
    However, when I leave everything the same in both halves, I
    only get the 1151 error on line 53.
    Help resolving this would be greatly appreciated. Please be
    aware that without the second half of code, the first half works
    perfectly fine. It is just when you try to use the same code again
    to generate a popup with a different variable name that it gives
    problems. Thank you again.

    Hello,
    I am trying to create a link to two popup windows in my flex
    application with the following code.
    <?xml version="1.0" encoding="utf-8"?>
    <!--Application Initialization -->
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" width="850" height="750"
    cornerRadius="10" borderColor="#000000"
    backgroundGradientColors="[#1b3434, #000000]">
    <mx:Model id="IMSAI_client">
    <client>
    <clientName>IMSAI Microcomputers and Fischer-Freitas
    Company</clientName>
    <industry>Computer Manufacturing</industry>
    <description>Information
    Technology</description>
    </client>
    </mx:Model>
    <!--IMSAI Popup-->
    <mx:Script>
    <![CDATA[
    import mx.managers.PopUpManager;
    [Bindable]
    18. private var win:IMSAI;
    private function init():void{}
    private function createPopup():void{
    23. win=IMSAI(PopUpManager.createPopUp(this,IMSAI,true));
    win.title = 'IMSAI.Net';
    win.x = -500;
    win.y = 0;
    customMove.end();
    customMove.play();
    ]]>
    </mx:Script>
    <mx:Style>
    TitleWindow {
    borderStyle:solid;
    borderThickness:2;
    </mx:Style>
    <mx:Parallel id="customMove" target="{win}">
    <mx:Move duration="2000" xTo="{(stage.width - win.width)
    / 2}" yTo="{(stage.height - win.height) / 2}" />
    <mx:WipeDown duration="2000" />
    </mx:Parallel>
    <!--New Popup-->
    <mx:Script>
    <![CDATA[
    import mx.managers.PopUpManager;
    [Bindable]
    53. private var win:Horse;
    private function inits():void{}
    private function createPopups():void{
    win=Horse(PopUpManager.createPopUp(this,Horse,true));
    win.title = 'Horse';
    win.x = -500;
    win.y = 0;
    customMove.end();
    customMove.play();
    ]]>
    </mx:Script>
    <mx:Style>
    TitleWindow {
    borderStyle:solid;
    borderThickness:2;
    </mx:Style>
    <mx:Parallel id="customMove2" target="{win}">
    <mx:Move duration="2000" xTo="{(stage.width - win.width)
    / 2}" yTo="{(stage.height - win.height) / 2}" />
    <mx:WipeDown duration="2000" />
    </mx:Parallel>
    I verified that the code works with one window, but when I
    try to use the code to link to a second window I get the 1151:
    error message during compile on line 53. It seems to center around
    win:Horse. win:Horse in intended for the second popup, much like
    win:IMSAI is intended for the first popup. I changed the names of
    the variables in the second half of the code so it would not
    produce the same window or call the same variables. However, when I
    change the names in the second half of the code that is for a
    second popup, I get three errors for the top half of the code
    instead of the single 1151 error for all of the code.
    When I change the name of the variables for the second half
    to prevent it from calling the same window, I get the following
    errors in the first half of the code.
    Line:18: 1046: Type was not found or was not a compile-time
    contact:IMSAI.
    Line 23: 1180: Call to a possibly undefined method: IMSAI
    Line 23: 1067: Implicit coersion of a value of the type
    mx:controls: Button to an unrelated class.
    However, when I leave everything the same in both halves, I
    only get the 1151 error on line 53.
    Help resolving this would be greatly appreciated. Please be
    aware that without the second half of code, the first half works
    perfectly fine. It is just when you try to use the same code again
    to generate a popup with a different variable name that it gives
    problems. Thank you again.

  • 1152: A conflict exists with inherited definition flash.display:DisplayObject.x in namespace public.

    I am not receiving any errors when I check syntax but I am
    getting this meesgae when I go to publish.
    I am learning so if anyone one has a laymens answer I thank
    you in advance.
    Hugo

    You might have misnamed an object. For example, if you placed
    a TextField on
    the tiomeline and named it "name", it would conflict with the
    DisplayObject.name property.

Maybe you are looking for

  • How to find out open PO in SAP?

    Hi, I have a simple question? How to find out if the PO is open? Is there any field in any table in SAP which indicates this? Is there any report in SAP which gives list of all open PO in the system? Thanks, Pratik

  • How to set the default NetworkInterface for the default socket factory?

    Hi, I would like to know how to set the default network interface used by the JVM. I saw that you can specify the network interface when creating a socket. But my problem is that I dont want to change every socket creation in the application and even

  • What's the best Windows 8.1 tablet on the market?

    We are planning to expand our app to Windows 8.1 tablets. The Window Surface is pretty expensive. Can someone tell me what's the best alternative for the Surface? Thx!

  • Any Better EMail Program Out There for Macs?

    I used Eudora as my email program for 10 years and loved it. Unfortunately, it became very buggy on the Snow Leopard operating system. Entire mail boxes got corrupted. So, I had to find a new mail program. I was told that Apple Mail was the best and

  • Where can I find the Java wireless tutorial?

    hi all, where can I find the Java wireless tutorial? regards, Elvis