Server Group not working when one of Job Servers is down

I have a Server Group of two job servers. They have the same version 12.2.2.3 and are attached to the same Local Repository of version 12.2.2.0.
When I execute a batch job (from the Designer) and explicitly specify on which job server it should run, it works fine for either job server. Also, when I specify Batch Job execution on Server Group, it works fine.
However, when I shutdown one of the Job Servers, and then try to execute the job on Server Group, I'm getting two error messages, BODI-1111011 that one Job Server is down, and BODI-1111009 that another Job Server has failed.
At the same time, when I check the Server Group in the Management Console, it shows that the allegedly failed Job Server is in the status green.
That error is not reflected in a job server eveng log, nor there is anything written to webadmin log, not in the job trace (the latter isn't created at all).
Is there anything I can do at this point except raise a support message?

The issue was with different users for Local Repository in Admin and Job Server config. I discovered it when trying to run the job from Admin Console. Designer is probably not the best diagnostic tool for such kind of issues.

Similar Messages

  • Listener not working in one of the servers of the Standby site

    Hello,
    The system is a RAC with two servers working as Primary site, and two servers working as Standby site.
    Both servers of the Primary site are sending redo logs to one of the servers of the Standby site. The other server of the Standby site is not receiving any redo log.
    I have checked the listener.ora and the tnsnames.ora files of the server that is not receiving and it is well configured comparing it with the server that is receiving the redo logs.
    If I check the status of the listener: lsnrctl status listener_<node name>
    Both of the Standby servers look fine.
    But if I connect directly to the database...
    In the 1st server of the Standby, the IP appears:
    SQL> show parameter listener
    NAME TYPE VALUE
    local_listener string (ADDRESS = (PROTOCOL = TCP)(HOST = xxx.xxx.xxx.xxx)(PORT = xxxx))
    remote_listener string LISTENERS_DB
    Nevertheless, in the second server of the Standby site, the one that is not receiving the redo logs, the IP does not appear:
    SQL> show parameter listener
    NAME TYPE VALUE
    local_listener string (ADDRESS = (PROTOCOL = TCP)(HOST = )(PORT = xxxx))
    remote_listener string LISTENERS_DB
    I have found the following to reload the listener:
    Oracle# lsnrctl reload listener_`hostname`
    Oracle# lsnrctl reload listener_standby
    Has anyone tried this? Did it work? It can be run without affecting the sytem, Dataguard, replication..., right?
    If you have another idea to fix this, let me know please.
    Thank you ;)
    Edited by: user11281526 on 29-oct-2009 4:35
    Edited by: user11281526 on 30-oct-2009 7:36
    Edited by: user11281526 on 31-oct-2009 4:11

    If I see the status of the listener_standby in the second server of the Standby site, the one that it is not receiving redo logs, it looks like it is fine. Why?
    #lsnrctl status listener_standby
    LSNRCTL for Solaris: Version 10.1.0.4.0 - Production on dd-mm-yyyy hh:mm:ss
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=IP_second_server_standby)(PORT=xxxx)))
    STATUS of the LISTENER
    Alias listener_standby
    Version TNSLSNR for Solaris: Version 10.1.0.4.0 - Production
    Start Date dd-mm-yyyy hh:mm:ss
    Uptime xx days yy hr. zz min.
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /opt/oracle/product/10.1.0/db_1/network/admin/listener.ora
    Listener Log File /opt/oracle/product/10.1.0/db_1/network/log/listener_standby.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=IP_second_server_standby)(PORT=xxxx)))
    Services Summary...
    Service "DB1" has 1 instance(s).
    Instance "DB1", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    Edited by: user11281526 on 29-oct-2009 6:41
    Edited by: user11281526 on 29-oct-2009 6:42
    Edited by: user11281526 on 29-oct-2009 6:43

  • Dynamic record group not working when apostrophes are used

    Hi Everyone,
    I have developed a Form for the most part everything is working as expected. However, there is a search functionality that is giving me problems. The issue is that when the user enters search criteria for last_name that has an apostrophe (O'brian) the search lov doesn't get populated because the dynamic record group is not getting created when the string has an apostrophe (ie O'brian). I have a dynamic record group that takes the user's search criteria and populates an LOV on the screen with the records that matched their criteria.
    Here is the code that is behind my search button where the dynamic RG gets created. It works fine for all searches that don't contain an apostrophe. Btw, the Oracle Forms version is 10g.
    DECLARE
    p_where_debtor varchar2(2000);
    p_where_liab varchar2(2000);
    rg_id RecordGroup;
    v_query varchar2(2000) := null;
    rg_name varchar2(2000):= 'RG_LIAB_LST';
    errcode NUMBER;
    BEGIN
    IF :SEARCH.cd_nb is null and
    :SEARCH.cd_seq is null and
    :SEARCH.f_name is null and
    :SEARCH.l_name is null and
    :SEARCH.mi_name is null
    then
    display_message ('Search criteria must be entered');
    raise form_trigger_failure;
    END IF;
    v_query := 'SELECT last_name, first_name, middle_name, c_no, c_seq
    FROM TABLE_VW2 WHERE 1=1';
    /*Search criteria entered by user*/
    IF :SEARCH.l_name_srch IS NOT NULL THEN
    v_query := v_query||' AND UPPER(last_name) LIKE '''||UPPER(:SEARCH.l_name)||'%''';
    END IF;
    IF :SEARCH.f_name_srch IS NOT NULL THEN
    v_query := v_query||' AND UPPER(first_name) LIKE '''||UPPER(:SEARCH.f_name)||'%''';
    END IF;
    IF :SEARCH.mi_srch IS NOT NULL THEN
    v_query := v_query||' AND UPPER(middle_name) LIKE '''||UPPER(:SEARCH.mi_name)||'%''';
    END IF;
    IF :SEARCH.cdcs_nbr_srch IS NOT NULL THEN
    v_query := v_query||' AND UPPER(c_no) LIKE '''||UPPER(:SEARCH.cd_nb)||'%''';
    END IF;
    IF :SEARCH.cdcs_seq_srch IS NOT NULL THEN
    v_query := v_query||' AND UPPER(c_seq) LIKE '''||UPPER(:SEARCH.cd_seq)||'%''';
    END IF;
    /*Make sure record group doesn't exisit*/
    rg_id := Find_Group(rg_name);
    /*If it doesn't exist then create record group*/
    IF id_null(rg_id) THEN
    rg_id:= create_group_from_query(rg_name,v_query);
    END IF;
    IF NOT id_null (rg_id) THEN
    delete_group (rg_id);
    rg_id:= create_group_from_query(rg_name, v_query);
    END IF;
    errcode := Populate_Group(rg_id);
    Any help would be greatly appreciated.
    Thanks,
    Adrian

    For every item where an apostroph can occur, do a
    REPLACE(:BLOCK.ITEM, '''', '''''');

  • VPN server does not work when a second network adapter is enabled

    I have an Xserve providing DNS, filesharing, and VPN services on an office LAN. The server sits behind a gateway router and is set as a DMZ host.
    VPN has been working absoluely flawlessly on the server for some time. However, I've recently discovered that this all changes when the Xserve's second ethernet adapter is enabled.
    To illustrate:
    en0: static IP 192.168.2.250
    en1: disabled
    VPN works perfectly
    en0: static IP 192.168.2.250
    en1: static IP 192.168.2.251
    DNS settings unchanged, DMZ host unchanged
    VPN doesn't work
    The above is even true when attempting to connect internally.
    VPN is configured for L2TP, and when the second NIC is connected the VPN server logs the following (below). There are a number of other users of Lion Server users that seem to be experiencing the same log pattern, but there doesn't seem to be a definitive solution.
    I was wondering if anyone has any advice on how I could solve this problem? Is it possible to bind the VPN server to a specified network adapter?
    Thanks in advance for any help or ideas.
    (And to preempt the question of "why do you need to use both NICs", the two interfaces are to be used for load balancing. See https://discussions.apple.com/message/17655599?ac_cid=142432)
    Wed Feb 22 15:53:53 2012 : Directory Services Authentication plugin initialized
    Wed Feb 22 15:53:53 2012 : Directory Services Authorization plugin initialized
    Wed Feb 22 15:53:53 2012 : L2TP incoming call in progress from 'xxx.xxx.xxx.xxx'...
    Wed Feb 22 15:53:53 2012 : L2TP received SCCRQ
    Wed Feb 22 15:53:53 2012 : L2TP sent SCCRP
    2012-02-22 15:53:54 GMT          Incoming call... Address given to client = 192.168.2.229
    Wed Feb 22 15:53:54 2012 : Directory Services Authentication plugin initialized
    Wed Feb 22 15:53:54 2012 : Directory Services Authorization plugin initialized
    Wed Feb 22 15:53:54 2012 : L2TP incoming call in progress from 'xxx.xxx.xxx.xxx'...
    Wed Feb 22 15:53:54 2012 : L2TP received SCCRQ
    Wed Feb 22 15:53:54 2012 : L2TP sent SCCRP
    2012-02-22 15:53:56 GMT          Incoming call... Address given to client = 192.168.2.220
    Wed Feb 22 15:53:56 2012 : Directory Services Authentication plugin initialized
    Wed Feb 22 15:53:56 2012 : Directory Services Authorization plugin initialized
    Wed Feb 22 15:53:56 2012 : L2TP incoming call in progress from 'xxx.xxx.xxx.xxx'...
    Wed Feb 22 15:53:56 2012 : L2TP received SCCRQ
    Wed Feb 22 15:53:56 2012 : L2TP sent SCCRP
    2012-02-22 15:54:00 GMT          Incoming call... Address given to client = 192.168.2.221
    Wed Feb 22 15:54:00 2012 : Directory Services Authentication plugin initialized
    Wed Feb 22 15:54:00 2012 : Directory Services Authorization plugin initialized
    Wed Feb 22 15:54:00 2012 : L2TP incoming call in progress from 'xxx.xxx.xxx.xxx'...
    Wed Feb 22 15:54:00 2012 : L2TP received SCCRQ
    Wed Feb 22 15:54:00 2012 : L2TP sent SCCRP
    2012-02-22 15:54:04 GMT          Incoming call... Address given to client = 192.168.2.222
    Wed Feb 22 15:54:04 2012 : Directory Services Authentication plugin initialized
    Wed Feb 22 15:54:04 2012 : Directory Services Authorization plugin initialized
    Wed Feb 22 15:54:04 2012 : L2TP incoming call in progress from 'xxx.xxx.xxx.xxx'...
    Wed Feb 22 15:54:04 2012 : L2TP received SCCRQ
    Wed Feb 22 15:54:04 2012 : L2TP sent SCCRP
    2012-02-22 15:54:08 GMT          Incoming call... Address given to client = 192.168.2.226
    Wed Feb 22 15:54:08 2012 : Directory Services Authentication plugin initialized
    Wed Feb 22 15:54:08 2012 : Directory Services Authorization plugin initialized
    Wed Feb 22 15:54:08 2012 : L2TP incoming call in progress from 'xxx.xxx.xxx.xxx'...
    Wed Feb 22 15:54:08 2012 : L2TP received SCCRQ
    Wed Feb 22 15:54:08 2012 : L2TP sent SCCRP
    2012-02-22 15:54:12 GMT          Incoming call... Address given to client = 192.168.2.223
    Wed Feb 22 15:54:12 2012 : Directory Services Authentication plugin initialized
    Wed Feb 22 15:54:12 2012 : Directory Services Authorization plugin initialized
    Wed Feb 22 15:54:12 2012 : L2TP incoming call in progress from 'xxx.xxx.xxx.xxx'...
    Wed Feb 22 15:54:12 2012 : L2TP received SCCRQ
    Wed Feb 22 15:54:12 2012 : L2TP sent SCCRP
    2012-02-22 15:54:13 GMT             --> Client with address = 192.168.2.228 has hungup
    2012-02-22 15:54:14 GMT             --> Client with address = 192.168.2.229 has hungup
    2012-02-22 15:54:16 GMT             --> Client with address = 192.168.2.220 has hungup
    2012-02-22 15:54:20 GMT             --> Client with address = 192.168.2.221 has hungup
    2012-02-22 15:54:24 GMT             --> Client with address = 192.168.2.222 has hungup
    2012-02-22 15:54:28 GMT             --> Client with address = 192.168.2.226 has hungup
    2012-02-22 15:54:32 GMT             --> Client with address = 192.168.2.223 has hungup

    Try switching the order of the services in System Preferences > Network.
    Put the second one at the top.
    HTH,
    b.

  • Outgoing server does not work when I email

    I have set up my iPhone tu work with Hotmail and it works with the ingoing server but I can't send mails. When I try to send mails it says: The connection to the outgoing server smtp.live.com failed.
    Can anyone help.
    I am a premium hotmail user.

    The problem is probably the wrong host name. If you have an MSN account the outgoing server may be different than it is for Hotmail. If you log in to your web mail account and go to the Support page you should be able to find instructions to set up POP3 mail. In those instructions should be the host name, port, and any other settings you need.
    Usually you just enter the first part of your email address as the user name, but you should be able to confirm this in the POP3 setup instructions. If the user name alone doesn't work then try the full email address. Also, if you have a login name to MSN that is different from your email address you can try that also.
    Regarding the "<hostname>:25" entry, many people have found that email sends faster if you specify the port number; if you don't, the iPhone tries all possible ports which can take several minutes. This isn't your problem, but it is good practice to specify the port number. In versions before 1.1.1 the only way to do this was to put the port number after the host name, separated by a colon. In 1.1.1 there is a separate field for in in the Advanced settings.
    It would be helpful to know the error message you are getting when you try to send. That will determine whether the iPhone is not finding the server, or is finding it but the send is being rejected by the server.
    Keep at it; there is a way to get it to work.

  • Smart Group not working when assigning Card "is not member of"

    I'm trying to create a smart group in Address Book, that seems to be failing.
    What I'd like is a Smart Group where Cards NOT assigned to a certain other group are included in the Smart Group. However, the Smart Group isn't so smart ... in fact, it's coming up with completely the wrong cards. Any idea how I can make this function work?

    yes, there seems to be a bug with such smart groups. they often either don't work or make address book crash. there were a number of posts about it. I don't have a workaround for this, sorry. but I suggest you don't use such smart groups.

  • Formula calculation not work, when one inspection characteristic was set by formula

    In the inspection plan, set 0040 charac. "calc. charac." in control indicators, and the formula is "15.86/C0020*100".
    when the inspection lot was created, the 0040 charac. could be edit, and the formula title  "formula calculation not by SAP interpreter".
    However by the same basic data in QAS system,the formula title is "formula calculation by SAP interpreter", and the charac. couldnot be edit, only be claculated by the system.
    Anybody know why this error occurred?
    this  is the question in PRD system,
    this is the right situation in QAS system

    Hi Pei,
    Please can you check the characteristic value using C00020 (C0 then 2 zeros before 20. Total 3 zeros before 20) instead of C0020 and check if this is working.
    You can take some clues form the below thread -
    http://scn.sap.com/thread/1672782
    Thanks to all previous contributors of the attached thread!!
    Thanks,
    Arijit

  • ClariFit IR Column Grouping not work when Control Break

    Dear,
    i am using ClariFit IR Column Grouping plugin for grouping column heading. Plugin is working fine. But when user use the Actions --> Format ---> Control Break option, the grouping column
    disappears,
    Can some body provide help on this issue or any alternate.
    Regards,

    Regardless of the limitations of IR, having quick access to controls significantly improves the experience.
    Having used the Remote app more than usual in the last few days with my new speakers, I'm reminded of how terrible an app it is if you just want to get in and out quickly -- the Library must load every time you open the app, and then once it does load, you can only use it for a few seconds until it inexplicitly kicks you to the "Now Playing" screen. And this happens every single time you open the app or unlock your phone.  So tasks that should be quick such as pausing, skipping tracks, or adjusting the volume take 15-20 seconds.
    With an IR remote, those tasks are instantaneous.  It doesn't excuse the fact that the iPhone app needs an overhaul, which is a separate issue.

  • Spry examples not working when sitting on UNIX servers

    Hi All,
    I've been looking at the SPry dynamic table examples with the
    intention of using this with my own xml files. When viewing these
    samples locally it displays fine. When uploading onto our server,
    it displays nothing. There is a quick flash of the first two rows
    but then won't parse the XML into the table structure and then is
    blank.
    As I said works fine running locally on Win XP using IE6.0
    but using IE6.0 running off a UNIX server, nothing.
    Baffled. Can anyone help?
    Kind regards
    Paul Pounder

    Hello Paul,
    Maybe this is just a basic permission problem. Maybe the new
    server is configured to serve the .xml files, the read/write
    permissions are correct or the mime-types for this type of file is
    not correct.
    In this situation you should simply try into the browser to
    manually call the XML data file and see if the file is correctly
    delivered. In case this scenario works then please give us an URL
    to take a look too.
    Regards,
    Cristian

  • FMS not working when only item chaning is drop down.

    I'm having an issue on 2005A where I have a FMS in place the sets a date if another field changes. 
    Sent: Y/N (Drop Down Box)
    Dt: FMS to set to date if sent = Y
    The issue is this, if you open the sales order and do nothing else but drop down sent and set to Y the FMS does not fire.
    After it is set to Y, you change it to N then change to Y it works.
    If you alter any field anywhere else first, then change the sent to Y it works.
    Has anyone else experienced this ?  Is there a work around?
    Eli

    UDFs (Marketing Documents)
    U_Extract:  Values Y - Yes, N - No.  Default = (N)
    U_ExtDate: Datefield.
    FMS Query:
    IF $[ORDR.U_Extract] = 'Y'
    select getdate()
    FMS is set to Auto Refresh when U_Extract changes.
    Open the sales order and do nothing but click the drop down for U_Extract, change to Y, update... NOTHING.
    Change any other field, then choose the drop down and select Y and it works.
    Thanks,
    Eli
    Edited by: Eli Lawson on May 12, 2009 4:18 PM

  • Help! Javascript not working when object moved from one page to another!

    Hello all:
    I am new to Adobe Livecycle Designer (version 8.0). I have created a 3 page interactive pdf form with numerous objects (text fields, radio buttons, drop-down boxes, etc.), that our business wants to begin using soon.
    I am having difficulty with some of my Javascript not working with a few of my objects on page 2 of the form. Specifically, there is a drop-down box for "Country" on page 2 of my form. When the user selects, for example, "United States" from the list, I have Javascript that is supposed to change the "Currency" drop-down box rawValue to "US Dollars" accordingly (upon the change event).
    I think my Javascript syntax is proper, but I am not certain. Here is my simple Javascript associated with the "Country" drop-down box (Note: rawValue 80 = "United States" and rawValue 105 = "US Dollars"):
    form1.Page1.cmbContactInfoCountry::change: - (JavaScript, client) -
    if (this.rawValue == 80) {     
         cmbCurrency.rawValue = 105;
    This seems pretty straight forward and it WORKS when my "Country" drop-down box is moved to page 1 of the form, but it WILL NOT WORK when I move the "Country" drop-down box back to page 2 of the form (which is where it belongs).
    Does anyone have any suggestions or solutions? I have spent probably 6-8 hours racking my brain trying to figure out why it works when on one page, but it does not work when move to a different page. I am guessing that I may have corrupted something OR that I am not fully addressing the proper name of the object?
    Please help!
    Frustrated and helpless near Chicago!
    Taylor T

    Hi Jono:
    Thank you for your quick reply.I was able to obtain the full name of the cmbCurrency object using the method you taught me. That is brilliant! Great short-cut tool.
    Unfortunately, I am still having issues with getting Javasript for the cmbCountry object to work with the cmbCurrency object. I haved pasted my new Javascript below.
    JavaScript for cmbCountry object:
    //UNITED STATES
    if (this.rawValue == 1) {
              xfa.resolveNode("form1.#subform[1].cmbCurrency").rawValue = 1;
    else
    //CANADA
    if (this.rawValue == 2) {
              xfa.resolveNode("form1.#subform[1].cmbCurrency").rawValue = 2;
    I have checked the "Specify Item Values" checkbox of the cmbCurrency drop-down object and Value 1 = "US Dollars" and Value 2 = "Canadian Dollars".
    When I select "Canada" from the cmbCountry drop-down object, the rawValue of the cmbCurrency drop-down object is changed to "US Dollars" (when it is clearly defined as "Canadian Dollars"). When I select "United States" from the cmbCountry drop-down object, the rawValue of the cmbCurrency drop-down object stays blank for uknown reasons. Very strange.
    Since I am not able to further explain in detail on what I am experiencing, I have posted a link to my file below (I just signed up for an account at ShareFile). I would forever be indebted to you if you can help me figure this out!
    https://thomptk.sharefile.com/?cmd=d&id=07ede2fe11db4549

  • Mail, iCal Server and iChat server will not work over VPN

    I have an Airport Extreme Base Station at the office running the network. Behind it sits a Mac Mini Snow Leopard server running 10.6.3. The ports necessary for Mail, iCal Server and iChat work fine through that external connection. I can also connect with VPN from my 10.6.3 clients.
    HOWEVER, when I connect with the VPN clients, I am suddenly unable to access the Mail, iCal Server, Wiki server and iChat server. All connections time out. I can ping the server and I can do other things that do NOT work on the public Airport like ssh or VNC. ssh and VNC are closed at the airport extreme.
    So it's pretty odd. When I'm connected via the VPN, all ports that are forwarded to the Snow Leopard server time out over the VPN.
    I've tried various and sundry configurations with the VPN client. This includes trying to send all traffic over the VPN, moving it up in the service order, etc. etc. Nothing fixes it. DNS resolution is working fine, however when I do a wireshark capture of ppp0 traffic, I notice that SSL and TLSv1 handshakes appear to occur on the public IP address instead of the private network IP address... and they're all resets.
    Has anyone gotten this to work successfully? Like I said, all ports that are NOT forwarded through the Airport work fine over the VPN, but will not work when connected to the VPN. It's really bizarre.

    New data: any ports that are normally forwarded on the Airport Extreme to the Mac Mini server will not work when connected to the VPN.
    For instance, if I have imaps/993 forwarded from the Airport Extreme to the Mac Mini, it works fine over the Internet. If I connect to the VPN, I can connect to all OTHER services on the Mac Mini, but Mail, for instance, will not work.

  • Exchange Impersonation not working when applied to group or OU

    I am trying to set up Exchange Impersonation so a specific account can impersonate a group of users. I have successfully set it up and tested to impersonate a single user but it will not work when I apply it to either a distribution group or OU, even though
    Exchange accepts my commands. The commands I'm using are;
    New-ManagementScope -Name ScopeName -RecipientRestrictionFilter { Displayname -eq "All Group Staff"} 
    New-ManagementRoleAssignment -ScopeName  AssignmentName -Role ApplicationImpersonation -User [email protected] -CustomRecipientWriteScope "ScopeName"
    When I try the above for a single user instead of group it works fine. I am using EWSEditor to test. The error I get on the group is;
    The account does not have permission to impersonate the requested user.
    Type: Microsoft.Exchange.WebServices.Data.ServiceResponseException
    Source: Microsoft.Exchange.WebServices
    ErrorCode: ErrorImpersonateUserDenied
    ErrorMessage: The account does not have permission to impersonate the requested user.
    Should I be using a different filter or parameter to get this working for a group of users? Please note I don't want to apply this to all users in the organization.

    Hi,
    Thanks for your response. It's great to hear the good news. What's more, if you have issue with Exchange impersonation, welcome to our Exchange Server Development forum, forum which is staffed by more experts specializing in this kind of problems. Your understanding
    will be appreciated.
    For your convenience:
    https://social.technet.microsoft.com/Forums/exchange/en-US/home?forum=exchangesvrdevelopment
    Hope this can be helpful to you.
    Best regards,
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Amy Wang
    TechNet Community Support

  • AS3 not working when uploaded to linux server

    Works like a charm when I preview it but when I upload to the
    server (tried 3 different ones) it just ignore the actionscripts
    all together no matter what I use.
    What I have is a rotating banner system. I set it up to
    randomly start at a specific one. If I preview it locally or run in
    in my .html file locally (just using preview in dreamweaver) it
    works like a charm and starts at a random one. When I upload it it
    just starts at the first one like the actionscripts do not exist.
    Using Flash CS3 and AS3.
    Thanks

    Pretty sure it is not a problem with the upload as I have
    been doing this for years the same way with Dreamweaver. In
    diagnosing the issue I rebuilt it and in place of the movie clips I
    just put text and uploaded it. Worked like a charm. Added the movie
    clips and again does not work when I upload it. Ignores the
    actionscript and just plays them in order. Did a build from top to
    bottom and from bottom to top also. Something in the movie clips is
    causing it but darned if I can find the answer. I have done this
    same thing before and it worked just fine. Just at a loss. I am
    attaching the code inside the movie scripts which work just fine.
    It is just ignoring scripts on the Scene 1 level.

  • I bought my iphone 5s a week before and now its volume "up" button is not working when pressed.Does anybody know what to do to make it work?I have a one year warranty.Should i give it to apple retail shop or is there any way to solve this problem?

    I bought my iphone 5s a week before and now its volume "up" button is not working when pressed.Does anybody know what to do to make it work?I have a one year warranty.Should i give it to apple retail shop or is there any way to solve this problem?

    IF it is a manufacturing defect and you bought the device from Apple or an authorized Apple retailer, then take it into Apple.

Maybe you are looking for