Help with Dropdownbox and following problems

Hello BWler.
I think my post is rather a crazy idea, but I hope you can bring me on the right track! 
My question: Is that generally feasible with HTML and Javascript or with other tools.
I hope you understand my English.
I would like to create a document (not the web item) in Web Application Designer which contains values from different Queries. It has three parts, Header, Body and Rest. The Header of the document can contain three different data (either material or customer or vendor), for which individual queries was defined. The Body gets data from an other query. The Rest is only text.
This is my idea, but I don’t know, if it’s a good solution.
In the first step I would like to fill a Dropdownbox with the three options of the Header (not on a characteristic in a query). The user selects a value and press the "submit" button.. Depending on which value was selected, the suitable Query and a defined characteristic should be used in the next Dropdownbox.
That’s my attempt to fill my own dropdonbox an display the selected value. The URL looks right, but not the result ;-). The choice suitable dropdownbox was not implemented yet.
customer
material
vendor
Question: How can this be solved to join own and WAD dropdownboxes?
Now if the right dropdownbox  is displayd, the values should be filtered. But e.g. for customer I have many values, therefore I’d like to create a nested dropdown menu. The first column should contain the letters “a” to “z”. After selection the values begins with this letter (e.g. all customers with letter “t”) should be read from the Query and then shown in the dropdownbox.
Question: Is that generally possible and if so, what one must define in addition in query designer?
Finally the result of the filtering should be displayed as text…

@ Raja
Thx for your reply. I will try it maybe later with BSP. Maybe I can also use java.
@ Deepak
Thx for your example. Now my first problem is solved. However, I have some more questions.
DDB=Dropdownbox
DP=DataProvider
First:
1) Is it possible to fill my own values in a BW-DDB without characteristic from query?
Second:
2) Is it possible to change only the DP for the same DDB.
I would like to use the same DDB, either with the values of product or customer or vendor, if I change the value of my own DDB.
My current solution is to change one DP with the right values.
<option value="<SAP_BW_URL ITEM='DDB_ITEM_1' HIDDEN='' CMD_1="DATA_PROVIDER=DATAPROVIDER_2&CMD=RESET_DATA_PROVIDER&INFOCUBE=ZPRODUCT&QUERY=ZPR" IOBJNM='PRODUCT'>"> product</option>
But my hope is to change only the DP(DATAPOVIDER1=customer, DATAPOVIDER2=vendor, DATAPOVIDER3=product) for the same DDB.
So I test it ... but I receive only the DDB with a value (" All"):
<object>
         <param name="OWNER" value="SAP_BW"/>
         <param name="CMD" value="SET_DATA_PROVIDER"/>
         <param name="NAME" value="DATAPROVIDER_2"/>
         <param name="QUERY" value="ZVEND"/>
         <param name="INFOCUBE" value="ZVENDOR"/>
         DATA_PROVIDER:             DATAPROVIDER_2
</object>
<object>
         <param name="OWNER" value="SAP_BW"/>
         <param name="CMD" value="SET_DATA_PROVIDER"/>
         <param name="NAME" value="DATAPROVIDER_3"/>
         <param name="QUERY" value="ZPR"/>
         <param name="INFOCUBE" value="ZPRODUCT"/>
         DATA_PROVIDER:             DATAPROVIDER_3
</object>
<option value="<SAP_BW_URL ITEM='DDB_ITEM_1' HIDDEN='' IOBJNM='PRODUCT' CMD_1="DATA_PROVIDER=DATAPROVIDER_2& CMD=RESET_DATA_PROVIDER&DATA_PROVIDER=DATAPROVIDER_3"> "> product</option>
Finally I still have my old question with the nested dropdwonbox in WAD...can somebody tell me, if its possible to create this.
Message was edited by: Jens Harder

