delete code works in R12 12.1.1 not in R12 12.1.3

Hi all

I have a code to remove lines if the cutsno is NULL (the region of isTable line custno, we have more lines)

if ("delete1".equals(pageContext.getParameter(EVENT_PARAM)))
{
  System.out.println("Delete Number1 :");
  pageContext.writeDiagnostics(this,"Delete Number1 :",OAFwkConstants.STATEMENT);
  String orderno = pageContext.getParameter("porderno");
  pageContext.writeDiagnostics(this,"Order Number :"+orderno,OAFwkConstants.STATEMENT);
  String pcustno = pageContext.getParameter("pcustno");
  pageContext.writeDiagnostics(this,"Customer No :"+pcustno,OAFwkConstants.STATEMENT);
  String rowReference = pageContext.getParameter(OAWebBeanConstants.EVENT_SOURCE_ROW_REFERENCE);
  OARow row = (OARow) am.findRowByRef(rowReference);
  pageContext.writeDiagnostics(this,"Before Cust Null:",OAFwkConstants.STATEMENT);
  if ("".equals(pcustno))
  {
   pageContext.writeDiagnostics(this,"Entered Cust Null if :",OAFwkConstants.STATEMENT);
   row.remove();
   throw new OAException("Record is deleted Successfully", OAException.INFORMATION);
  }
 else
{
        throw new OAException((new StringBuilder()).append("These Order number already exists");
 }

JDeveloper 10.1.3.3.0

1)R12-VISION Oracle Apps Instance > 12.1.1

2) -> project Instance Oracle Apps R12 12.1.3



The above code is working well in case of the Vision, but does not work in the instance of project

Of the error

(1) Error (757,59): field EVENT_ROW_SOURCE_PARAM not found in the Insert.oracle.apps.po.Insert.webui.InsertCO class

(2) Error (758,22): incompatible types. found: class java.lang.Object, required: class java.lang.String on pcustno

(3) Error (760,21): incompatible types. found: class java.lang.Object, required: class java.lang.String on orderno

Get above error'r, while the added code in the CO please suggest

Sorry, it was my mistake, use EVENT_SOURCE_ROW_REFERENCE. What you used below is correct.

String rowReference = pageContext.getParameter (OAWebBeanConstants.EVENT_SOURCE_ROW_REFERENCE);

Try this code:

