Possible to count only hand hits

hey guys,
This exercise has been in my back pocket for a month. Worked with one of our coders on this and she's empty of ideas. I've been trying to create a teach game to make correct change. So what I have is change, a hand and a table. I want a live tally of what is on the hand. Now the friend of mine took this code way above my skill level so I'm hoping someone has a new direction for this. The issue we have with the current code is that if you take the change from the dish and drop it right in the hand, the tally will be correct. Now if I drop a coin on the hitbox (off the hand) first, or repeatedly do this, I can run a negative tally. So I'd like the tally only to show what is touching the hand (as a new direction) instead of counting every time the hand or table is hit. So a snapshot to check what is touching the hand and use that as a counter. really stumped guys, here's the code my buddy came up with, any hints in the right direction?
import fl.transitions.Tween;
import fl.transitions.easing.*;
import fl.transitions.TweenEvent;
import com.greensock.*;
import com.greensock.easing.*;
import flash.media.Sound;
import flash.display.StageScaleMode;
import flash.events.Event;
import flash.display.StageDisplayState;
stop();
penny1.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
penny2.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
penny3.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
penny4.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
penny5.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
penny6.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
penny7.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
penny8.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
nickel1.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
nickel2.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
nickel3.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
nickel4.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
nickel5.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
dime1.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
dime2.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
dime3.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
dime4.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
dime5.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
quarter1.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
quarter2.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
quarter3.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
quarter4.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
loonie1.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
loonie2.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
loonie3.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
loonie4.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
toonie1.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
toonie2.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
toonie3.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
toonie4.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
five.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
five1.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
five2.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);
penny1.addEventListener (MouseEvent.MOUSE_UP, dropMe);
penny2.addEventListener (MouseEvent.MOUSE_UP, dropMe);
penny3.addEventListener (MouseEvent.MOUSE_UP, dropMe);
penny4.addEventListener (MouseEvent.MOUSE_UP, dropMe);
penny5.addEventListener (MouseEvent.MOUSE_UP, dropMe);
penny6.addEventListener (MouseEvent.MOUSE_UP, dropMe);
penny7.addEventListener (MouseEvent.MOUSE_UP, dropMe);
penny8.addEventListener (MouseEvent.MOUSE_UP, dropMe);
nickel1.addEventListener (MouseEvent.MOUSE_UP, dropMe);
nickel2.addEventListener (MouseEvent.MOUSE_UP, dropMe);
nickel3.addEventListener (MouseEvent.MOUSE_UP, dropMe);
nickel4.addEventListener (MouseEvent.MOUSE_UP, dropMe);
nickel5.addEventListener (MouseEvent.MOUSE_UP, dropMe);
dime1.addEventListener (MouseEvent.MOUSE_UP, dropMe);
dime2.addEventListener (MouseEvent.MOUSE_UP, dropMe);
dime3.addEventListener (MouseEvent.MOUSE_UP, dropMe);
dime4.addEventListener (MouseEvent.MOUSE_UP, dropMe);
dime5.addEventListener (MouseEvent.MOUSE_UP, dropMe);
quarter1.addEventListener (MouseEvent.MOUSE_UP, dropMe);
quarter2.addEventListener (MouseEvent.MOUSE_UP, dropMe);
quarter3.addEventListener (MouseEvent.MOUSE_UP, dropMe);
quarter4.addEventListener (MouseEvent.MOUSE_UP, dropMe);
loonie1.addEventListener (MouseEvent.MOUSE_UP, dropMe);
loonie2.addEventListener (MouseEvent.MOUSE_UP, dropMe);
loonie3.addEventListener (MouseEvent.MOUSE_UP, dropMe);
loonie4.addEventListener (MouseEvent.MOUSE_UP, dropMe);
toonie1.addEventListener (MouseEvent.MOUSE_UP, dropMe);
toonie2.addEventListener (MouseEvent.MOUSE_UP, dropMe);
toonie3.addEventListener (MouseEvent.MOUSE_UP, dropMe);
toonie4.addEventListener (MouseEvent.MOUSE_UP, dropMe);
five.addEventListener (MouseEvent.MOUSE_UP, dropMe);
five1.addEventListener (MouseEvent.MOUSE_UP, dropMe);
five2.addEventListener (MouseEvent.MOUSE_UP, dropMe);
var masterTotal;
var pickUpSound:Sound = new pickUp();
var coinOnHandSound:Sound = new coinOnHand();
var coinPickUpSound:Sound = new coinPickUp();
var coinDropSound:Sound = new coinDrop();
var dropPaperSound:Sound = new dropPaper();
hand.visible = false;
hitbox.mouseEnabled = false;
sidebucket.mouseEnabled = false;
var hitHand;
var handTotal;
handTotal = 0.00;
handTotalTxt.text = "Change Tally: $" + handTotal.toFixed(2);
handTotalTxt.selectable = false;
hand.mouseEnabled = false;
TweenMax.to (penny1, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (penny2, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (penny3, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (penny4, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (penny5, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (penny6, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (penny7, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (penny8, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (dime1, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (dime2, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (dime3, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (dime4, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (dime5, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (nickel1, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (nickel2, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (nickel3, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (nickel4, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (nickel5, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (quarter1, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (quarter2, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (quarter3, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (quarter4, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (loonie1, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (loonie2, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (loonie3, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (loonie4, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (toonie1, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (toonie2, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (toonie3, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (toonie4, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (five, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (five1, 0.1, {scaleX:0.1, scaleY:0.1});
TweenMax.to (five2, 0.1, {scaleX:0.1, scaleY:0.1});
/*var my_shadow:DropShadowFilter = new DropShadowFilter();
my_shadow.color = 0x000000;
my_shadow.blurY = 3;
my_shadow.blurX = 3;
my_shadow.angle = 90;
my_shadow.alpha = .2;
my_shadow.quality = 15;
my_shadow.distance = 100;*/
function grabMe (e:MouseEvent):void
          e.target.startDrag();
          var me;
          me = e.target;
          coinPickUpSound.play ();
          var scaley:Tween = new Tween(me, "scaleY", Regular.easeIn, 0.1, 0.4, 0.2, true);
          var scalex:Tween = new Tween(me, "scaleX", Regular.easeIn, 0.1, 0.4, 0.2, true);
function dropMe (e:MouseEvent):void
          stopDrag();
          var myValue:Number;
          five1.myValue = 5.00;
          five2.myValue = 5.00;
          five.myValue = 5.00;
          penny1.myValue = .01;
          penny2.myValue = .01;
          penny3.myValue = .01;
          penny4.myValue = .01;
          penny5.myValue = .01;
          penny6.myValue = .01;
          penny7.myValue = .01;
          penny8.myValue = .01;
          dime1.myValue = .10;
          dime2.myValue = .10;
          dime3.myValue = .10;
          dime4.myValue = .10;
          dime5.myValue = .10;
          nickel1.myValue = .05;
          nickel2.myValue = .05;
          nickel3.myValue = .05;
          nickel4.myValue = .05;
          nickel5.myValue = .05;
          quarter2.myValue = .25;
          quarter3.myValue = .25;
          quarter4.myValue = .25;
          quarter1.myValue = .25;
          toonie2.myValue = 2.00;
          toonie3.myValue = 2.00;
          toonie4.myValue = 2.00;
          toonie1.myValue = 2.00;
          loonie2.myValue = 1.00;
          loonie3.myValue = 1.00;
          loonie4.myValue = 1.00;
          loonie1.myValue = 1.00;
          var me;
          me = e.target;
          var scaleyOut:Tween = new Tween(me, "scaleY", Regular.easeIn, 0.4, 0.1, 0.05, true);
          var scalexOut:Tween = new Tween(me, "scaleX", Regular.easeIn, 0.4, 0.1, 0.05, true);
          trace(e.target.myValue);
          if (hand.hitTestObject(me) && me.hitHand != true)
                              coinOnHandSound.play();
                              handTotal = handTotal + me.myValue;
                              trace(handTotal.toFixed(2));
                              handTotalTxt.text = "Change Tally: $" + handTotal.toFixed(2);
                              trace("Hit Hand");
                              me.hitHand = true;
          else if (hitbox.hitTestObject(me) && me.hitTray != true)
                              coinDropSound.play();
                              handTotal = handTotal - me.myValue;
                              trace(handTotal);
                              handTotalTxt.text = "Change Tally: $" + handTotal.toFixed(2);
                              trace("Hit Counter");
                              me.hitTray = true;
          else
                              hitHand = 3;
                              trace("No Hit");
                              trace(handTotal);

Without seeing your movie it's difficult to gues how it works, but from the code I'm guessing that the mouseDown event "picks up" and then drags a money object. Then the mouseUp event "drops" the money object. This dropped object can only "fall" onto either the hand or the tray. You want the user to know how much money is in the hand at any time.
I'm thinking that you need an overall total of the value of the money objects that are picked up from the area that is not the hand or the tray. Then you need a total for the value of the money objects that hit the hand object. You will deduct the value of any money object "picked up" from the hand object from the hand total. If that money object is not dropped back to the hand, then it will not be added back to the hand's total value. The difference between the value of the money objects picked up from the not hand and not tray area and the value of the money objects in the hand should be the value of the money objects in the tray.
Am I close?

Similar Messages

  • How can I count only text fields that have been used?

    Hi,
    I'm using Livecycle Designer for a dynamic form.  I have a section of the form that contains field for the user to enter goals and then rate the goal.  I'd like to count only the text fields with entries and then have the total number of rates divided by the number of text field entries.
    Row 1 , column 1 -- Goal is to pick up 5 apples.   Row 1, column 2 - the rate given is 5
    Row 2, column 1 - Goal is to pick up 5 pears.  Row 1, column 2 - the rate given is 5
    Two goals for a total rating of 10     ---  10 divided by 2 = 5
    Is it possible to count only those fields that are populated?
    Also, is it possible to create an error message if the user entered 5 goals but only rated 4 of them?

    You could do a simple check for null and increase a counting variable if there's a value in the field. Here's a sample:
    var goalCount = 0;
    if (field1.rawValue != null){
         goalCount = goalCount + 1;
    if (field2.rawValue != null){
         goalCount = goalCount + 1;
    if (field3.rawValue... etc.
    this.rawValue = totalPoints/goalCount;
    where totalPoints is a sum of the values in the goal fields. This script is javascript and should be placed in the calculate event of the field showing your average score.

  • Whats better for my mbp 2013 retina in the long run? Keep it plugged in as much as possible or letting the battery hit 10% and then recharge it?

    Whats better for my mbp 2013 retina in the long run? Keep it plugged in as much as possible or letting the battery hit 10% and then recharge it?

    Odd you ask that, since both are HORRIBLE,   ... especially often draining your battery low.
    General consideration of your MacBook battery
    Contrary to popular myths about notebook batteries, there is protection circuitry in your Macbook and therefore you cannot ‘overcharge’ your notebook when plugged in and already fully charged.
    However if you do not plan on using your notebook for several hours, turn it off (plugged in or otherwise), since you do not want your Macbook ‘both always plugged in and in sleep mode’.
    A lot of battery experts call the use of Lithium-Ion cells the "80% Rule", meaning use 80% of the full charge or so, then recharge them for longer overall life. The only quantified damage done in the use of Lithium Ion batteries are instances where the internal notebook battery is “often drained very low”, this is bad general use of your notebook battery.
    A person who has, for example, 300 charge cycles on their battery and is recharging at say 40% remaining of a 100% charge has a better battery condition state than, say, another person who has 300 charge cycles on their battery and is recharging at say 10-15% remaining on a 100% charge. DoD (depth of discharge) is much more important on the wear and tear on your Macbook’s battery than the count of charge cycles. There is no set “mile” or wear from a charge cycle in specific. Frequent high depth of discharge rates (draining the battery very low) on a Lithium battery will hasten the lowering of maximum battery capacity.
    All batteries in any device are a consumable meant to be replaced eventually after much time, even under perfect use conditions.
    If the massive amount of data that exists on lithium batteries were to be condensed into a simplex, helpful, and memorable bit of information it would be:
    1. While realistically a bit impractical during normal everyday use, a lithium battery's longevity and its chemistry's health is most happy swinging back and forth between 20% and 85% charge roughly.
    2. Do not purposefully drain your battery very low (10% and less), and do not keep them charged often or always high (100%).
    3. Lithium batteries do not like the following:
    A: Deep discharges, as meaning roughly 10% or less on a frequent basis.
    B: Rapid discharges as referring to energy intensive gaming on battery on a frequent basis (in which case while gaming, if possible, do same on power rather than battery). This is a minor consideration.
    C: Constant inflation, as meaning always or most often on charge, and certainly not both in sleep mode and on charge always or often.
    From Apple on batteries:
    http://www.apple.com/batteries/notebooks.html
    http://support.apple.com/kb/HT1446
    "Apple does not recommend leaving your portable plugged in all the time."
    Keep it plugged in when near a socket so you keep the charging cycles down on your LiPo (lithium polymer) cells / battery, but not plugged in all the time. When not being used for several hours, turn it off.
    DoD (depth of discharge) is far more important on the wear and tear on your Macbook battery than any mere charge cycle count.  *There is no set “mile” or wear from a charge cycle in general OR in specific.    As such, contrary to popular conception, counting cycles is not conclusive whatsoever, rather the amount of deep DoD on an averaged scale of its use and charging conditions.
                              (as a very rough analogy would be 20,000 hard miles put on a car vs. 80,000 good miles being something similar)
    *Contrary to some myths out there, there is protection circuitry in your Macbook and therefore you cannot overcharge it when plugged in and already fully charged
    *However if you don’t plan on using it for a few hours, turn it OFF (plugged in or otherwise) ..*You don’t want your Macbook both always plugged in AND in sleep mode       (When portable devices are charging and in the on or sleep position, the current that is drawn through the device is called the parasitic load and will alter the dynamics of charge cycle. Battery manufacturers advise against parasitic loading because it induces mini-cycles.)
    Keeping batteries connected to a charger ensures that periodic "top-ups" do very minor but continuous damage to individual cells, hence Apples recommendation above:   “Apple does not recommend leaving your portable plugged in all the time”, …this is because “Li-ion degrades fastest at high state-of-charge”.
                        This is also the same reason new Apple notebooks are packaged with 50% charges and not 100%.
    Contrary to what some might say, Lithium batteries have an "ideal" break in period. First ten cycles or so, don't discharge down past 40% of the battery's capacity. Same way you don’t take a new car out and speed and rev the engine hard first 100 or so miles.
    Proper treatment is still important. Just because LiPo batteries don’t need conditioning in general, does NOT mean they dont have an ideal use / recharge environment. Anything can be abused even if it doesn’t need conditioning.
    Storing your MacBook
    If you are going to store your MacBook away for an extended period of time, keep it in a cool location (room temperature roughly 22° C or about 72° F). Make certain you have at least a 50% charge on the internal battery of your Macbook if you plan on storing it away for a few months; recharge your battery to 50% or so every six months roughly if being stored away. If you live in a humid environment, keep your Macbook stored in its zippered case to prevent infiltration of humidity on the internals of your Macbook which could lead to corrosion.
    Considerations:
    Your battery is subject to chemical aging even if not in use. A Lithium battery is aging as soon as its made, regardless.
    In a perfect (although impractical) situation, your lithium battery is best idealized swinging back and forth between 20 and 85% SOC (state of charge) roughly.
    Further still how you discharge the battery is far more important than how it is either charged or stored short term, and more important long term that cycle counts.
    Ultimately counting charge cycles is of little importance.  Abuse in discharging (foremost), charging, and storing the battery and how it affects battery chemistry is important and not the ‘odometer’ reading, or cycle counts on the battery. 
    Everything boils down to battery chemistry long term, and not an arbitrary number, or cycle count.
    Keep your macbook plugged in when near a socket since in the near end of long-term life, this is beneficial to the battery.
    In a lithium battery, deep discharges alter the chemistry of the anode to take up lithium ions and slowly damages the batteries capacity for the cathode to transport lithium ions to the anode when charging, thereby reducing max charge levels in mAh. In short, radical swings of power to lithium cells disrupts the chemical ecosystem of the battery to hold charges correctly which likewise impedes the perfect transfer of lithium ions both in charging and discharging.  In charging your lithium battery, lithium ions are “pushed uphill” (hard) to the anode, and discharged “downhill” (easy) to the cathode when on battery power. Deep discharges, damages this “upward” electrolyte chemistry for the battery to maintain a healthy charge and discharge balance relative to its age and cycles.
    Optimally, in terms of a healthy lithium battery and its condition, it is most happy at 50% between extremes, which is why low-power-drain processors such as the Haswell are ideal on lithium battery health since a partially charged battery with a low-drain processor has, in general, much more usage in hours
    Battery calibration, battery memory, battery overcharging, battery training, …all these concepts are mostly holdovers from much older battery technology, and on older Apple portable Macbooks ranging from early nicads, NiMh and otherwise; and these practices do not apply to your lithium battery and its smart controllers.
    Calibrating the battery on older Apple portable Macbooks with removable batteries.
    http://support.apple.com/kb/PH14087
    There is no calibration of current Apple portable Macbooks with built-in batteries.
    http://support.apple.com/kb/ht1490
    There is no battery calibration with current Apple portable Macbooks with built-in batteries. Lithium batteries have essentially a 0-‘memory’, and all such calibration involve the estimations fed to the system controller on the SOC (state of charge) of the battery over long periods of time as the battery degrades. The software based battery controller knows the battery's characteristics, or SOC and adjusts itself. This is why there is both no need and purpose to periodically deeply drain your macbook battery, since it doesn’t affect the characteristics of the battery, and further still deep discharges are something you should not do on purpose to any lithium battery.
    From BASF: How Lithium Batteries work
    https://www.youtube.com/watch?v=2PjyJhe7Q1g
    Peace

  • Counter negative cache hits and long searches

    hi my name is sumit.
    In my network there is a frame-relay pvc on 7206 VXR router on which 2 T1's are terminated(from S8700 EPABX) and the bandwidth of this PVC is 600 KBPS. we are using rtp and tcp header compression technique(codec g729r8).7206 router is connected to IGX through HSSI cable and there is a IGX to IGX connectivity from INDIA to US. At US site there is a same network. and it is further connected to AT&T cloud. mainly on this PVC there is inbound traffic which comes from US AT&T cloud.
    we are facing a lot of voice quality issues and when i use show frame relay ip rtp header-compression.
    the counter negative cache hits and long searches rapidly increases
    can somebody help me to solve the problem.
    and tell me is there any affect on voice quality if these counters rapidly increases

    hi Neo thanks for reply.
    r u from Datacraft ?
    I am also from Datacraft
    i have already used this URL. but it gives only one statement about counters.
    but i am asking what could be an impact of these counters on voice ?
    please reply
    thanks

  • Counting only some rows without where or subqueries?

    Is it possible with oracle to count only some of the rows? I mean without excluding the rows in where or using sub queries.
    This does not work but I think it illustrates what I want:
    SELECT count(flags), count(flags like '%P%'), count(flags like '%F%') FROM table WHERE some_column = 2;
    Where the first would return the number of flags rows, while the second contet the numbers that have P in them and the third counted the number with F.
    Table would be
    Flags Some_column
    'AFP' 2
    'A* 1
    'PF' 1
    'P' 2
    And so on.
    In postgres you can do: count(substring(flags from 'R')), to achieve the above mentioned idea. Does oracle have a way of doing the same?

    Your requirement is not clear. But.. Is this what you are trying to achieve?
    SQL> with t
      2  as
      3  (select 'AFP' st from dual
      4  union all
      5  select 'A*' from dual
      6  union all
      7  select 'PF'  from dual
      8  union all
      9  select 'P'  from dual
    10  )
    11  select sum(1) sum1,
    12  sum(case when st like '%P%' then 1 else 0 end) sum2,
    13  sum(case when st like '%F%' then 1 else 0 end) sum3
    14  from t
    15  /
          SUM1       SUM2       SUM3
             4          3          2

  • Is it possible to display only dynamically selected fields in the out put?

    Is it possible to display only dynamically selected fields in the out put? i need to display set of columns in the selection criteria, but in the output i have display only input given fields. because i need to convert it into .csv file. So i have to display selected fields from internal table. In oracle they are using"execute immediate". is there any equivalent in SAP?
    thanks in advance.

    Hi Remya,
    Are you talking about dynamic programming in ABAP ?
    If yes, there are concepts like RTTS which facilitates it.
    Yes, the select query also supports dynamic selection of fields. ( Please care about ( ) in dynamic sql ).
    Do more research on Field Symbols and statements like ASSIGN COMPONENT OF.
    Regards,
    Philip.

  • Is it possible to update only a part of my apps

    Hi, I would like to upgrade my apps, but my iPad2 writes that I don't have enough memory. Is it possible to upgrade only a part of the apps? In the appstore, you can chose either all of them or nothing.
    Thank you!

    You can update all, or download select App updates one at a time by selecting the app update you want to install.

  • Is it possible to share only a part of contact.

    Hi,
    Is it possible to share only a part of an contact? For example: If you have more nubmers and data for one contact (mostly we do) and would like to send someone only one number and not the rest of contact`s data (personal)? I know that on some other phones this is possible. Thanks for answers.

    You can update all, or download select App updates one at a time by selecting the app update you want to install.

  • Is their any possibility to Obfuscate only some classes.

    Hi,
    I tried with jBuilder to obfuscate only some classes as per the help provided by the jbuilder, where it is clearly specifed that it is possible to obfuscate only some classes. But i am not getting that. I tried same as given in the help.
    Let me know, any wrong i did... and is there any other way to do this.
    plz reply me.
    With Regards,
    Rajesh

    Use exclude parameter and check the below link.
    http://www.oracle-base.com/articles/10g/oracle-data-pump-10g.php
    Regards
    Asif Kabir

  • Is it possible to encrypt only certain folders on your HD?

    When choosing file vault to encrypt your files is it possible to choose only certain portions of your hard drive to encrypt or certain folders? Or do you just need to encrypt the whole thing?

    FileVault encrypts only the user's Home folder, nothing else. It cannot be used to selectively choose what to encrypt. If this is your goal, then you can use third-party encryption software - CNet Downloads or MacUpdate - or create a separate encrypted disc image on which you can store the files/folders you want encrypted.

  • SPA 9000 - Is it possible to use only the FXS lines (a la SPA2102) ?

    SPA 9000 - Is it possible to use only the FXS lines (a la SPA2102) ?    At this moment I have not received the 9x2 series phones I ordered, but am trying to set up the SPA9000.

    yes, it would work. 

  • Query all to display but count only certain criteria

    using the following sql statement i can get all the information i want. However since i am decoding the salary_wage how do i count only those items that are over a certain dollar amount?
    select lss.job_order_no,
         jo.business_no,
         bs.business_name,
         li.industry_name,
         lj.job_title,
         js.office_id,
         jo.salary,
         jo.salary_type,
    decode (JO.salary_type,'MONTHLY',JO.salary/173.34,
              'BIWEEKLY',JO.salary/80,
              'HOURLY',JO.salary,
         'ANNUAL',JO.salary/2080) as salary_wage
    from link_status_seeker lss,job_order jo,business bs,look_industry li,link_job_order ljo,look_job lj,job_seeker js
    where lss.status_date between '06-APR-04' and '20-APR-04'
    and jo.job_order_no = lss.job_order_no
    and jo.business_no = bs.business_no
    AND bs.INDUSTRY_ID = li.INDUSTRY_ID
    AND ljo.JOB_ORDER_NO = jo.JOB_ORDER_NO
    AND ljo.JOB_ID = lj.JOB_ID
    and js.seeker_id = lss.seeker_id
    -- and lss.status_id = 105 105 is hired

    I dont think your question is clear.
    Do you mean you want to put where clause that looks like:
    where decode (JO.salary_type,'MONTHLY',JO.salary/173.34,
    'BIWEEKLY',JO.salary/80,
    'HOURLY',JO.salary,
    'ANNUAL',JO.salary/2080) > <some amount>
    ? if yes, you can do it.
    -Bipin.

  • Is it possible to requery only a single row of a multi record block?

    Hi,
    I have a data block say "Employees". This is a multi record block.
    Requirement: Two users are working on the same form (front end). Now the user1 has made change for EMP1 The same is not reflected in the User2 Session. Hence i need to requery the values updated for EMP1
    Issue: Since there lots of employees listed in this block. i do not want all the employees details to be required (Block requery). Instead is it possible to requery only a perticular record to be required?
    Thanks,
    Vidya

    I think not possible........
    Usually Approach is the data in grid table displays as read only and when user press EDIT button then they can edit one single record in a separate window.
    ooh got one idea.......
    may be create a save point and rollback to that particular save point ....... i hv never tried it but try it might solves your problem
    there is a feature of Clear_form rollback to save point
    PROCEDURE CLEAR_FORM
      (commit_mode    NUMBER,
       rollback_mode  NUMBER);
    Parameters
    If the end user has made changes to records in the current form or any called form, and those records have not been posted or committed, Form Builder processes the records, following the directions indicated by the argument supplied for the following parameter:
    commit_mode     ASK_COMMIT  Form Builder prompts the end user to commit the changes during CLEAR_FORM processing.
    DO_COMMIT  Form Builder validates the changes, performs a commit, and flushes the current form without prompting the end user.
    NO_COMMIT  Form Builder validates the changes and flushes the current form without performing a commit or prompting the end user.
    NO_VALIDATE  Form Builder flushes the current form without validating the changes, committing the changes, or prompting the end user.
    rollback_mode     TO_SAVEPOINT  Form Builder rolls back all uncommitted changes (including posted changes) to the current form's savepoint.
    FULL_ROLLBACK  Form Builder rolls back all uncommitted changes (including posted changes) which were made during the current Runform session.  You cannot specify a FULL_ROLLBACK from a form that is running in post-only mode.  (Post-only mode can occur when your form issues a call to another form while unposted records exist in the calling form.  To prevent losing the locks issued by the calling form, Form Builder prevents any commit processing in the called form.) Edited by: BaiG on Apr 12, 2010 3:49 PM

  • Would it be possible to export only one response, such as only the highlighted one?

    Would it be possible to export only one response, such as only the highlighted one?

    You can use the "Show details" option in the View Responses tab:
    Once you activated the detail view, you can export the detail view (that contains a single response):
    thanks
    Roman

  • Is it possible to count internet traffic?

    is it possible to count internet traffic?

    You can use this.
    http://i1224.photobucket.com/albums/ee374/Diavonex/d932d1b8.jpg
    http://i1224.photobucket.com/albums/ee374/Diavonex/e839df15.jpg

Maybe you are looking for

  • PC crashing after upgrade to Quicktime 7

    Win XP home edit SP2 .MOV files played satisfactorily on Quicktime 6 but after I upgraded to Quicktime 7 the system would crash (blue screen) on attemting to open any .MOV file. The crash message was KERNAL STACK INPAGE ERROR STOP: 0x00000077. AVI fi

  • 2D picture control doesn't refresh properly

    I have an application which displays a picture in a 2D picture indicator and draws a few rectangles and lines on top of the picture.  The locations of these lines change throughout the day, and the application is designed to run minimized and then pr

  • Question: Anybody know the relationship between raw temp & rgb temp?

    I am trying to normalize relative  temperature adjustments for proper application to both raw files and rgb  (e.g. tiff/jpeg). Presently I divide the raw temperature offset by 100 to keep from over correcting tiff/jpegs. This  works sub-optimally. -

  • Change Logical System BW

    Hi all, our basis team changed the logical system name of our BW-Development system (no system copie!!!) becaues the name wasn`t corresponding to the defined naming conventions... Now when using RSA1 we receive the message "Logical system name has be

  • APEX Totals on Tabular form

    I have tabular form layout with totals. I want to use these totals for some other calculation. Are these totals stored in some field that I can use. The tabular form is based on Select list and displays totals at the end. Thanks for help, Suman