Forcing onPress to react on the exact shape, rather then on the bounding box

If I have a clip with an imported image then clip.onPress
reacts on the
bounding box of the clip rather then on the exact shape of
the imported
image even if the imported image has a transparent
background.
To make it to react to in image shape only I have to use
Trace BitMap which
results in deterioration of the image quality and if the clip
is moving,
Trace BitMap also slows down computer perfprmance.
Is there other technique to make onPress to react on the
exact shape, rather
then on the bounding box?

An image is always rectangular, it just may have transparent
parts. So an MC containing an image is always as big as the whole
image (at least).
You could use the MovieClip.hitArea property, and create
another MC inside your clip that specifies the active area for
mouse clicks. This is easy if you have the image loaded into the
clip inside the Flash IDE.
If it's loaded on runtime, you might use the BitmapData class
(if you use Flash 8) to get the pixel value of the image at the
position where the image was clicked, check if it's transparent or
opaque, and decide whether to call the onPress action or not.
hth,
blemmo

Similar Messages

  • I have 4 equal oblong shape created with borders How do I go about knowing what size the selection area is so that I can crop an image to fit. I don't want to use paste in then adjust the bounding box to suit

    I have 4 equal oblong shape created with borders How do I go about knowing what size the selection area is so that I can crop an image to fit. I don't want to use paste in then adjust the bounding box to suit

    What do you mean a moderator

  • Why can't I see the bounding box for objects on the pasteboard?

    Adobe CC sucks. Why last week was I able to see the bounding box of objects that I had on the pasteboard in InDesign CC, including objects that didn't contain anything yet, and now suddenly this week I can't see them?
    It seems as though every week something inexplicably gets changed around. First Save As had no shortcut, then suddenly the shortcut is back, but it doesn't work.
    Get it together Adobe. I don't want to be paying a subscription for a product that feels as though it's still in Beta mode.

    Hi Steve,
    Yes thanks, I don't think I was clear in what I wrote. I knew that they could be turned back on, but why did I open InDesign this morning to find my workspace/preferences different than how I left them on Friday?
    And I know it isn't a case of my mistakenly turning off the frame edges, because the operator that sits next to me had the exact same thing happen to her copy of InDesign this morning also.
    I understand the requirement to update things, but it really does feel as though I'm using software that is still in testing.

  • In photoshop elements 13, the bounding box is very light and hard to see.  Can this be darkened?

    In photoshop elements 13, the bounding box is very light and hard to see.  Is there anyway that this can be darkened?

    When my wife first logs in, this is the screen that comes up:
    So we hit "Continue" and the next screen comes up:
    So then we click "This is Okay" and the next screen comes up:
    It doesn't matter what we select here; the next screen is always the following:
    And here is where it dead ends. There's no place to enter an alternate name under 40 characters, there's nothing to click on. And this has been happening every time my wife has tried to log in.

  • Why are my Illustrator images getting thicker strokes when I take the bounding box and make them smaller?

    Why are my Illustrator images getting thicker strokes when I take the bounding box and make them smaller? This has never happened to me. I'm not an expert at Illustrator, but I do know some fundamentals.

    Thank you for responding so quickly. No apologies necessary - I know this Forum isn't McDonalds - don't expect an answer to be served up right away. You helped me out with a big issue yesterday.
    I am using a mac - OSX 10.7.5
    I have Adobe Creative Suites - CS5 - Illustrator version is 15.0.2
    The contents I am placing are all  Vector - Illustrator files
    But, I wonder about some of the vector files I work with.  Could a "line weight/thickness" be 'assigned' to the drawing and screw things up? I used 'simple' linear (line) drawings from SolidWorks that have been converted to ai files. It's just weird because I checked the stroke of the drawing and it's not out of line.
    I am attaching part of some box labels. You can see how the drawings, of the products, on the 'left side' are "thick" after embedding them. I think the "Global Logo" was pasted into a template not linked that's why it's okay. But look at the Quiet Thunder logo - it looks terrible. These labels are only 2.25" X 6.5", so its important I keep the images lightweight. 
    Your help is very much appreciated. Thank you!

  • Can PB can calcute the bounding box as the needed region in AE?

    Hi,
    I wrote many small pixel bender that I use mainly in AE. However I need them to be as efficient as possible, so I wonder if Pixel Bender can obtain the bounding box of an image input as the needed region. This way, it will not calculate an entire frame when there is only a few pixels in the frame.
    Thanks
    Jocelyn Tremblay

    Hi,
    I did a major breakthrough by rethinking the model. Now I get a real speed improvment, and if the image is fully opaque, there is not too much drawback.
    Instead of a simple bounding box, I'm creating a grid in which each cell represent a region of the source and is float4(1). if there is any non-zero transparent pixel. In the last kernel of the graph, i'm processing only when the corresponding value in the grid is float4(1.). I get really efficient results from that. I'm including two graphs. A basic one with a fixed grid of 16px (I didn't do any beanchmark for the grid size) where I output the original image composited over the scaled grid in green. The second one, where the last kernel is a box blur, the grid size equal the blur radius, and there is a convolution kernel between the grid and the box blur that expand the grid to fit the blur.
    GridExperience.pbg
    <?xml version="1.0" encoding="utf-8"?>
    <graph name = "GridExperience" xmlns="http://ns.adobe.com/PixelBenderGraph/1.0">
        <metadata name = "namespace" value =  "com.jocelyntremblay"/>
        <metadata name = "vendor" value = "Jocelyn Tremblay" />
        <metadata name = "version" type = "int" value = "1" />
        <!-- Image inputs and outputs of the graph -->
        <inputImage type = "image4" name = "src" />
        <outputImage type = "image4" name = "dst" />
        <!-- Graph parameters -->
        <parameter type="float2" name="sourceSize" >
            <metadata name="minValue" type="float2" value="1"/>
            <metadata name="maxValue" type="float2" value="4096" />
            <metadata name="defaultValue" type="float2" value="634., 396." />
            <metadata name="aeUIControl" value="aePoint" />
            <metadata name="aePointRelativeDefaultValue" type="float2" value="1, 1" />
        </parameter>
            <!-- Graph parameters -->
        <parameter type="float" name="gridSize" >
            <metadata name="minValue" type="float" value="1"/>
            <metadata name="maxValue" type="float" value="64" />
            <metadata name="defaultValue" type="float" value="16" />
        </parameter>
         <!-- Embedded kernel -->
         <kernel>
          <![CDATA[
             <languageVersion : 1.0;>
             kernel getProcessingGrid
             <  
                namespace:"com.jocelyntremblay";
                vendor:"Jocelyn Tremblay";
                version:1;
             >{
                input image4 src;
                output float4 dst;
                parameter float2 sourceSize
                <
                    parameterType : "inputSize";
                    inputSizeName : "src";
                >;
                parameter float gridSize
                <
                    minValue:float(1.0);
                    maxValue:float(64.0);
                    defaultValue:float(5.0);
                >;
                region changed(region inputRegion, imageRef inputIndex){
                    return region(float4(0, 0, ceil(sourceSize.x/gridSize), ceil(sourceSize.y/gridSize)));
                void evaluatePixel(){
                    float j;
                    float4 pix;
                    dst = float4(0.0);
                    for (float i = 0.; i < gridSize; i++){
                        j = 0.;
                        for (j; j < gridSize; j++){
                            pix = sampleNearest(src, float2(floor(outCoord().x) * gridSize + i, floor(outCoord().y) * gridSize + j));
                            if (pix.a > 0.){
                                dst = float4(1.0);
                                i = j = gridSize;
          ]]>
         </kernel>
         <kernel>
          <![CDATA[
             <languageVersion : 1.0;>
             kernel drawProcessingGrid
             <  
                namespace:"com.jocelyntremblay";
                vendor:"Jocelyn Tremblay";
                version:1;
             >{
                input image4 src;
                input image4 processingGrid;
                output float4 dst;
                parameter float gridSize
                <
                    minValue:float(1.0);
                    maxValue:float(64.0);
                    defaultValue:float(5.0);
                >;
                void evaluatePixel(){
                    float4 gridSegment = sampleNearest(processingGrid, float2(floor(outCoord().x/gridSize), floor(outCoord().y/gridSize)));
                    if (gridSegment.a > 0.){
                                    //process
                                    dst = float4(0., 1., 0., 1.);
                                    float4 tt = sampleNearest(src, outCoord());
                                    if(tt.a > 0.){
                                        dst.rgb = tt.rgb;
                    else{
                        //do not process
                        dst = float4(0.);
          ]]>
         </kernel>
        <!-- Instances of the nodes -->
        <node id = "getProcessingGrid" name ="getProcessingGrid" namespace = "com.jocelyntremblay" vendor = "Jocelyn Tremblay" version ="1">
        <evaluateParameters>
                <![CDATA[void evaluateParameters() {
                    getProcessingGrid::gridSize = gridSize;
                    getProcessingGrid::sourceSize = sourceSize;
                }]]>
            </evaluateParameters>
        </node>
        <node id = "drawProcessingGrid" name ="drawProcessingGrid" namespace = "com.jocelyntremblay" vendor = "Jocelyn Tremblay" version ="1">
        <evaluateParameters>
                <![CDATA[void evaluateParameters() {
                    drawProcessingGrid::gridSize = gridSize;
                }]]>
            </evaluateParameters>
        </node>
        <!-- Connect the graph -->
        <connect fromImage = "src" toNode = "getProcessingGrid" toInput = "src" />
        <connect fromImage = "src" toNode = "drawProcessingGrid" toInput = "src" />
        <connect fromNode = "getProcessingGrid" fromOutput = "dst" toNode = "drawProcessingGrid" toInput = "processingGrid" />
        <connect fromNode = "drawProcessingGrid" fromOutput = "dst" toImage = "dst" />
    </graph>
    GridExperienceBoxBlur.pbg
    <?xml version="1.0" encoding="utf-8"?>
    <graph name = "GridExperienceBoxBlur" xmlns="http://ns.adobe.com/PixelBenderGraph/1.0">
        <metadata name = "namespace" value =  "com.jocelyntremblay"/>
        <metadata name = "vendor" value = "Jocelyn Tremblay" />
        <metadata name = "version" type = "int" value = "1" />
        <!-- Image inputs and outputs of the graph -->
        <inputImage type = "image4" name = "src" />
        <outputImage type = "image4" name = "dst" />
        <!-- Graph parameters -->
        <parameter type="float2" name="sourceSize" >
            <metadata name="minValue" type="float2" value="1"/>
            <metadata name="maxValue" type="float2" value="4096" />
            <metadata name="defaultValue" type="float2" value="1920., 720." />
            <metadata name="aeUIControl" value="aePoint" />
            <metadata name="aePointRelativeDefaultValue" type="float2" value="1, 1" />
        </parameter>
        <parameter type="float" name="blurRadius" >
            <metadata name="minValue" type="float" value="0"/>
            <metadata name="maxValue" type="float" value="25" />
            <metadata name="defaultValue" type="float" value="5" />
        </parameter>
         <!-- Embedded kernel -->
         <kernel>
          <![CDATA[
             <languageVersion : 1.0;>
             kernel getProcessingGrid
             <  
                namespace:"com.jocelyntremblay";
                vendor:"Jocelyn Tremblay";
                version:1;
             >{
                input image4 src;
                output float4 dst;
                parameter float2 sourceSize
                <
                    parameterType : "inputSize";
                    inputSizeName : "src";
                >;
                parameter float gridSize
                <
                    minValue:float(1.0);
                    maxValue:float(64.0);
                    defaultValue:float(16.0);
                >;
                region changed(region inputRegion, imageRef inputIndex){
                    return region(float4(0, 0,  ceil(sourceSize.x/gridSize), ceil(sourceSize.y/gridSize)));
                void evaluatePixel(){
                    float j;
                    float4 pix;
                    dst = float4(0.0);
                    for (float i = 0.; i < gridSize; i++){
                        j = 0.;
                        for (j; j < gridSize; j++){
                            pix = sampleNearest(src, float2(floor(outCoord().x) * gridSize + i, floor(outCoord().y) * gridSize + j));
                            if (pix.a > 0.){
                                dst = float4(1.0);
                                i = j = gridSize;
          ]]>
         </kernel>
         <kernel>
          <![CDATA[
             <languageVersion : 1.0;>
            kernel ConvKernel
            <
            namespace: "After Effects";
            vendor : "Adobe Systems Inc.";
            version : 1;
            description : "Convolves an image using a smoothing mask";
            >
                input image4 source;
                output pixel4 result;
                const float3x3 smooth_mask = float3x3( 1.0, 1.0, 1.0,
                1.0, 1.0, 1.0,
                1.0, 1.0, 1.0);
                const float smooth_divisor = 9.0;
                float4 convolve(float3x3 in_kernel, float divisor) {
                    float4 conv_result = float4(0.0, 0.0, 0.0, 0.0);
                    float2 out_coord = outCoord();
                    for(int i = -1; i <= 1; ++i) {
                        for(int j = -1; j <= 1; ++j) {
                            conv_result += sampleNearest(source,
                            out_coord + float2(i, j)) * in_kernel[i + 1][j + 1];
                    conv_result /= divisor;
                    return conv_result;
                void evaluatePixel() {
                    float4 conv_result = convolve(smooth_mask, smooth_divisor);
                    result = conv_result;
                region needed( region output_region, imageRef input_index ) {
                    region result = output_region;
                    result = outset( result, float2( 1.0, 1.0 ) );
                    return result;
                region changed( region input_region, imageRef input_index ) {
                    region result = input_region;
                    result = outset( result, float2( 1.0, 1.0 ) );
                    return result;
            } //kernel ends
            ]]>
          </kernel>
          <kernel>
          <![CDATA[
             <languageVersion : 1.0;>
                kernel BasicBoxBlur
                <   namespace : "AIF";
                    vendor : "Adobe Systems";
                    version : 2;
                    description : "variable Radius Box Blur"; >
                input image4 src;
                input image4 processingGrid;
                output float4 dst;
                parameter float blurRadius
                <
                    minValue:float(0.0);
                    maxValue:float(25.0);
                    defaultValue:float(5.0);
                >;
                dependent int radiusAsInt;
                void evaluateDependents(){
                    radiusAsInt = int(ceil(blurRadius));
                parameter float gridSize
                <
                    minValue:float(1.0);
                    maxValue:float(64.0);
                    defaultValue:float(16.0);
                >;
                region needed(region outputRegion, imageRef inputRef){
                    float2 singlePixel = pixelSize(src);
                    return outset(outputRegion, float2(singlePixel.x * ceil(blurRadius), singlePixel.y * ceil(blurRadius)));
                region changed(region inputRegion, imageRef inputRef){
                    float2 singlePixel = pixelSize(src);
                    return outset(inputRegion, float2(singlePixel.x * ceil(blurRadius), singlePixel.y * ceil(blurRadius)));
                void evaluatePixel(){
                    float4 gridSegment = sampleNearest(processingGrid, float2(floor(outCoord().x/gridSize), floor(outCoord().y/gridSize)));
                    if (gridSegment.a > 0.){
                        float denominator = 0.0;
                        float4 colorAccumulator = float4(0.0, 0.0, 0.0, 0.0);             
                        float2 singlePixel = pixelSize(src);
                        for(int i = -radiusAsInt; i <= radiusAsInt; i++)
                            for(int j = -radiusAsInt; j <= radiusAsInt; j++)
                                colorAccumulator += sampleNearest(src,
                                    outCoord() + float2(float(i) * singlePixel.x, float(j) * singlePixel.y));
                                denominator++;
                        dst = colorAccumulator / denominator;
                    else{
                        //do not process
                        dst = float4(0.);
          ]]>
         </kernel>
        <!-- Instances of the nodes -->
        <node id = "getProcessingGrid" name ="getProcessingGrid" namespace = "com.jocelyntremblay" vendor = "Jocelyn Tremblay" version ="1">
        <evaluateParameters>
                <![CDATA[void evaluateParameters() {
                    getProcessingGrid::sourceSize = sourceSize;
                    getProcessingGrid::gridSize = max(1., blurRadius);
                }]]>
            </evaluateParameters>
        </node>
        <node id = "ConvKernel" name ="ConvKernel" namespace = "After Effects" vendor = "Adobe Systems Inc." version ="1"></node>
        <node id = "BasicBoxBlur" name ="BasicBoxBlur" namespace = "AIF" vendor = "Adobe Systems" version ="2">
        <evaluateParameters>
                <![CDATA[void evaluateParameters() {
                    BasicBoxBlur::blurRadius = blurRadius;
                    BasicBoxBlur::gridSize = max(1., blurRadius);
                }]]>
            </evaluateParameters>
        </node>
        <!-- Connect the graph -->
        <connect fromImage = "src" toNode = "getProcessingGrid" toInput = "src" />
        <connect fromImage = "src" toNode = "BasicBoxBlur" toInput = "src" />
        <connect fromNode = "getProcessingGrid" fromOutput = "dst" toNode = "ConvKernel" toInput = "source" />
        <connect fromNode = "ConvKernel" fromOutput = "result" toNode = "BasicBoxBlur" toInput = "processingGrid" />
        <connect fromNode = "BasicBoxBlur" fromOutput = "dst" toImage = "dst" />
    </graph>

  • Changing the bounding box size

    When I go to print an image in Photoshop CC, a dialogue box appears and on the left-hand side is the image to be printed. Bordering the image are small diagonal lines which I'm assuming are the bounding box. The distance between the edge of the page varies from side to side and I want to center the photo. I can't see how to do that.
    Thanks.

    The print dialog preview area show basically three areas.  The Paper size the printer is set to and the sizes are displayed with numeric unites. If you see small diagonal lines these are showing the areas the printer can not print on with the current settings.  With different printer setting this area may change for example if the printer support borderless the side non printable may go way but there still be some top and bottom non printable area. The Bottom non printable area may go away if you switch from sheet feed to roll paper feed. Inside the diagonal line is the printable area and inside that a bounding box of the image. If You check scale for media the image will be scaled to fit within the print area.

  • Can see the bounding box of the object present on the art-board but the colors of that object are not visible!!!! Why???

    I have made some objects in 8-bit design style using rectangular grid tool.
    I was working on the file, and i saved the file, and then illustrator crashed, and all the data in the 8 bit grid wasn't showing up, only the bounding boxes(rectangular-grid) of those 8-bit designed objects were present with no color/no fill.
    I am attaching some screenshots and jpegs to show how it was before and how it is now.
    Can somebody help me out in this?

    Illustrator crashed when saving and most probably took some of your file with it.
    Do you have a backup copy?

  • Lost the bounding box (scale handles)

    HELP. I have lost the bounding box (scale handles) for only the Rectangle and Rounded Rectangle Tools. I have tried switching the view options on and off with no changes or improvements. How do I reset the presets or preferences. Will this help? Thanks

    Robert,
    There are a few more options.
    As Larry said, the Live Rectangle bug is limited to the MAC versions starting with 10.7 and 10.8, but not 10.9 (Mavericks) or 10.10 (Yosemite). Hopefully, the bug will be fixed soon.
    So a switch to Mavericks or Yosemite with a reinstallation might be the way to solve it here and now.
    To get round it in each case, it is also possible to Expand the Live Rectangles to get normal old fashioned rectangles, or to Pathfinder>Unite, or to use the Scale Tool or the Free Transform Tool.
    A more permanent way round that is to create normal old fashioned rectangles, after running the free script created by Pawel, see this thread with download link:
    https://forums.adobe.com/thread/1587587

  • Cannot resize object with the bounding box.

    I am using Illustrator CS4. When I move my selection tool to the white square on the bounding box for resizing, I am not getting the normal arrows that appear. When I click on the box and move the pointer the entire box and image move. This was working OK until about 5 hours ago.
    Thanks for any help.  BreBro1

    Are u able to see the bounding box ? It might be hidden. Can u please try this
    goto View > Show Bounding Box
    shortcut Crtl + Shift + B
    give it a try if this doesn't work I would suggest u to share a screenshot so I could help you
    good luck.

  • Resizing in Illustrator CC using the Bounding Box is no longer accurate. What happened?

    In Illustrator CC, resizing an object using the bounding box is no longer accurate. Snapping to other objects or the grid or anything is completely wrong and, worse, inconsistent. Here is a single box being resized 3 times to the same object. Each time, it becomes a different size.
    I used the center-left handle to resize the black box, snapping it to the right edge of the red box. You can see that, each time, it "snaps" to the edge incorrectly. My 80 pt box becomes 78.479 pt, then 79.295 pt, then 79.518 pt.
    This is totally unacceptable, obviously. I'm not sure what the point of guides are if they aren't actually guiding. Does anyone have a fix for this?

    Ethan,
    Did you reinstall after updating to Yosemite? I believe the right order/way is to update the OS first, then reinstall the applications, see 6) below.
    Or you may have a look at the list since something is obviously wrong.
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Can an image in the slideshow widgets be moved around inside the bounding box as can be in a normal image placed into Muse (double clicking on a placed image gives the functionality to move the image around - as per Indesign functionality)

    Can an image in the slideshow widgets be moved around inside the bounding box as can be in a normal image placed into Muse (double clicking on a placed image gives the functionality to move the image around - as per Indesign functionality)

    Can an image in the slideshow widgets be moved around inside the bounding box as can be in a normal image placed into Muse (double clicking on a placed image gives the functionality to move the image around - as per Indesign functionality)

  • Save only the bounding box region of image as png?

    Hi,
    I'd like to save each layer's item as png.
    If possible, i'd like save only the bounding box of image(of an item), and the corresponding bounding box's origin/size info(relative to artboard's origin) somewhere as text file.
    To do this,
    I need to be able to get a bounding box of an item.
    and possibly artboard's origin. (because I'm not sure where a bounding box's coordinate's origin is).
    Thank you in advance

    If I understand you correctly you have one table with a bunch of yes/no values (SA, SC, SS, etc.).  Then for each record in that table you want to output a string listing all the fields from the first table which = yes (i.e are checked).  Perhaps
    the following code would get you started:
    Sub JimNeal()
        Dim strProcedure_Value As String
        Dim rst As DAO.Recordset
        Dim rstOut As DAO.Recordset
        Set rst = DBEngine(0)(0).OpenRecordset("TableWithCheckboxes")
        Set rstOut = DBEngine(0)(0).OpenRecordset("OutputTable")
        Do Until rst.EOF
            strProcedure_Value = ""
            If rst!SA Then strProcedure_Value = strProcedure_Value & "Surface Area,"
            If rst!SC Then strProcedure_Value = strProcedure_Value & "Surface Contour,"
            '... etc
            If rst!SS Then strProcedure_Value = strProcedure_Value & "Steep Slope,"
            rst.MoveNext
            ' Strip off final comma
            If Len(strProcedure_Value) > 0 Then strProcedure_Value = Left(strProcedure_Value, Len(strProcedure_Value) - 1)
            ' Output the string to your output table
            rstOut.AddNew
            rstOut!Procedure_Value = strProcedure_Value
            rstOut.Update
        Loop
        rst.Close
        rstOut.Close
        Set rst = Nothing
        Set rstOut = Nothing
    End Sub
    -Bruce

  • Where the bounding box and handles gone?

    Today I had updated Illustrator 2014 to .1 and I did realized that bounding box are gone...
    It works fine where two or more objects are selected but for one object it just disappeared...
    How to get it back?

    Hi, thank you for your answer
    It applies to plain rectangle tool, it looks like they just made changes to it and for now it doesn't behave as it was in version 18.0
    When I do select two plain rectangle using a shift key then, bounding box is back again, ready to sue..
    Thank you for Pawel's script link
    PS. Is there any place here to post a feature list and to be pretty sure they - I mean Adobe's team, will check it and to apply in the newest version of AI?
    I'm mobile phone designer, and there is hundreds sall things which will make my job pretty easy instead of new great features which my or may not needed for most of the mobile app designers?

  • Where is the Bounding Box?

    When I select items they do not have a bounding box around them, so it is a pain to resize them.

    CMD+SHIFT+B brought it back... wonder why it went away in the first place.

Maybe you are looking for

  • The master site control file does not contain a component item for SMS_STATUS_MANAGER.

    New to the System Center world. We are using a fresh install of Server 2012 R2 and System Center R2 with everything working until Server 2012 R2 Update 1 was installed. Now we are getting the following: Site type: Primary Site or CAS SMS_STATUS_MANAG

  • According to our records, this serial number is registered to another Apple ID.

    I bought an iMac from an ARC thrift store that had been donated.  When I try to register the iMac to my AppleID to see if there's any Applecare left I get the message "According to our records, this serial number is registered to another Apple ID." 

  • I photo not showing up in applications

    his is both a question and an answer.  upgraded (?) to Yosemite....I photo is GONE!!!!  Can;t find it!!! trashed OLD i photo to update 9.6.  all is fine....except i photo is nowhere to be found in DOCK or listed in APPLICATIONS....where the **** is i

  • TreeTable selectedRowKeys not working in Jdev 11.1.1.4

    Hi, We have a treetable which we create using bindings (underlying objects are POJOs and not BC) We used to add a row to the treetable and then select the first node. This code used to work "as is in Jdev 11.1.1.3" Now when we test the same code usin

  • A ques about Reading and Writing non-Latin character Strings

    Never had any need to to the captioned before, so I never investigated it. But now I do. We are in the midst of a major conversion of our software to UTF-8. Oracle Forms displays these Strings (ex: Українська) properly, but when I query the DB column