if ("delete1".equals(pageContext.getParameter(EVENT_PARAM)))
{

  String rowReference = pageContext.getParameter(OAWebBeanConstants.EVENT_SOURCE_ROW_REFERENCE);
  OARow row = (OARow) am.findRowByRef(rowReference);
  pageContext.writeDiagnostics(this,"row:" + row ,OAFwkConstants.EXCEPTION);
  String pcustno = row.getAttribute("itemcust");
  String orderno = row.getAttribute("orderno");
  System.out.println("order no:"+orderno);
  pageContext.writeDiagnostics(this,"pcustno :"+pcustno,OAFwkConstants.EXCEPTION);
  pageContext.writeDiagnostics(this,"orderno :"+orderno,OAFwkConstants.EXCEPTION);

  if ((pcustno == null) || (pcustno.trim().length() == 0))
  {
  pageContext.writeDiagnostics(this,"Inside If :",OAFwkConstants.EXCEPTION);
  row.remove();
  throw new OAException("Record is deleted Successfully", OAException.INFORMATION);
  }
  else
  {
  // Your additional check goes here.
  throw new OAException((new StringBuilder()).append("These Order number already exists");
  }

Let me know if you don't understand all the lines in the code above.

(2) 444--> it is not moved (N)

I don't understand the logic.

If you paste the complete code and debugging lines and explain your problem, it might be easy to help.

If you have too many conditions, try to get a condition first, then add the second condition in the appropriate place.

See you soon

AJ

Tags: Oracle Applications

Similar Questions

  • Help, please! Why this code work in 6i form and does not work in forms 11g

    I tried to fix this thing for weeks and for some reason that I can't understand how to operate.

    Here are the error codes I get:

    FRM-41219: can not find the report: invalid ID (this pop on the screen I then click on the ok button the next show at the bottom of the screen)

    FRM-40738: Argument 1 of builtin RUN_REPORT_OBJECT cannot be null

    Basically, this code is supposed to call a report that puts another screen pop up and display the report.

    Here is the code behind the button on the form "File Print".

    :OVERALL. THE_NUMBER: =: REQUEST_SEQUENCE;

    IF : REQUEST_AMOUNT<100000 THEN : TEXT_ITEM83: =: request_amount;

    ELSIF : REQUEST_AMOUNT> THEN 1000000 : TEXT_ITEM83: =1;   / * I think the ELSIF should be replaced with ELSE IF don't know * /.

    END IF;

    : TEXT_ITEM74: =:GLOBAL. THE_NUMBER;

    THE_REP;

    Here is the code that is behind the box of quere.

    Start

    : global .qry_rep_val: =: quy_rep;

    : display_item78: =: global .qry_rep_val;

    If: global .qry_rep_val = '3' then null;

    elsif: global .qry_rep_val = 1 then

    run_vba_rep1;

    elsif: global .qry_rep_val = 2 then

    run_report_for_last_query;

    elsif: global.qry_rep_val = 4 then / * Yes, there is an extra space between the two, the 'val' and '='. Should I delete TI * /.

    Call the form ('/ export/home/oracle/Middleware/Oracle_FRHome1/forms/vba_tda_qry ', HIDE, NO_REPLACE, QUERY_ONLY);

    end if;

    : qry_rep: = 3;

    end;

    I guess that the problem is in the run_report_for_last_query procedure. There will be something like run_report_object. Could you post this code?

  • Code works in the timeline panel, but not in the class

    Hello, I have the following code which works in the timeline, but if I change it to the class I get this error.

    I will be very happy if someone can help me solve this problem.

    Error here:

    TypeError: Error #2007: Parameter child must be non-null.
              at flash.display::DisplayObjectContainer/addChild()
              at Function/Main/private:completeMenuLoad/goContent()
    

    Code scenario here:

    import flash.display.*;
    import com.greensock.*;
    import com.greensock.easing.*;
    import flash.net.URLRequest;
    import flash.net.URLLoader;
    
    
    var signUpUrl:URLRequest = new URLRequest("../swf/signUp.swf");
    var logInUrl:URLRequest = new URLRequest("../swf/logIn.swf");
    
    
    var content1Loader:Loader = new Loader();
    var content2Loader:Loader = new Loader();
    
    
    content1Loader.load(signUpUrl);
    content2Loader.load(logInUrl);
    
    
    var buttonA:Array = [signUp_btn, logIn_btn];
    
    var prevOnStageLoader:Loader;
    
    for(var i:int=0;i<buttonA.length;i++){
    buttonA[i].addEventListener(MouseEvent.CLICK, goContent);
    }
    function goContent(e:MouseEvent):void
    {
    if(prevOnStageLoader){
    TweenLite.to(prevOnStageLoader,1,{x:stage.stageWidth});
    }
    prevOnStageLoader=Loader(this["content"+(1+buttonA.indexOf(e.currentTarget))+"Loader"]);
          addChild(prevOnStageLoader);
          prevOnStageLoader.x = -1250;
          TweenLite.to(prevOnStageLoader, 1, {x:0, ease:Elastic.easeInOut});
    }
    

    Code of the class here:

    package 
    {
    
    
              import flash.display.*;
              import flash.net.*;
              import flash.events.*;
              import com.greensock.*;
              import com.greensock.easing.*;
    
    
    
              public class Main2 extends MovieClip
              {
                        private var signUpUrl:URLRequest = new URLRequest("../swf/signUp.swf");
                        private var logInUrl:URLRequest = new URLRequest("../swf/logIn.swf");
                        private var content1Loader:Loader = new Loader();
                        private var content2Loader:Loader = new Loader();
    
    
                        public function Main2()
                        {
                                  content1Loader.load(signUpUrl);
                                  content2Loader.load(logInUrl);
    
    
                                  var buttonA:Array = [signUp_btn,logIn_btn];
                                  var prevOnStageLoader:Loader;
    
    
                                  for (var i:int=0; i<buttonA.length; i++)
                                  {
                                            buttonA[i].addEventListener(MouseEvent.CLICK, goContent);
                                  }
                                  function goContent(e:MouseEvent):void
                                  {
                                         if (prevOnStageLoader)
                                         {
                                                   TweenLite.to(prevOnStageLoader,1,{x:stage.stageWidth});
                                         }
                                         prevOnStageLoader = Loader(this["content" + (1 + buttonA.indexOf(e.currentTarget)) + "Loader"]);
                                         addChild(prevOnStageLoader);
                                         prevOnStageLoader.x = -1250;
                                         TweenLite.to(prevOnStageLoader, 1, {x:0, ease:Elastic.easeInOut});
                                  }
                        }
                }
    }
    
    

    OK, so the problem is SOLVED. I don't know where the problem was because I solved as so much ' try & test - try & test...» ', but

    I think that the problem was a table that should look like this:

    in the Main() public class

    private var buttonA:Array = new Array();

    in constructor

    Button = [signUp, login];

    and the full code here:

    package

    {

    import flash.display. *;

    flash.net import. *;

    import flash.events. *;

    import com.greensock;

    com.greensock.easing import. *;

    SerializableAttribute public class extends MovieClip Main2

    {

    private var container: charger;

    private var content1Loader:Loader = new Loader();

    private var content2Loader:Loader = new Loader();

    private var signUpUrl:URLRequest = new URLRequest("..) ("/ swf/signUp.swf");

    private var logInUrl:URLRequest = new URLRequest("..) ("/ swf/logIn.swf");

    private var buttonA:Array = new Array();

    constructor function

    public void Main2()

    {

    content1Loader.load (signUpUrl);

    content2Loader.load (logInUrl);

    Button = [signUp, login];

    for (var i: int = 0; i

    {

    buttonA [i] .addEventListener (MouseEvent.CLICK, goContent);

    }

    }

    private void goContent(e:MouseEvent):void

    {

    If (container)

    {

    TweenLite.to (container, 0.8, {x: 1250, ease:Cubic.easeInOut});})

    }

    container Loader = (this ["happy" + (1 + buttonA.indexOf (e.currentTarget)) + "Loader"]);

    addChild (container);

    Container.x =-1250;

    TweenLite.to (container, 0.6, {x: 0, ease:Quart.easeInOut});})

    }

    }

    }

  • RT code works since the LabVIEW environment, but not when I create and deploy

    I think there are a lot of reasons why this can happen, but I can't seem to pin one.

    I have a classic controls program that runs on a cRIO. We recently decided to change the communication of a ProfiBus comsoft on Ethernet/IP card. (Industrial Protocol for Allen Renaud automata). For various reasons, we put the fuse in communication in the control loop.

    Now when I run the LabVIEW now, it works fine. I can see data going to and coming from the controller. I can sniff packets and they look good. I get about 30 milliseconds on the loop, which is long, but since I am running in the IDE, I think is not bad. (In other words, I get data in and out every 30 milliseconds).

    When I compile and set the binary on the cRIO, it breaks. I can still sniff packets, but what I'm getting now, is that all traffic to the controller of read requests. My write requests are missing. In addition to reading queries are poorly trained. Rather than ask 43 items in a table, they ask 1.

    A test that I tried was to disable the read request. For the binary file, I don't see any traffic. For the IDE, I see write queries.

    I use LV 2009 SP1. I have the version of NOR-Labs of the Ethernet/IP driver. (We have a request for a quote, but do not have the official driver.) In the meantime, faster I get this done, the happier everyone will be ;-)

    Any suggestions?

    Attention to the nodes of property which is usually my problem when it happens.  Some who say they work in RT do not work in compiled RT

  • Code works correctly with sql developer but not in shapes

    Hi, formulas [32 bit] Version 6.0.8.11.3 (Production)

    INSERT INTO DEFICIENCIES 
    
    SELECT I.ITEM_ID , S.ITEM_ENG_NAME , S.ITEM_ARABIC_NAME 
    FROM ITEM_DETAIL I , STOCK S 
    WHERE I.ITEM_ID = S.ITEM_ID 
    AND I.ITEM_ID NOT IN ( SELECT ITEM_ID FROM DEFICIENCIES )
    GROUP BY I.ITEM_ID , S.ITEM_ENG_NAME , S.ITEM_ARABIC_NAME 
    HAVING MAX(EXPIRY_DATE) <= TRUNC(SYSDATE)
    OR SUM(QUANTITY) = 0 
    UNION
    SELECT E.ITEM_ID , S.ITEM_ENG_NAME , S.ITEM_ARABIC_NAME 
    FROM EXPIRED E , STOCK S 
    WHERE E.ITEM_ID = S.ITEM_ID 
    AND E.ITEM_ID NOT IN ( SELECT ITEM_ID FROM DEFICIENCIES )
    ORDER BY ITEM_ENG_NAME ;
    

    When I used it in oracle forms, I have faced

    error 103 at line 15 column 2
    encountered the symbol "order" when expecting one of the following: 
    ;return RETURNING_ adn or group havign intersect minus start union where connect 
    the symbol "group was inserted before "order" to continue
    
    

    ?

    forms not authorized such use for «insert into...» Select... Of...  ORDER BY' with order by.

    but this use can be used in a database procedure.

    write your code in a database procedure.  your code will run.

  • Impossible to get DELETE to work in the example of the power

    If it is a repost, apologies. I use dreamweaver mx2004 and have installed mx Kollection and a configuration of wamp. I started the book of power and the examples took place without a hitch. but when I tried the link REMOVE in his example on quotes, he sent me to a blank form. the example of one or two times with the same results. Here is a part of the attached code. Thanks in advance for any help.

    David,

    This is what happened:

    http://localhost/php_mike/Admin/quote_delete.php?quote_delete=9

    and for reference, this is what happened in the link EDIT:

    http://localhost/php_mike/Admin/quote_update.php?quote_id=9

    Eureka!

    I went into code view and found where the DELETION should have read quote_id and it does not. changed and it works fine now. Thank you. a good lesson!

    but tell me, how it go like that?

  • I'm on windows 7 and I upgraded to 10.0.2 and now it does not open. I completely deleted firefox and transferred again, and it does not work. So my last attempt, I removed firefox 10 again and downloaded the beta version and once more nothing.

    I'm on windows 7 and I've upgraded to the latest version of firefox, and now it will not open. I completely deleted firefox and transferred again, and it does not work. Then, I was that he could get through my firewall, and that has not worked. So my last attempt, I removed firefox 10 again and downloaded the beta version hoping that would make it and once again, nothing. It opens at all. Please help - y at - it a live chat or a number to speak to someone at Firefox?

    -Microsoft got a big update last night for the Windows 7 and I came this morning I was wondering if the update would help my FireFox. I thought it might because a lot of things in this forum said it was a security problem and they have been updated with security updates. SHAZAM! Firefox is now the new my browser to goto. Very happy to resume. Once more I did anything this morning, but click the icon after the big windows 7 update and we're back in business. Thanks for all your help!

  • I deleted accideutally works since XP is there any way to recover

    I accidentally deleted XP works my program is a way to recover.

    I accidentally deleted XP works my program is a way to recover.

    You can try to restore the system to a previous date. but take care and save existing data to cope with a loss of data or failure

  • GPS module Adafruit - fail to access by id UART 40 in Java ME 8.2, but same code works in ME 8.1

    After the recent release of Java ME 8.2, I updated the work made during the MOOC Embedded Java Midlets just to see if everything has changed in the API and if the old code still worked. In this activity, I discovered that I can't access the Adafruit GPS module through the UART interface. How to connect to it is, as has been explained during the MOOC, using the IO device API (class jdk.dio.DeviceManager) and the device Id 40. When the code runs in Java ME 8.2, I got an error: "jdk.dio.DeviceNotFoundException: 40 device not found". The same code works perfectly to ME 8.1. It comes to corresponding code snippet:

    Public AdaFruitGPSUARTSensor() throws IOException {}

    try {}

    UART = DeviceManager.open (UART_DEVICE_ID);

    uart.setBaudRate (9600);

    InputStream serialInputStream = Channels.newInputStream (uart);

    serialBufferedReader = new BufferedReader (new InputStreamReader (serialInputStream));

    } catch (IOException ioe) {}

    printMessage ("cannot open the UART," ERROR ");

    printMessage ("Exception =" + ioe.getMessage (), ERROR);

    throw the OIE;

    }

    }


    -Does anyone know if something has changed in me 8.2 which would require changes in the source code to access the GPS module properly via the UART interface? Known bugs and workarounds should I know?

    Thank you very much in advance,

    Jorge.


    P.S.: This is the sign of the full stack for if it makes sense for everyone.

    jdk.dio.DeviceNotFoundException: device not found 40

    -jdk/dio/DeviceManager.open (), bci = 87

    -jdk/dio/DeviceManager.open (), bci = 3

    -jdk/dio/DeviceManager.open (), bci = 4

    sensor, gpsdatarecorder, AdaFruitGPSUARTSensor. < init > (), bci = 7

    -gpsdatarecorder / GPSDataTesterMidlet.startApp (), bci = 12

    -.unknown... unknown. (), bci = 1

    -.unknown... unknown. (), bci = 5

    -.unknown... unknown. (), bci = 236

    -.unknown... unknown. (), bci = 38

    -.unknown... unknown. (), bci = 5

    -.unknown... unknown. (), bci = 127

    -com/sun/midp/main/AppIsolateMIDletSuiteLoader.main (), bci = 26

    As I see you already realized what it is and how to solve it.

    Some comments from my side to make easier life with Java ME. Java ME 8 Embedded technology constantly evolving, we are strongly committed to making the best platform for embedded development. This change of ID is the result of DIO ID and name change to conform to a new agreement. From Java ME Embedded 8.2 devices ID is now consistent with all cards (ports) supported by Oracle.

    FYI, below is a convention for ID devices.

    1 - 99 gpio (PIN + port)

    100 - 199 uart (+ modem)

    200 - 299 i2c

    300 - spi 399

    400 - 499 adc

    500-599 CAD

    600 - 699 pwm

    700 - 799 pulse

    800 - 899 to

    900 - mmio 999

    1000-1099 generic

    1100 - 1199 watchdogs + watchdogs with windows

  • HTML code works is not in 2015.2

    Hello world.

    I am a novice, so sorry in advance if I should know better...

    I have a HTML code integrated into my website. The code just Knack, a company of the database online. The code allows the Viewer to query the database and see customized results.

    The code worked perfectly fine in 2015.1

    Since the conversion of 2015.2, the code does not work on pages where there is Adobe already existing elements (for example a master page with header, navigation).

    The code works in 2015.2 If the page has nothing on it, but the HTML object (do not use a master page, only a fresh white page).

    I contacted Knack and they provided the following explanation of the problem with a suggestion to meet here for a solution.

    Below, I have send the Knack email with a screenshot of the error codes and a description of the issue from their end.

    Looking for Muse experts help to solve this problem and get my site up and running! Thank you is advanced.

    Greg

    KNACK...

    I've heard of our engineers - the problem is that your application cannot load the JavaScript of Muse libraries with your app integrated Knack (see image with errors below). Could you join Muse and see how you might be able to download these JS files manually on the server that hosts your site, since talent may not get back them? I would like to send the image in your message.

    Hello Dana,.

    I've just updated to this version, and now I can't copy anything, given that the program crashes.

    It goes at a bad time... haha

    Thank you!

    Best,

    Frine

  • My work as a Photoshop Mix does NOT have the Adobe library.  I have already sent more than 100 things at the library (successfully!)  It has now stopped working.  Photoshop Mix not send.  If I delete the Photoshop Mix of iPad Pro.  It will remove a

    My work as a Photoshop Mix does NOT have the Adobe library.  I have already sent more than 100 things at the library (successfully!)  It has now stopped working.  Photoshop Mix not send.  If I delete the Photoshop Mix of iPad Pro.  It deletes all the pictures in Photoshop Mix?  I had technical support look in my ADOBE Office without success. (case 187698996)  Thank you.  I have several files in the Adobe library and checked all the. Nothing appears from my Photoshop Mix.

    Thank you.

    Susan hers

    Update: Susan fixed this problem by uninstalling and reinstalling the application.

  • Why my AS3 code working in 1 project, but not in another?

    I had a small project by working with simple buttons that worked very well. I had to restore my project and now it does not work. Ive cut all new code that I added and it did not work. I made a completely new project and copied the layers I'm testing and just the code that had the first working draft and it did not work either. any suggestions on why this might happen?

    This can be a bit of a twist when it comes to understand because this is what I consider an anomaly of the Flash.  If you have different instances of the same object in the adjacent images, then the object the latter will inherit properties of the thing seized.  Sometimes it works to your advantage and sometimes it will leave scratching you your head trying to solve a problem.

    You have shown just in case, you have an object in the frame of 30 and I guess it is the same object that is in frame 1.  Based on what I just explained as an anomaly, even if you were to remove the name of the instance of the object in the frame of 30, or call it something else, it will persist with the name of the instance assigned to it in box 1.  Try it and see - it should always work.

    However, if you interrupt (that ness adjacent) regarding placing a keyframe empty between frame 1 and 30, you will find that the button no longer works in the frame of 30.  He is most associated with the earlier proceedings.  To get back to work, you reassign Auditors properties.

  • Listener code to add a layer mask does not work...

    With the help of Photoshop CC 2014 with all updates. The following script listener code has been saved when I clicked on the button, add a layer mask to add a mask to the active layer. When executeAction is called the script fails with the following error message. Help! How can I add a layer mask to the layer? Thank you.

    : Error General Photoshop. Maybe this feature is not available in this version of Photoshop. -The command 'Make' is not currently available.

    function addLayerMask() {}

    Adds a layer mask to the layer by clicking on the

    Add the button layer mask.

    var idMk = charIDToTypeID ("Mk");

    var desc23 = new ActionDescriptor();

    var idNw = charIDToTypeID ('Nw');

    var idChnl = charIDToTypeID ('channel');

    desc23.putClass (idNw, idChnl);

    var idAt = charIDToTypeID ('At');

    var ref20 = new ActionReference();

    var idChnl = charIDToTypeID ('channel');

    var idChnl = charIDToTypeID ('channel');

    var idMsk = charIDToTypeID ("Msk");

    ref20.putEnumerated (idChnl, idChnl, idMsk);

    desc23.putReference (idAt, ref20);

    var idUsng = charIDToTypeID ("Usng");

    var idUsrM = charIDToTypeID ("rocket");

    var idRvlS = charIDToTypeID ("LVR");

    desc23.putEnumerated (idUsng, idUsrM, idRvlS);

    executeAction (idMk, desc23, DialogModes.NO);

    }

    This code works if you have an active selection.

    function addLayerMask() {}

    Adds a layer mask to the layer by clicking on the

    Add the button layer mask.

    var idMk = charIDToTypeID ("Mk");

    var desc23 = new ActionDescriptor();

    var idNw = charIDToTypeID ('Nw');

    var idChnl = charIDToTypeID ('channel');

    desc23.putClass (idNw, idChnl);

    var idAt = charIDToTypeID ('At');

    var ref20 = new ActionReference();

    var idChnl = charIDToTypeID ('channel');

    var idChnl = charIDToTypeID ('channel');

    var idMsk = charIDToTypeID ("Msk");

    ref20.putEnumerated (idChnl, idChnl, idMsk);

    desc23.putReference (idAt, ref20);

    var idUsng = charIDToTypeID ("Usng");

    var idUsrM = charIDToTypeID ("rocket");

    var idRvlS = charIDToTypeID ("LVR");

    desc23.putEnumerated (idUsng, idUsrM, idRvlS);      reveal selection

    executeAction (idMk, desc23, DialogModes.NO);

    }

    app.activeDocument.selection.selectAll ();

    addLayerMask();

    To add a layer mask without an active selection is the scriptlistener code you would need

    function addLayerMask() {}

    var idMk = charIDToTypeID ("Mk");

    var desc25 = new ActionDescriptor();

    var idNw = charIDToTypeID ('Nw');

    var idChnl = charIDToTypeID ('channel');

    desc25.putClass (idNw, idChnl);

    var idAt = charIDToTypeID ('At');

    ref19 var = new ActionReference();

    var idChnl = charIDToTypeID ('channel');

    var idChnl = charIDToTypeID ('channel');

    var idMsk = charIDToTypeID ("Msk");

    ref19.putEnumerated (idChnl, idChnl, idMsk);

    desc25.putReference (idAt, ref19);

    var idUsng = charIDToTypeID ("Usng");

    var idUsrM = charIDToTypeID ("rocket");

    var idRvlA = charIDToTypeID ("RvlA");

    desc25.putEnumerated (idUsng, idUsrM, idRvlA);  reveal all

    executeAction (idMk, desc25, DialogModes.NO);

    }

    addLayerMask()

    There are once again hide all

    var idMk = charIDToTypeID ("Mk");

    var desc33 = new ActionDescriptor();

    var idNw = charIDToTypeID ('Nw');

    var idChnl = charIDToTypeID ('channel');

    desc33.putClass (idNw, idChnl);

    var idAt = charIDToTypeID ('At');

    var ref27 = new ActionReference();

    var idChnl = charIDToTypeID ('channel');

    var idChnl = charIDToTypeID ('channel');

    var idMsk = charIDToTypeID ("Msk");

    ref27.putEnumerated (idChnl, idChnl, idMsk);

    desc33.putReference (idAt, ref27);

    var idUsng = charIDToTypeID ("Usng");

    var idUsrM = charIDToTypeID ("rocket");

    var idHdAl = charIDToTypeID ("HdAl");

    desc33.putEnumerated (idUsng, idUsrM, idHdAl);     Hide all

    executeAction (idMk, desc33, DialogModes.NO);

  • My html code works only on the 1st tab of the Panel (muse widget)

    I have a html code with javascript that calculates the total points. I have inserted this into the first tab and my code works fine, but when I insert it in the second, third and so on it stops working completely (including the 1st tab). Y at - it something I'm doing wrong or isn't it possible?

    Hello

    If the custom code you use is in conflict with the code of Muse or its workflow page break then it may be a problem because the elements of the page will not work.

    Please check the code and modify accordingly.

    Thank you

    Sanjit

  • Dash shortcut keyboard code works do not?

    Work on a new website, I started to work on my old laptop (macbook white) with Dreamweaver 5.0 is installed. When it got too complex for the small screen, I took the project to my work computer (Mac Pro) and continued his work in Dreamweaver CC. On both computers, the shortcut for "exit code" works as advertised in the help files.

    Tonight, I took the project back home and continued to work on my new laptop (MacBookPro 17 "). On this laptop I have had installed CS6 so I continued to work on the CS6. But for some reason any keyboard shortcuts for 'code removal' didn't work. There is no shortcut behind these commands in the Edit menu. I found this very annoying, so I installed CC on this laptop too. After installation, I took the prefs on the cloud and expected shortcuts keyboard to work, but luck bo...

    I then quit Dreamweaver, replaced the file Shortcut.js keyboard with my Mac Pro. Still no go.

    My work computer running OS x 10.8, my two laptops run OS x 10.9. Therefore, if a shortcuts are somehow reserved by the system, I guess they should not work on my old laptop.

    Any suggestions?

    Thank you


    A

    Judge that there is no shortcut associated with these orders. I tried to add shortcuts, but that doesn't work anymore. I select the command, click the + and press the desired key combination (shift + command + >). The window disappears. Probably because the ">" is also the "." and '-command.' is the abbreviation for "Cancel"...

    I did some more digging and found the shortcuts are stored in the Menus.xml file, buried deep in the folder Application Support/Adobe etc. But this file is only there after making a duplicate of the original keyboard settings. I opened this file (in Dreamweaver) and found that the shortcuts for dash/raise the code are here, but for some reason any that is ignored by Dreamweaver. I removed Dreamweaver of the computer and re-installed, no chance.

    I made a new set, has opened the new xml file and first removed the shortcuts, save the file, added shortcuts and saved again. Now they work.

    But still, I would like to know why he didn't in the first place...

Maybe you are looking for

  • Which thank to Firefox for release 29?

    I have not explored all Firefox 29 but so far I love it for two basic reasons. First, load web pages more quickly and seamlessly, and I get a better experience with Web sites. 29 Firefox seems to be the version without effort or hassle still in terms

  • Need help with iMovie

    I use for the first time and trying to understand how to use it, but aid is very confusing for me. I'm looking for simple instructions step by step on how to make a movie in this program to get help. I tell myself, how import now need to know how to

  • Question of Terctra A3x with battery

    Hey guys,. Recently, I reformatted my tosh and is went on the installation of al the pieces and parts but the battery has not been picked up correctly despite me install the chipset utility. I couldn't find any reference to the driver of the battery

  • Tecra M2 - DVD/CD Player error (Code 38)

    Hellomy dvd drive is no longer recognized. I get this message in Device Manager: Windows cannot load the driver for this hardware device because a previous instance of the device driver is still in memory. (Code 38) Click on 'Search for solutions' to

  • Toshiba SD-R2212 drive read audio CD only

    Hello I have a problem with my Toshiba sd-r2212 combo player.The problem is: my player not reading and audio CD, CD-ROM or DVD My firmware version is: 1314.Could someone help me with this problem? I don't find any solution at Google.