Select by the numbers: possible?

How can I make a selection like this:
Completely select all tones above 240, with the feathering being between 230 & 240.
Much appreciated.

Merge visible to a new layer. Then create a group with this new layer in it.
Split the sliders for feathering.
Double-click the layer to record a set layer styles of current layer step in the action. What I do is actually set the blend if (for "this layer" to answer your other question) to a random setting. Then record another action step to set it back to the default. Toggle the dialogue on for this second step (the little black rectangle to the left of the step, and to the right of the checkmarks column in the actions panel).
Merge the group (command e). Then select that group's transparency (either by command-clicking the layer or through the load selection dialogue). Delete the group. Save the selection if you like, or just have it remain active as the action completes.
My reference to a clipped solid color layer was incorrect. So ignore that. When I originally created this action, I had a solid color layer of vibrant red underneath the temp merged layer, so as I adjusted the blend if I got visual feedback of my selection. But to me it was counter-intuitive, as the red represented what _wasn't_ selected. I thought a clipped solid color layer on top would achieve the reverse, but the solid color is treated as the the actual values of the blend if, and screws things up. I haven't found a workaround for that (and haven't really used this action since I created it... ). Maybe a white solid color layer would be good enough.

Similar Messages

  • How to replace text in selected cells in Numbers 3?

    I want to replace a few words in Numbers 3, but I can't find where I can limit the replacement within chosen cells.
    In previous version, there was a drop down list I can choose to limit the replacement to chosen cells or current sheet.
    But now when I use replace all, it will replace all words in all sheets.
    Anyone knows how to do it?
    Thanks!
    Allan

    The Find Replace in Selection Automator Service (Dropbox download) can do what you want.
    To install, double-click the .workflow package and, if necessary, click 'Open Anyway' in System Preferences > Security & Privacy.
    To use, make your selection in a table, then choose Find Replace in Selection from the Numbers > Services menu.
    SG

  • Is it possible for Applescript to know what link is selected in the Indesign Links Palette?

    Hi there,
    I've written some ApplesScripts for Indesign that act on all links, missing links and/or selected links, but what if I wanted to perform an action on a link that is only selected in the links palette?
    Is it possible for AppleScript to know which link is selected in the Indesign links palette?
    Regards,
    David

    Hi czigrand,
    Thanks for visiting Apple Support Communities.
    Currently, you can gift dollar amounts or individual items (EG. songs) on the iTunes Store. See this article for more information:
    In the iTunes Store, you can gift a dollar amount or specific music, movies, TV shows, or apps from your iPhone, iPod touch, iPad, Mac, or PC. Follow these steps to send a gift from the iTunes Store.
    iTunes: Sending iTunes Gifts
    http://support.apple.com/kb/HT2736
    Best Regards,
    Jeremy

  • Can I cause checking a box to add 1 to a calculated form field?  I have a field that sums the numbers entered in several previous fields and need to be able to add "1" if a checkbox is selected as well.

    Can I cause checking a box to add 1 to a calculated form field?  I have a field that sums the numbers entered in several previous fields and need to be able to add "1" if a checkbox is selected as well.

    I think it has something to do with the way the value of the check box is exported, but I'm not sure.  With nothing being exported to Data5, Data6 displays the sum of Data1-4 rounded down to the nearest whole number and updates automatically as Data1-4 are updated.
    Right now, assuming Data1-4 are 0, where data 5 is the output of the second example and any box is checked,  "1" is displayed in data5 but nothing is added to data 6. Selecting any other check box or deselecting that check box will cause data6 to add 1 even if data5 displays "0".  By way of example:
    Selecting Check box 16 results in Data5 displays 1 and Data6 displays zero.
    Then, if any or all of Checkbox17-20 are selected, Data5 displays 1 and Data6 displays 1.
    Then, if any or all of Checkbox17-20 are deselected, Data5 Displays 1 and Data6 displays1.
    Then, if Checkbox16 is deselected, Data5 displays 0 and Data6 displays 1.

  • Because I have taken over 9,999  pics, my phone is now duplicating image numbers. The problem is when I am importing with Image Capture, when I select images, the program is importing BOTH the old images of the same number as well as the new ones. Help?

    Because I have taken over 9,999 images, my phone is now duplicating image numbers. The problem is that Image Capture now imports BOTH images when I select the new ones that share numbers with old ones.  The images were completely mixed when they showed up in Image Capture - Old image 0001, new image 0001, old image 0002, new image 0002 and so forth. I clicked on "date," which then rearraged the images, and I selected only the new ones, but when they actually import to my computer BOTH old and new images are importing. Has anyone figured out how to solve this problem?

    Well, obviously all I needed to do  to solve the problem was to post about it. It has stopped, so all is well!

  • In the numbers app, using the "date and time" function, is it possible to remove the time? I need to put together a list of dates, but I don't need or want times.

    In the numbers app, using the "date and time" function, is it possible to remove the time? I need to put together a list of dates, but I don't need or want times.

    When formatting your column to date/time, pick Date & time, and then pick the letter i in the circle to the right. Then scroll down and pick "No time"
    Jason

  • Produce a range of numbers with select from the gaps of ID column

    (1)
    Suppose I have a table t which has rows like this:
    A B
    2 4
    6 7
    I would like to use select to produce rows with numbers ranging between A column and B column inclusive
    for each row, like this:
    select ... from t ...
    2
    3
    4
    6
    7
    (2)
    Suppose I have ID column which has gaps, I would like to get lowest <N> available numbers between the gaps.
    I did research, and I can find the range of the gaps, but I cannot have the numbers listed individually, that is why
    I ask question (1). But is there a direct way to get the list instead of going through ranges and the list.
    For example, I have ID column which has
    2
    5
    6
    7
    9
    2000000
    I would like to get a select query that produces
    select ...
    3
    4
    8
    10
    11
    I have a way to get a list from 2 to 2000000 and then minus what we have to get all the
    gap numbers, but that is not efficient and could runs out of memory.
    PS: Before I post to this group, I did research already on "connect by", with recursive queries.

    First of all, I would like to thank jeneesh and Frank for helpful and correct reply. However, due to the a bug of this forum,
    when I mark jeneesh's reply as correct, I cannot mark Frank's reply as correct anymore. Therefore I would like to formally
    state here that I have tested both solutions and they are both correct. jeneesh and Frank use different approach, connect by
    and less join ( <=, I do not know what is the proper name for it ).
    Secondly I would like to report my small findings: use connect by, you control the level from 1 to the max number, so you
    do not need to use order by, and the performance is better (0.37 seconds version 0.92 seconds). And also it performs better
    if I use an intermediate view to limit the result sets. One line of code is worth one thousand words, now I am posting two
    versions of the code and highlighted the points I mentioned here.
    I am sorry that either I do not know how to format the code or I do not have the capability when posting on this forum.
    The code listing does not look good, but I hope you get the idea. I have "plain text" and I am not if I can use fixed width font
    and preserve space. After I used the spelling checker, it becomes double spaced and I have to manually delete the blank lines.
    /* I learned about { code } after the post and edited the original post */
    Thanks again to both jeneesh and Frank.
    "connect by" version:
    SQL> VARIABLE  new_id_cnt NUMBER
    SQL> EXEC        :new_id_cnt := 10;
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.00
    SQL> WITH my_table AS
      2  (
      3     SELECT num
      4     FROM   prs_elm
      5     WHERE  1=1
      6  )
      7  ,       my_num   AS
      8  (
      9  SELECT num, ct
    10  FROM   (
    11                    SELECT num AS num, LEAD(num) OVER (ORDER BY num) - num - 1 AS ct
    12                    FROM   ( SELECT 0 AS num
    13                             FROM   DUAL
    14                             UNION ALL
    15                             SELECT num
    16                             FROM   my_table
    17                             UNION ALL
    18                             SELECT ( MAX(num) + :new_id_cnt + 1 ) AS num
    19                             FROM   my_table
    20                    )
    21          )
    22  WHERE      ct >= 1
    23  AND         ROWNUM <= :new_id_cnt
    24  )
    25  SELECT     num + level AS available_id
    26  FROM       my_num
    27  WHERE      ROWNUM  <= :new_id_cnt
    28  CONNECT BY level <= ct
    29  AND        prior num = num
    30  AND        prior sys_guid() is not null
    31  ;
    AVAILABLE_ID
            3219
            3261
            3264
            3269
            3270
            3275
            3281
            3288
            3289
            3290
    10 rows selected.
    Elapsed: 00:00:00.37"Less join" version:
    SQL> VARIABLE  new_id_cnt NUMBER
    SQL> EXEC        :new_id_cnt := 10;
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.00
    SQL> WITH my_table AS
      2  (
      3     SELECT num
      4     FROM   prs_elm
      5     WHERE  1=1
      6  )
      7  ,       my_num   AS
      8  (
      9                    SELECT num AS num, LEAD(num) OVER (ORDER BY num) - num - 1 AS ct
    10                    FROM   ( SELECT 0 AS num
    11                             FROM   DUAL
    12                             UNION ALL
    13                             SELECT num
    14                             FROM   my_table
    15                             UNION ALL
    16                             SELECT ( MAX(num) + :new_id_cnt + 1 ) AS num
    17                             FROM   my_table
    18                    )
    19  )
    20  ,       my_cnt    AS
    21  (
    22          SELECT  LEVEL AS ct
    23          FROM    DUAL
    24          CONNECT BY    LEVEL <= :new_id_cnt
    25  )
    26  SELECT     available_id
    27  FROM
    28  (
    29          SELECT    n.num + c.ct AS available_id
    30          FROM      my_num n
    31          JOIN      my_cnt c  ON c.ct <= n.ct
    32          WHERE     n.ct >= 1
    33          ORDER BY  available_id
    34  )
    35  WHERE      ROWNUM  <= :new_id_cnt
    36  ;
    AVAILABLE_ID
            3219
            3261
            3264
            3269
            3270
            3275
            3281
            3288
            3289
            3290
    10 rows selected.
    Elapsed: 00:00:00.92PS: In Frank's code, there is a typo, <= should read as <.
    Edited by: PuraVidaOTN on 04-feb-2013 22:49
    What: To use tags to format the code.
    Edited by: PuraVidaOTN on 04-feb-2013 22:56                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Is it possible to make is so that, immediately after I import a new clip into FCP, the file is automatically selected in the Event Library? (Similar to how After Effects and Premiere work).

    Is it possible to make is so that, immediately after I import a new clip into FCPX, the file is automatically selected in the Event Library? (Similar to how After Effects and Premiere work). Right now, after I import a new file, I have to then go searching for it amid all the other files in my project. It would be extremely helpful if the file I just imported was already highlighted and selected after import, making it instantly "locatable" and ready to go.

    Kryan73 wrote:
    …  after I import a new file, I have to then go searching for it amid all the other files…
    in a perfect world, you do know the recording date, and you simply scroll to that date.
    in a very perfect world, all your other imports are already tagged, so just have to create a smart list 'unrated' ...
    (I know those messy Events… a friend of mine constantly ignores my advice to check the time/date on his camera; on every battery swap, the cam creates a very erratic timestamp ... his actual recordings are listed as made in "2004" or in "2020" .... )

  • Does anyone know if its possible to hide the numbers that appears on the Table of content?

    In iBooks Author, I would like to know if its possible to hide the numbers that appears on the Table of contents, does anyone know?. Also I would like to change the yellow color that appers on the mini pics on the image gallery widgets, does anyone know if this is possible?
    Thanks in advance

    I don't believe doing either is possible.
    Michi.

  • For some reason my phone is using another number and won't let me delete the number and select my own numbers. Any reasons why

    For some reason my phone is using another number and won't let me delete the number and select my own numbers. Any reasons why

    Are you talking about iMessage?

  • Select list/menu to automatically show the numbers 0-99?

    Hi
    I have a select list/menu on my page and I would like the list to automatically show the numbers 0-99.
    Been searching the interwebs for answers/tutorials, but no luck.
    Any clues?
    Using CS5, asp
    Regards,
    Christian

    Thanks for everyone advise. I managed to get it working
    I sent the stockID on;y to the cart page, made a new variable based on the stockID the made a query and got all the information based on the new stockID variable
    <?php
    $newStockID = $XCart_StockID = ${$XCName}["contents"][0][$XCart__i];
    mysql_select_db($database_beau, $beau);
    $query_rsSize = "SELECT * FROM beauAW13_SizeList, beauAW13_Stock WHERE beauAW13_Stock.SizeID = beauAW13_SizeList.SizeID AND beauAW13_Stock.StockID = '$newStockID'";
    $rsSize = mysql_query($query_rsSize, $beau) or die(mysql_error());
    $row_rsSize = mysql_fetch_assoc($rsSize);
    $totalRows_rsSize = mysql_num_rows($rsSize);
                              ?>
    select list
    <option value="<?php echo $row_rsProduct['StockID']; ?>"><?php echo $row_rsProduct['Size']?></option>

  • Is there an app and/or is it possible to get the numbering back on the photos in the camera roll...separating by dates does not help me...need the numbers back!

    I run a food blog page and have over 2000 photos that were numbered before the previous update.  I depended on the numbers of my camera roll...is there an app and/or a way to get the numbers to show on the photos again?  Ugh!

    In the Photos app itself no, not unless you edit the photos and add a number onto them. There are third-party photos apps which can view the photos in the Photos app and show you their filenames e.g. PhotoMeta, or there are photo management apps such as Photo Manager Pro which you could use instead of the Photos app - you can copy photos to that app from the Photos app, and it shows their filenames

  • How do I sort a selection, not the entire table?

    I have a spreadsheet in numbers that I only need to sort a selected section, not the entire table.  In the previous version of numbers, it allowed 'sort selected range', but I can't find that in the newer version.  When I have the selection outlined, the entire table sorts -- ??

    Ann,
    Nobody here in the Discussions has reported finding a way to sort selected rows, as was possible in Numbers 2.3. It seems that it was just left out of the new version to streamline the interface.
    The workaround would be to structure your Tables such that content requiring separate sorting would be in a separate table.
    Jerry

  • SQL : Can u print the numbers 1 upto 10 using SQL only

    Hi Friends,
    I want to know is there a possibility to print all the numbers between 1 upto 10 using a sql statement only.
    An earlier reply is appreciated.
    Thanks in Advance
    Sriram

    You may try something like this:
    select rownum from all_objects where rownum<=10;
    This should normally work, for I can't imagine how one may have a DB with less then 10 objects. Still, it's not too elegant.
    Why not use pl/sql?
    declare
    n number
    begin
    dbms_output.enable;
    for n in 1..100 loop
    dbms_output.put_line(to_char(n, '9990'));
    end loop;
    This would seem the most natural approach.
    Regards,
    BD.

  • Report to show Service Requests that are open on a day selected by the user

    Dunno if I'm being thick, but I can't see how to do this in a report/dashboard...
    The user selects a day and the report pulls back all the Service Requests that were open on that day using the following logic...
    Service Request Opened Date <= Selected date & Service Request Closed Date >= Selected date
    Is this possible?

    You can do this with a report or a dashboard.
    For a report, create a report your subject ares, like Service Request. In Step 3, Create a prompt on your date and choose Column Filter Prompt. Give the prompt a caption ("Enter/Choose Date" for example). Choose the date field for the Filter on Column. Determine how you want the users to select the value and hit OK. My experience has been that you need to let users type in the date, as opposed to choosing from a drop-down list, because of the volume of data and performance reasons, but test it to determine what works best for your needs.
    For a dashboard, you would need to create a dashboard prompt for your dashboard report. You do this by creating a new report on your intended subject area, i.e. Service Request. Instead of creating the report as you normally do, you need to click on the Create Dashboard Prompt button at the top left, just below the Oracle logo. Choose the right reporting area, then complete the prompt details. Don't forget to allow for the prompt in your report.
    I always recommend that you consider purchasing a great book on reporting, written by Mike Lairson. It is an excellent resource for nearly all of your reporting questions. You can find it on amazon.com.
    http://www.amazon.com/Oracle-Demand-Reporting-Osborne-ORACLE/dp/0071593047/ref=sr_1_1?ie=UTF8&s=books&qid=1274893170&sr=8-1
    Good Luck,
    Thom

Maybe you are looking for

  • How to add new button in Customized page....

    Dear All, I need to add new button to the page button bar in the UI page.I tried like this in the controller but still i can not get output: OAPageButtonBarBean oapbb = (OAPageButtonBarBean)oawebbean.findIndexedChildRecursive("OrderPageButtons"); OAB

  • Error in calling/converting smart form from ECC to pdf in portal.

    Hi, We have a requirement in our project where we have to show IT form in portal exactly in the way payslip are shown in ESS Screen, that is in the pdf form in ess portal screen. For this my HR abap consultant has made one customize smart form which

  • Consuming a webservice and attributes

    I'm trying to noodle my way thru consuming a webservice and it is not making sense when I'm trying to get attributes from a webservice. Can someone point me in the right direction. I've included what the xml output looks like and my cfinvoke and a cf

  • Iworks on two Macs?

    I own a IWORKS 09 single licence, is it possible to Upgrade into a famliy licence

  • Splitting DATA_TOP to different mountpoints

    Hi, I am doing a single node to multi node clone of Apps. In the database code tree copy I have placed the RDBMS_ORACLE_HOME in /u01 Now I need to evenly split data files across three mount points /u02 , /u03, /u04. How can I achieve this? Can this b