Similar Messages

  • Need HELP with objects and classes problem (program compiles)

    Alright guys, it is a homework problem but I have definitely put in the work. I believe I have everything right except for the toString method in my Line class. The program compiles and runs but I am not getting the right outcome and I am missing parts. I will post my problems after the code. I will post the assignment (sorry, its long) also. If anyone could help I would appreciate it. It is due on Monday so I am strapped for time.
    Assignment:
    -There are two ways to uniquely determine a line represented by the equation y=ax+b, where a is the slope and b is the yIntercept.
    a)two diffrent points
    b)a point and a slope
    !!!write a program that consists of three classes:
    1)Point class: all data MUST be private
    a)MUST contain the following methods:
    a1)public Point(double x, double y)
    a2)public double x ()
    a3public double y ()
    a4)public String toString () : that returns the point in the format "(x,y)"
    2)Line class: all data MUST be private
    b)MUST contain the following methods:
    b1)public Line (Point point1, Point point2)
    b2)public Line (Point point1, double slope)
    b3)public String toString() : that returns the a text description for the line is y=ax+b format
    3)Point2Line class
    c1)reads the coordinates of a point and a slope and displays the line equation
    c2)reads the coordinates of another point (if the same points, prompt the user to change points) and displays the line equation
    ***I will worry about the user input later, right now I am using set coordinates
    What is expected when the program is ran: example
    please input x coordinate of the 1st point: 5
    please input y coordinate of the 1st point: -4
    please input slope: -2
    the equation of the 1st line is: y = -2.0x+6.0
    please input x coordinate of the 2nd point: 5
    please input y coordinate of the 2nd point: -4
    it needs to be a diffrent point from (5.0,-4.0)
    please input x coordinate of the 2nd point: -1
    please input y coordinate of the 2nd point: 2
    the equation of the 2nd line is: y = -1.0x +1.0
    CODE::
    public class Point{
         private double x = 0;
         private double y = 0;
         public Point(){
         public Point(double x, double y){
              this.x = x;
              this.y = y;
         public double getX(){
              return x;
         public double setX(){
              return this.x;
         public double getY(){
              return y;
         public double setY(){
              return this.y;
         public String toString(){
              return "The point is " + this.x + ", " + this.y;
    public class Line
         private double x = 0;
         private double y = 0;
         private double m = 0;
         private double x2 = 0;
         private double y2 = 0;
         public Line()
         public Line (Point point1, Point point2)
              this.x = point1.getX();
              this.y = point1.getY();
              this.x2 = point2.getX();
              this.y2 = point2.getY();
              this.m = slope(point1, point2);
         public Line (Point point1, double slope)
              this.x = point1.getX();
              this.y = point1.getY();
         public double slope(Point point1, Point point2)//finds slope
              double m1 = (point1.getY() - point2.getY())/(point1.getX() - point2.getX());
              return m1;
         public String toString()
              double temp = this.x- this.x2;
              return this.y + " = " +temp + "" + "(" + this.m + ")" + " " + "+ " + this.y2;
              //y-y1=m(x-x1)
    public class Point2Line
         public static void main(String[]args)
              Point p = new Point(3, -3);
              Point x = new Point(10, 7);
              Line l = new Line(p, x);
              System.out.println(l.toString());
    }My problems:
    I dont have the right outcome due to I don't know how to set up the toString in the Line class.
    I don't know where to put if statements for if the points are the same and you need to prompt the user to put in a different 2nd point
    I don't know where to put in if statements for the special cases such as if the line the user puts in is a horizontal or vertical line (such as x=4.7 or y=3.4)
    Edited by: ta.barber on Apr 20, 2008 9:44 AM
    Edited by: ta.barber on Apr 20, 2008 9:46 AM
    Edited by: ta.barber on Apr 20, 2008 10:04 AM

    Sorry guys, I was just trying to be thorough with the assignment. Its not that if the number is valid, its that you cannot put in the same coordinated twice.
    public class Line
         private double x = 0;
         private double y = 0;
         private double m = 0;
         private double x2 = 0;
         private double y2 = 0;
         public Line()
         public Line (Point point1, Point point2)
              this.x = point1.getX();
              this.y = point1.getY();
              this.x2 = point2.getX();
              this.y2 = point2.getY();
              this.m = slope(point1, point2);
         public Line (Point point1, double slope)
              this.x = point1.getX();
              this.y = point1.getY();
         public double slope(Point point1, Point point2)//finds slope
              double m1 = (point1.getY() - point2.getY())/(point1.getX() - point2.getX());
              return m1;
         public String toString()
              double temp = this.x- this.x2;
              return this.y + " = " +temp + "" + "(" + this.m + ")" + " " + "+ " + this.y2;
              //y-y1=m(x-x1)
    public class Point2Line
         public static void main(String[]args)
              Point p = new Point(3, -3);
              Point x = new Point(10, 7);
              Line l = new Line(p, x);
              System.out.println(l.toString());
    }The problem is in these lines of code.
    public double slope(Point point1, Point point2) //if this method finds the slope than how would i use the the two coordinates plus "m1" to
              double m1 = (point1.getY() - point2.getY())/(point1.getX() - point2.getX());
              return m1;
         public String toString()
              double temp = this.x- this.x2;
              return this.y + " = " +temp + "" + "(" + this.m + ")" + " " + "+ " + this.y2;
              //y-y1=m(x-x1)
         }if slope method finds the slope than how would i use the the two coordinates + "m1" to create a the line in toString?

  • Can't connect to itunes with iphone and followed all toubleshooting problems!!

    can't connect to itunes with iphone and followed all toubleshooting problems!!

    Try taking a look at this Apple doc -> iOS: Unknown error containing '0xE' when connecting to a Windows PC
    It should be able to help with that error.

  • Help with add file name problem with Photoshop CS4

    Frustrating problem: Help with add file name problem with Photoshop CS4. What happens is this. When I am in PS CS4 or CS3 and run the following script it runs fine. When I am in Bridge and go to tools/photoshop/batch and run the same script it runs until it wants interaction with preference.rulerunits. How do I get it to quit doing this so I can run in batch mode? Any help is appreciated. HLower
    Script follows:
    // this script is another variation of the script addTimeStamp.js that is installed with PS7
    //Check if a document is open
    if ( documents.length > 0 )
    var originalRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.INCHES;
    try
    var docRef = activeDocument;
    // Create a text layer at the front
    var myLayerRef = docRef.artLayers.add();
    myLayerRef.kind = LayerKind.TEXT;
    myLayerRef.name = "Filename";
    var myTextRef = myLayerRef.textItem;
    //Set your parameters below this line
    //If you wish to show the file extension, change the n to y in the line below, if not use n.
    var ShowExtension = "n";
    // Insert any text to appear before the filename, such as your name and copyright info between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextBefore = "Lower© ";
    // Insert any text to appear after the filename between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextAfter = " ";
    // Set font size in Points
    myTextRef.size = 10;
    //Set font - use GetFontName.jsx to get exact name
    myTextRef.font = "Arial";
    //Set text colour in RGB values
    var newColor = new SolidColor();
    newColor.rgb.red = 0;
    newColor.rgb.green = 0;
    newColor.rgb.blue = 0;
    myTextRef.color = newColor;
    // Set the position of the text - percentages from left first, then from top.
    myTextRef.position = new Array( 10, 99);
    // Set the Blend Mode of the Text Layer. The name must be in CAPITALS - ie change NORMAL to DIFFERENCE.
    myLayerRef.blendMode = BlendMode.NORMAL;
    // select opacity in percentage
    myLayerRef.opacity = 100;
    // The following code strips the extension and writes tha text layer. fname = file name only
    di=(docRef.name).indexOf(".");
    fname = (docRef.name).substr(0, di);
    //use extension if set
    if ( ShowExtension == "y" )
    fname = docRef.name
    myTextRef.contents = TextBefore + " " + fname + " " + TextAfter;
    catch( e )
    // An error occurred. Restore ruler units, then propagate the error back
    // to the user
    preferences.rulerUnits = originalRulerUnits;
    throw e;
    // Everything went Ok. Restore ruler units
    preferences.rulerUnits = originalRulerUnits;
    else
    alert( "You must have a document open to add the filename!" );

    you might want to try the scripting forum howard:
    http://www.adobeforums.com/webx?13@@.ef7f2cb

  • Help with writing and retrieving data from a table field with type "LCHR"

    Hi Experts,
    I need help with writing and reading data from a database table field which has a type of "LCHR". I have given an example of the original code but don't know what to change it to in order to fix it and still read in the original data that's stored in the LCHR field.
    Basically we have two Function modules, one that saves list data to a database table and one that reads in this data. Both Function modules have an identicle table which has an array of fields from type INT4, CHAR, and type P. The INT4 field is the first one.
    Incidentally this worked in the 4.7 non-unicode system but is now dumping in the new ECC6 Unicode system.
    Thanks in advance,
    C
    SAVING THE LIST DATA TO DB
    DATA: L_WA(800).
    LOOP AT T_TAB into L_WA.
    ZDBTAB-DATALEN = STRLEN( L_WA ).
    MOVE: L_WA to ZDBTAB-RAWDATA.
    ZDBTAB-LINENUM = SY-TABIX.
    INSERT ZDBTAB.
    READING THE DATA FROM DB
    DATA: BEGIN OF T_DATA,
                 SEQNR type ZDBTAB-LINENUM,
                 DATA type ZDBTAB-RAWDATA,
               END OF T_TAB.
    Select the data.
    SELECT linenum rawdata from ZDBTAB into table T_DATA
         WHERE repid = w_repname
         AND rundate = w_rundate
         ORDER BY linenum.
    Populate calling Internal Table.
    LOOP AT T-DATA.
    APPEND T_DATA to T_TAB.
    ENDLOOP.

    Hi Anuj,
    The unicode flag is active.
    When I run our report and then to try and save the list data a dump is happening at the following point
    LOOP AT T_TAB into L_WA.
    As I say, T_TAB consists of different fields and field types whereas L_WA is CHAR 800. The dump mentions UC_OBJECTS_NOT_CONVERTIBLE
    When I try to load a saved list the dump is happening at the following point
    APPEND T_DATA-RAWDATA to T_TAB.
    T_DATA-RAWDATA is type LCHR and T_TAB consists of different fields and field types.
    In both examples the dumps mention UC_OBJECTS_NOT_CONVERTIBLE
    Regards
    C

  • Question: Need help with overcoming the following message:  "Nothing was imported.

    Need help with overcoming the following message:  “Nothing was imported.  The file(s) or folder(s) selection to import did not contain any supported file types, or the files are already in this catalogue”.
    The photos being scanned are old film shots.  They have NOT been previously scanned.  I am using Photoshop Elements 9 software.
    QUESTION:  how do I override this STOP and or circumvent the photo comparison option????
    Thanks for the help. Bob K ---  [email protected]

      Are you scanning as jpeg, tiff or some other format?
    Are you using continuous numbering for files names as by definition scanned files have no exif data.
     

  • Help with count and sum query

    Hi I am using oracle 10g. Trying to aggregate duplicate count records. I have so far:
    SELECT 'ST' LEDGER,
    CASE
    WHEN c.Category = 'E' THEN 'Headcount Exempt'
    ELSE 'Headcount Non-Exempt'
    END
    ACCOUNTS,
    CASE WHEN a.COMPANY = 'ZEE' THEN 'OH' ELSE 'NA' END MARKET,
    'MARCH_12' AS PERIOD,
    COUNT (a.empl_id) head_count
    FROM essbase.employee_pubinfo a
    LEFT OUTER JOIN MMS_DIST_COPY b
    ON a.cost_ctr = TRIM (b.bu)
    INNER JOIN MMS_GL_PAY_GROUPS c
    ON a.pay_group = c.group_code
    WHERE a.employee_status IN ('A', 'L', 'P', 'S')
    AND FISCAL_YEAR = '2012'
    AND FISCAL_MONTH = 'MARCH'
    GROUP BY a.company,
    b.district,
    a.cost_ctr,
    c.category,
    a.fiscal_month,
    a.fiscal_year;
    which gives me same rows with different head_counts. I am trying to combine the same rows as a total (one record). Do I use a subquery?

    Hi,
    Whenever you have a problem, please post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) from all tables involved.
    Also post the results you want from that data, and an explanation of how you get those results from that data, with specific examples.
    user610131 wrote:
    ... which gives me same rows with different head_counts.If they have different head_counts, then the rows are not the same.
    I am trying to combine the same rows as a total (one record). Do I use a subquery?Maybe. It's more likely that you need a different GROUP BY clause, since the GROUP BY clause determines how many rows of output there will be. I'll be able to say more after you post the sample data, results, and explanation.
    You may want both a sub-query and a different GROUP BY clause. For example:
    WITH    got_group_by_columns     AS
         SELECT  a.empl_id
         ,     CASE
                        WHEN  c.category = 'E'
                  THEN  'Headcount Exempt'
                        ELSE  'Headcount Non-Exempt'
                END          AS accounts
         ,       CASE
                        WHEN a.company = 'ZEE'
                        THEN 'OH'
                        ELSE 'NA'
                END          AS market
         FROM              essbase.employee_pubinfo a
         LEFT OUTER JOIN  mms_dist_copy             b  ON   a.cost_ctr     = TRIM (b.bu)
         INNER JOIN       mms_gl_pay_groups        c  ON   a.pay_group      = c.group_code
         WHERE     a.employee_status     IN ('A', 'L', 'P', 'S')
         AND        fiscal_year           = '2012'
         AND        fiscal_month          = 'MARCH'
    SELECT    'ST'               AS ledger
    ,       accounts
    ,       market
    ,       'MARCH_12'          AS period
    ,       COUNT (empl_id)       AS head_count
    FROM       got_group_by_columns
    GROUP BY  accounts
    ,            market
    ;But that's just a wild guess.
    You said you wanted "Help with count and sum". I see the COUNT, but what do you want with SUM? No doubt this will be clearer after you post the sample data and results.
    Edited by: Frank Kulash on Apr 4, 2012 5:31 PM

  • Pls Help! Drag and Drop problem, identical symbols acting differently - same code! WHY?

    In the attached file, I have a series of symbols that have a drag and drop command to change colour at different sections of a bullseye, and that are also text editable (html).
    However, some of the symbols get stuck and will not be moved after moving once or at all, and some get stuck once their text has been edited.
    I have poured over the code and it appears to be the same for each symbol - can anyone explain as to why this is happening?
    I also cannot now edit the text properly on the ipad (it is really fiddly to change between different symbols to edit their text -- is there maybe a better way to do this? A button to change between symbols to then edit their text, can you help with this too?)
    THANK YOU SO MUCH!!!
    File here:
    https://www.dropbox.com/s/g71gnfichjgyehn/NEW%20RISK%20RADAR.zip

    Hi, I think I undertsand what you mean now, so the code is as below, btu I am not sure what a handler is? but some of my risks still get stuck once the text has been changed on them:
    // Use for loop for attr
    // deleted  yepnope since you load with scropt loading
    // added pos for each symbol so we can replace them there.
    document.ontouchmove = function(e) {
            e.preventDefault();
    var risk = ;
    var Pos = [
    {'x':-9,'y':806},
    {'x':27,'y':854},
    {'x':72,'y':894},
    {'x':71,'y':934},
    {'x':231,'y':811},
    {'x':231,'y':853},
    {'x':231,'y':894},
    {'x':231,'y':934},
    {'x':388,'y':811},
    {'x':388,'y':852},
    {'x':388,'y':893},
    {'x':388,'y':934},
    {'x':543,'y':811},
    {'x':543,'y':853},
    {'x':543,'y':893},
    {'x':543,'y':934}
    var myText = ; 
    for (i=0;i<risk.length;i++){
    sym.getSymbol(risk[i]).$(risk[i]).attr("contenteditable",true);
    sym.$('Quadrant_text').attr("contenteditable",true);
    sym.$('Quadrant1_text').attr("contenteditable",true);
    sym.$('Quadrant2_text').attr("contenteditable",true);
    sym.$('Quadrant3_text').attr("contenteditable",true);
    // apply the draggable JQuery UI plugin to the MyDraggableSymbol symbol on your stage
    sym.$('Risk1').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk1").stop("Initial");
      sym.setVariable("symName","Risk1");
    //adding for risk3_orange similarly add for other symbols
    sym.$('Risk1').draggable();
    sym.getSymbol('Risk1').$("Risk1").bind('click tap',function(ev) {
         sym.$('Risk1').draggable('disable');
    }).unbind('dblclick tap',function(ev) {
         sym.$('Risk1').draggable('enable');
    sym.$('Risk2').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk2").stop("Initial");
      sym.setVariable("symName","Risk2");
    //adding for Risk2 similarly add for other symbols
    sym.$('Risk2').draggable();
    sym.getSymbol('Risk2').$("Risk2").bind('click tap',function(ev) {
         sym.$('Risk2').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk2').draggable('enable');
    sym.$('Risk3').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk3").stop("Initial");
      sym.setVariable("symName","Risk3");
    //adding for Risk3 similarly add for other symbols
    sym.$('Risk3').draggable();
    sym.getSymbol('Risk3').$("Risk3").bind('click tap',function(ev) {
         sym.$('Risk3').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk3').draggable('enable');
    sym.$('Risk4').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk4").stop("Initial");
      sym.setVariable("symName","Risk4");
    //adding for Risk4 similarly add for other symbols
    sym.$('Risk4').draggable();
    sym.getSymbol('Risk4').$("Risk4").bind('click tap',function(ev) {
         sym.$('Risk4').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk4').draggable('enable');
    sym.$('Risk5').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk5").stop("Initial");
      sym.setVariable("symName","Risk5");
    //adding for Risk5 similarly add for other symbols
    sym.$('Risk5').draggable();
    sym.getSymbol('Risk5').$("Risk5").bind('click tap',function(ev) {
         sym.$('Risk5').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk5').draggable('enable');
    sym.$('Risk6').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk6").stop("Initial");
      sym.setVariable("symName","Risk6");
    //adding for Risk6 similarly add for other symbols
    sym.$('Risk6').draggable();
    sym.getSymbol('Risk6').$("Risk6").bind('click tap',function(ev) {
         sym.$('Risk6').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk6').draggable('enable');
    sym.$('Risk7').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk7").stop("Initial");
      sym.setVariable("symName","Risk7");
    //adding for Risk7 similarly add for other symbols
    sym.$('Risk7').draggable();
    sym.getSymbol('Risk7').$("Risk7").bind('click tap',function(ev) {
         sym.$('Risk7').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk7').draggable('enable');
    sym.$('Risk8').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk8").stop("Initial");
      sym.setVariable("symName","Risk8");
    //adding for Risk8 similarly add for other symbols
    sym.$('Risk8').draggable();
    sym.getSymbol('Risk8').$("Risk8").bind('click tap',function(ev) {
         sym.$('Risk8').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk8').draggable('enable');
    sym.$('Risk9').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk9").stop("Initial");
      sym.setVariable("symName","Risk9");
    //adding for Risk9 similarly add for other symbols
    sym.$('Risk9').draggable();
    sym.getSymbol('Risk9').$("Risk9").bind('click tap',function(ev) {
         sym.$('Risk9').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk9').draggable('enable');
    sym.$('Risk10').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk10").stop("Initial");
      sym.setVariable("symName","Risk10");
    //adding for Risk10 similarly add for other symbols
    sym.$('Risk10').draggable();
    sym.getSymbol('Risk10').$("Risk10").bind('click tap',function(ev) {
         sym.$('Risk10').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk10').draggable('enable');
    sym.$('Risk11').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk11").stop("Initial");
      sym.setVariable("symName","Risk11");
    //adding for Risk11 similarly add for other symbols
    sym.$('Risk11').draggable();
    sym.getSymbol('Risk11').$("Risk11").bind('click tap',function(ev) {
         sym.$('Risk11').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk11').draggable('enable');
    sym.$('Risk12').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk12").stop("Initial");
      sym.setVariable("symName","Risk12");
    //adding for Risk12 similarly add for other symbols
    sym.$('Risk12').draggable();
    sym.getSymbol('Risk12').$("Risk12").bind('click tap',function(ev) {
         sym.$('Risk12').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk12').draggable('enable');
    sym.$('Risk13').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk13").stop("Initial");
      sym.setVariable("symName","Risk13");
    //adding for Risk13 similarly add for other symbols
    sym.$('Risk13').draggable();
    sym.getSymbol('Risk13').$("Risk13").bind('click tap',function(ev) {
         sym.$('Risk13').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk13').draggable('enable');
    sym.$('Risk14').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk14").stop("Initial");
      sym.setVariable("symName","Risk14");
    //adding for Risk14 similarly add for other symbols
    sym.$('Risk14').draggable();
    sym.getSymbol('Risk14').$("Risk14").bind('click tap',function(ev) {
         sym.$('Risk14').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk14').draggable('enable');
    sym.$('Risk15').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk15").stop("Initial");
      sym.setVariable("symName","Risk15");
    //adding for Risk15 similarly add for other symbols
    sym.$('Risk15').draggable();
    sym.getSymbol('Risk15').$("Risk15").bind('click tap',function(ev) {
         sym.$('Risk15').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk15').draggable('enable');
    sym.$('Risk16').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk16").stop("Initial");
      sym.setVariable("symName","Risk16");
    //adding for Risk16 similarly add for other symbols
    sym.$('Risk16').draggable();
    sym.getSymbol('Risk16').$("Risk16").bind('click tap',function(ev) {
         sym.$('Risk16').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk16').draggable('enable');
    sym.getSymbol("Drop").$('Outer').droppable(
    sym.getSymbol("Drop").$('Middle').droppable(
    sym.getSymbol("Drop").$('Target').droppable(
    sym.$('resetBtn').click(function(){
      sym.$('Quadrant_text').html('Quadrant');
      sym.$('Quadrant1_text').html('Quadrant');
      sym.$('Quadrant2_text').html('Quadrant');
      sym.$('Quadrant3_text').html('Quadrant');
    for (i=0;i<risk.length;i++){
      sym.$(risk[i]).css({"left":Pos[i].x,"top":Pos[i].y,"position":"absolute"})
      sym.getSymbol(risk[i]).stop(0);
      sym.getSymbol(risk[i]).$(risk[i]).html("Challenge");
    But is still doesn't work,
    Subject: Re:  Pls Help! Drag and Drop problem, identical symbols acting differently - same code! WHY?

  • I'm having problems with 7.1 update my flash "flashes" now when I receive txt's and notifications! And I'm also having problems with freezing and wifi problems! How do I solve this?

    I'm having problems with 7.1 update my flash "flashes" now when I receive txt's and notifications! And I'm also having problems with freezing and wifi problems! How do I solve this?

    Doh! Rectified flash!
    But when face timing 2 seconds after it connects wifi disconnects? Any thoughts

  • MOVED: [Athlon64] Need Help with X64 and Promise 20378

    This topic has been moved to Operating Systems.
    [Athlon64] Need Help with X64 and Promise 20378

    I'm moving this the the Administration Forum.  It seems more apporpiate there.

  • Help with my iCloud storage problem? Weird issue.

    (posted originally & still in iPad)
    Hi.
    I read the manual and did everything (to my knowledge) and spent 2 days researching this but cannot locate an answer. I sure hope it is something that is right in front of me that I am missing somehow!  Please see if you can help me. I am the only MAC user in the family, so I have nobody to ask. Thanks.
    Ok, I personally have an iPhone, and iPad2 and iPad4 all on my same Apple ID. (that is what you are to do, right? that way your apps purchased can be shared on all those devices and you don't have to purchase new, right?) (The iPod just croaked w/ white screen.)
    Ok, just this Friday 2/8, my iCloud told me the "cloud is full" to manage it.  Ok, so I go to manage it, but everything I do I notice does ZERO to release the space.  I worked two days releasing tons of space and nada. The icloud didn't move from full position. I did turn on and off my devices. I signed out of the iMac cloud.
    I see this:
    On my iPad (etc):
    TTL Storage 5.0GB
    AVAIL 281mb
    So I go to "manage"....
    for "Docs and Data" it ONLY shows 2 apps I never use (I do use notebook apps but nothing else shows here but these two apps):
    Writers App 12.5kb
    Tweed 0.1kb (since deleted so it only shows the first)
    Then, below that it shows (in my opinion the culprit!):
    MAIL 4.7GB
    Soooo, I went to iCloud on my iPad and iMac (took turns) and DELETED IT ALL TO ZERO. Zero in inbox. Zero in sent. Zero in Trash. It is a hollow trash can!
    I signed out of the iMac icloud.
    I come back and my "manage" area looks EXACTLY the same as stated above.  The mail still shows at 4.7GB.  It did not drop!!!  I had other "accounts" of emails originally on my iPad to check, as it is a big convenience to go to mail and choose the account and it is right there, but I deleted ALL those as well. THE ONLY mail program I have on my iOs is iCloud.  Even on my iMac, I turned it off.
    I have NO iWork.  DIdn't purchase that yet.
    I have a lot of APPS and at one time under "manage" it LISTED all the apps and I could turn them "on" or "off" for icloud storage.  I turned camera OFF and most all apps EXCEPT notebooks like Noteability, Evernote.  NOW, after deleting all my icloud email, I do NOT see them nor the option to "bring them into the cloud or delete them from iCloud useage"....it ONLY will show Writers App and Tweed (never use them). Not sure where that list went!!
    Is there some kind of GLITCH that I am experiencing?  I want my icloud experience.  Is there something I am overlooking?
    At one point I changed the settings to back up NOTHING and that FULL icloud did NOT change! And, it still showed the same thing as stated above with mail at 4.7GB.  Also, at one point I did ONE (count 'em) icloud back up on my new iPad4 and I DELETED that since I saw this issue as well. (Plugged into my iMac and used iTunes instead).
    Also, when I sign in on my iMac and in Sys Pref go to iCloud....I see this:
    It has on left this wording: "icloud account (button) and sign out (button)"
    on right: (on icon below another it reads:)
    mail, ctc, calendar, bookmarks, photostream, docs & data (off), back to mac(off), and find mac.
    And, to far left bottom "manage" when I GO THERE, it ONLY shows this:
    Mail 4.7GB (grrrr lol) <---there is nothing in the icloud.com email box/any of them.
    that writing app mentioned above at 12.5kb
    Backup O
    There are NO apps shown at all (and I do have plenty on my iMac as well).
    Thanks.
    I really want to have the cloud experience again (a person has told me I have it, but what I am saying is for it to work flawlessly as it has been for me, actually working ...being able to email and recv/read emails (bouncing now)...backup IF DESIRED (no chance now as it says it is FULL)...etc.
    Is this some virus-y thing or glitch or am I overlooking something?
    I would appreciate your help so very much.
    Thanks.
    Kelly

    WOW!  ***** NEVEMIND *****
    FINALLY FIXED ITSELF AFTER 2.5 DAYS OF TIME CONSUMING WORK AND INSPECTION! 
    Thanks, I am happy to report my iPad is fixed but have to share with you what happened:
    I just went to Mass and prayed at Mass for guidance to help find the solution as I am sincerely looking hard and don't have the time (I know, who does, right?).  I prayed that if I couldn't find the issue that someone here would be guided to see this and assist me.
    Well, after I get home and feed the family, I go online again to look at my iCloud email box on my iMac and just keep looking...yes, it is completely white and clear. I see nothing that can be "MAIL" of 4.7MB.  So, then, I turned on my iPad once more just thinking I may have to give up on this and just live w/o it. I re-cheked my AVAILABLE storage for the last time and it was at 5.0!!! I was like "WTH?!!" Then, I re-opened my iCloud email on my iMac and it was still blank but just then my iPad AVAIL (storage) dropped to 4.9GB.
    So, as it is now, I have 4.9GB available for icloud storage. OUT OF THE BLUE after so many many hours and all nighters for two days. I'm beat.
    It seems in this case perhaps it was some weird odd GLITCH??  That the email deleted and space opened only showed up NOW (ie: a big delay from when I cleared it out yesterday night...about 24hours)???
    I will leave this here in case:  anyone at Apple sees that there is a problem with this and they are looking for other reported cases...they can update their manuals or update how their product reacts (more real time) OR if someone out there has had similar issues.
    Do all you can and refer to the official Apple iPad manual that is located in your reader.(or here: http://manuals.info.apple.com/en_US/ipad_user_guide.pdf) and
    http://help.apple.com/icloud/index.html?localePath=English.lproj#mmd0558ce3
    also this Complete iCloud Guide is a good read: http://www.iphonehacks.com/2011/10/the-complete-icloud-guide.html then search the forums and pray. ;-)
    I personally think my situation was a delay type glitch where I deleted the over-load and then when I corrected everything, it didn't click in till about 24 hours later...so maybe after you did everything you can, wait 24 hours and see if it self corrects to the right storage amount?  Just putting it out there in case anyone experiences anything like this as it perplexes you when you seem to be following all the "rules".
    Kelly.

  • Help with httprequests and responses

    it is my first time writing a servlet, but i need one to work with a project i'm working on. I have a class that will do all the methods on the server side of the project, but my problem now which i need to resolve, is how to get my client side app (made in flash mx) to work with my servlet and communicate the xml information i'm getting on the server back and forth.
    I know that you must answer a httpRequest in the servlet, and i know this must be sent somehow from the clientside app, but i need information and help on how to get information sent in this request the right way, and also help on how to properly format a response that will work.
    from what i know so far- it looks like the type of client-side app isn't important, as long as the request is sent right- so knowing that, flash and java should work fine in communication as long as flash sends a valid request and java answers it right.
    could anyone help me with information and/or help about how the requests and responses send information and what code you need to write to get information (even generalized code will work)
    Help would be really really appreciated.
    -mike

    To get data to and from the server and client, you'll have to seriaze it at one end and deserialize it at the other end.
    I don't know much about Flash MX but a java program on the client can exchange data with a servlet using the above means.
    For example, to read a string from a servlet using a java program on the client, you do the following:
    On the servlet:
    1. set content type to 'application/x-java-serialized-object'
    2. Get an output stream thus:
    ObjectOutputStream outStream =
    new ObjectOutputStream(response.getOutputStream());
    3. Write the data and flush the stream to be sure that all content has been sent:
    outStream.writeObject(myString);
    outStream.flush();
    On the client (java prog):
    1. get a URL: URL dataURL = new URL(protocol, host, port, address)
    2. connect to the URL: URLConnection connection = dataURL.openConnection();
    3. for fresh results everytime, turn off caching:
    connection.setUseCaches(false)
    4. get an input stream:
    ObjectInputStream in = new ObjectInputStream(connection.getInputStream());
    5. Get your string thus:
    String myString = (String) in.readObject();
    This is a very simplified example (you'll have to catch exception an a reall application).
    I recommend the book 'Core Servlet and JavaServer Pages' by Marty Hall
    http://www.coreservlets.com

  • Help with downloading and reinstalling

    Will someone please help me download and reinstall Adobe Photoshop Elements 7? I have a new computer and have lost a ton of photos which are supposed to be in Adobe Revel.

    if you don't have your installation media/files and use windows and if you follow all 7 steps, you can dl a trial via one of the links on this page:  http://prodesigntools.com/direct-download-links-for-lightroom-3-and-photoshop-elements-8.h tml/comment-page-1#comment-2174
    and activate with your serial number.
    if you have a dl problem, you didn't follow all 7 steps.  typically, failure to meticulously follow steps 1,2 and/or 3 is the problem.

  • Help with WRT54G and CenturyTel DSL

    I'm hoping someone can help me out.  I'm trying to set up a WRT54G with DSL service from Century Telephone.
    I'm running Windows XP and have been using this DSL service for several years without a router, so I know I can connect reliably.  I've connected my desktop directly to the router (e.g. wired connection) and I've double and triple checked connections and know they are secure and correct.
    I ran the setup CD, and it could not find an Internet connection.  I went through all the normal steps - powering down everything, restarting.  No dice.  I downloaded Easty Answer ID 2210 from Linksys about setting up PPPoE DSL connections and followed all instructions - still no luck.  I downloaded latest firmware for router, tried again - no luck.   When I check router's status page, I see no connection and get error message "Cannot get IP address from PPPoE server".
    Then contacted CentryTel tech service to see if they had any suggestions.  They helped me set up a bridge connection through the router - but that just demonstrates the Internet conneciton is available and there isn't a wiring problem.  Spent about an hour on line with Linksys tech support, but he wasn't able to diagnose the problem and then the connection was dropped on his end.
    Does anyone have any suggestions?
    Thanks.
    Mark

    It is so nice to read that others are having the same problems - misery loves company.
    I used to have Comcast, but moved and switched to DSL.  I have never had problems like the ones I have experienced since switching, and have not had luck with either CenturyTel or Linksys customer service.
    I have the same issue - so we fiddled with the IP address and were able to get one computer on wireless.  However, we have three computers in the house - but the other two can't get on the Internet wirelessly.  Can multiple computers use the wireless connection after you've changed the IP address for one?  It doesn't seem to work for us, despite multiple calls to help desks (Linksys told us it was a problem with our laptop maker; however, we never had issues with this particular computer going on wireless at the old house.)
    Any help for WRT54TG/CenturyTel (or any DSL)/multiple computers is greatly appreciated!
    Thanks!

  • Please Please help with JavaScript and Actions

    Hello!
    Is there a way to perform a saved Action from the Action Pallette using a JavaScript script? I know there is a way to do it with Visual Basic.
    Is there a way to run a Visual Basic script from a JavaScript script?(which could be a potential workaround if JavaScript CANNOT call on an Action)
    Is there a way to call on a JavaScript from an Action?
    Here's specific information on my problem:
    I am using Illustrator CS2 on a PC
    I have written all of the JavaScript scripts that I need to perform various layer selection procedures and they all work perfectly. I have placed them in the Presets > Scripts folder so that they appear in my file menu.
    I wrote a very long action that called on these scripts (using Insert Menu Item > then selecting the script by going File > Scripts) sequentially and did some selecting and copy-pasting and applying graphic styles in between scripts. The Action worked PERFECTLY and ran all the scripts I needed to an automated a process that usually takes me an hour in less than five minutes!
    I saved the actions and saved the file.
    After closing Illustrator all of the lines of the action that called on scripts disappeared! It seems this is a known bug...I currently know of no workaround.
    Can anyone help with any of the following things:
    1. Getting actions to SAVE the commands to run javascripts
    2. Writing a JavaScript that runs an Illustrator Action
    3. Writing a JavaScript that runs a Visual Basic script that runs an Illustrator Action.
    I spent three days learning the basics of JavaScript (mostly by trial and error) and successfully wrote all the scripts I needed...I was overjoyed! But now that I've closed illustrator my actions to run said scripts do not work. PLEASE ADVISE!!!
    Thanks in advance,
    Matthew

    try next
    1)if possible split JS-code into 2 parts (before/after action)
    2)make vbs script with contents
    Set appRef = CreateObject("Illustrator.Application.3")
    appRef.DoJavaScriptFile("C:\my1.js")
    appRef.DoScript(Action As String, From As String)
    'add wait while ActionIsRunning
    appRef.DoJavaScriptFile("C:\my2.js")
    3) run vbs (File > Scripts or double-click).

Maybe you are looking for

  • Simple demployment question

    Post Author: compscot CA Forum: Deployment I am very new with crystal reports. I have used them before with visual studio 2005, and deployed the applications successfully.  I have a client who wants some reports from their ms sql database.  Instead o

  • Is it possible to make a playlist and then delete those songs from the Music library and only keep them in the Playlist?file

    Is it possible to make a playlist of particular material and then delete them from the Music list and just keep them in the play list? than you. first time user/.

  • Cannot install itunes and quicktime

    I get an error message during quicktime installation "cannot open key: HKEYLOCALMACHINE/Software/Classes/QuicktimePlayerlib.Quicktimeplayerapp/CLSID" Any suggestions what to do next.

  • Cisco video camera monitoring software from remote location

    Hello What is the best way to use the  Cisco video camera monitoring software from remote location. I am talking about the AVMS / SWVMS software. I am thinking of either a vpn tunnel or Remote Desktop (Terminal Services). I would like to use the vpn

  • Print from email

    I have an iPad first generation.  I would like to print an email as an exact copy of the original one into a PDF savable copy within my iPad.  On my desktop I have Paperport software that lists a printer labeled Paperport printer that prints a digita