Slideshow from randomly selected picture out of selected keywords

Hey dear friends
I wish I would find a function in Aperture or even iPhoto, wherein I can set keywords and a timeslot and the application would give me back a randomly selected set of picture accordingly. At the end it is a feature like GENIUS in iTunes.
This would be very nice for family or friends session to have a look at picture normally forgotten, because not part of a print out or excisting perfectly styled slideshow
Can you share some ideas with me or even stimulate APPLE to create such a feature
Thanks and greetings here from Frankonia waiting for the Spring
Franz-Josef

The only way to get images randomly in Aperture is to use an AppleScript, Aperture has no built in random functionality.
If you search the list here for random images restricted to the Aperture community you'll find a number of posts discussing this.
regards

Similar Messages

  • First slide on slideshow from an event pictures

    I created a slideshow from event pictures, the first slide of the slideshow is not the first picture of the event and I can not change it.
    How can I change the first slide of an event on a slideshow?

    Welcome to the Apple Discussions. Make a album of the event so you can arrange the photos manually in the order you'd like. You can also save the slideshow settings to that album so you don't need to reset them if you use that album again in the future.
    OT

  • Selecting a specific Slideshow from iPhoto to view in Front Row

    Hello! Can anybody help me to get Front Row to play an individual Slideshow, please? The Help that Apple provides for using Front Row is very basic, and I've searched for an answer on these forums without any luck.
    When I open Front Row and navigate to Photos>Shared Photos>My Photos I then get a list of just the main headings in my iPhoto library. But each of these headings has individual grouped selections of photos. These are what I want to access, but they aren't accessible from Front Row. For example, if I select Slideshows, I have 36 of these, but Front Row just plays them all together as one slideshow. I don't want this - I want to select one at a time of course.
    Surely there must be a way of doing this? I cannot believe that Apple didn't think of this when they created Front Row, but the instructions for using the program in Mac Help are very brief. One other thing, I can only use Front Row to access my iPhoto library if I have iPhoto running. This seems very poor to me - the library is on the same hard drive - I am not accessing anybody else's library. Again, there is nothing in the Mac Help for Front Row which tells you you must have iPhoto open to view photos in Front Row.
    I do hope somebody can help me, because I especially bought my 27" iMac to view my photos, and being unable to select slideshows, or even subfolders for that matter, is most frustrating.
    Thank you,
    Bruce

    If anybody has stumbled across this thread, having a similar problem to mine, you might be interested in how things finally turned out.
    Eventually I contacted Apple technical support. They spent 90 minutes (yes, at 5p a minute) trying to fix it. They were very helpful, and suggested just about every blessed thing you might think of including dragging the iPhoto library out onto the desktop, creating a new one, dragging the files back in, repairing permissions with Disk Utility - one thing after another. Nothing worked - Front Row stubbornly refused to recognise my iPhoto library.
    In the end what we did was to drag the iPhoto library out (we tried that before, but this went a different route) and put it in folder in the Pictures folder. I gave the folder a name just to identify it. Then I Option-clicked the iPhoto application program (not the library!) and it asked me if I wanted to create a new library, which I did, so I let it create a new one back in the Pictures folder (this was why I moved the original one out of the way).
    So this opened, and of course was blank. So I went back to the Pictures folder in the Finder and opened the folder in which I hid the original iPhoto library. I Option-clicked this library and selected Show Package Contents. So now all the original files, folders and images were revealed. The only folder I needed now was one called Originals. I dragged this folder straight into the big empty window of my open iPhoto application, and iPhoto began to import all my original photos into the new copy of iPhoto.
    Now I have all my photos back, but unfortunately all my albums and slideshows are lost. But one good thing is in the main photos window, with View set to Event Titles, and Sort set to Dates, everything is clearly divided back into event and date order. I can easily select each group of photos which are nicely divided up for me, and create new folders, named with subjects or events, and then create new slideshows from them.
    OK it will take me a little while to get it back to how it was, but not quite the disaster it might have been if iPhoto had not been able to sort everything out from the metadata, into date order.
    I am grateful to Paul Horan, senior technical support advisor at Apple Care, who called me back with what was admittedly a drastic solution, after trying a few fixes himself.
    Hope this help someone else!
    Bruce

  • How to efficiently get hold of N randomly selected keys out of X?

    I am writing some benchmark programs for Coherence caches and would need a way to as efficently as possible get hold of a "fairly random" selection of N keys from the cache out of the total X keys (where X >> N).
    With "fairly random" I am in particular looking for a way to get keys somewhat uniformly spread over all partitions.
    First i tried picking the first N keys obtained when iterating the key-set but they all seemed to come from just a few partitions (perhaps iteration is performed partition by partition?). Next I tried some algortihms I have used in the past to pick random keys from in memory-map (where one basically iterate and if a randomly generated value between 0.0 and 1.0 exceed a percentage calculatwed as the factor N/X the key is included. This does work (one may occasionally need to iterate the map more than once) but is VERY slow since iterating the key-set of a large cache remotly is kind of expensive.
    All sugestions are warmly appreciated - the best would be solutions that do not require anything to be added to the pof-config (i.e. not rely on custome aggregators or invocables etc) - this because I would liek to be able to easilly use my benchmark as part of several applications without having to modify there configuration files!
    /Magnus
    Edited by: MagnusE on Aug 7, 2009 10:21 AM

    Hi Magnus,
    you can go the other way round:
    With key-association you can ensure that your request goes to the partition you want it to go. You just need to generate a reverse mapping array between partition ids and integer associated key values which are mapped to that partititon.
    You can use this method for it:
    public static int[] generateReverseAssociatedKeysForService(DistributedCacheService service) {
         KeyPartitioningStrategy keyPartitioningStrategy = service.getKeyPartitioningStrategy();
         int partitionCount = service.getPartitionCount();
         int[] reverseKeys = new int[partitionCount];
         int i=1;
         while (partitionCount > 0) {
              Integer associatedKey = new Integer(i);
              int partitionId = keyPartitioningStrategy.getKeyPartition(associatedKey);
              if (reverseKeys[partitionId] == 0) {
                   reverseKeys[partitionId] = i;
                   --partitionCount;
              ++i;
         return reverseKeys;
    }After this, you generate an equal amount of entries for each partitions with composite keys which implement key association in a way that it returns an integer which maps to your designated partition id to serve as your data. Alternatively you can sort an existing key-set into per-partition keysets.
    After this, you just generate evenly spread random numbers between 0 and (partitionCount - 1) (both inclusive) which random number you use as an index to the reverse map to get an associated key value. Then you can generate another random number if you have multiple keys within a partition, or choose a key from the per-partition keyset for that partition if you have a set of existing keys.
    This way you get keys which are as evenly spread between partitions as your random generator generating your associated key indexes is spread.
    Best regards,
    Robert
    Edited by: robvarga on Aug 7, 2009 11:55 AM
    Added some more ideas and method implementation.

  • How to random select photos in slideshow mode with iPhoto 7 ?

    iPhoto 6 would do random selection of photos during a slideshow. After I installed iPhoto 7, I am unable to find the random key? Do you know if the feature was dropped?
    Gary

    You need software for it. Do you have iPhoto installed? That is one possibility, but there are many others - you create the slideshow from your photos. Or, you can simply use Quicklook - see here:
    http://osxdaily.com/2012/09/06/8-tricks-mac-os-x-full-screen-slideshow/

  • I have QT Pro 7.6.6 and want to delete all audio (5 tracks) from a selected in-out section of a .mov file. Then, add new audio. How do I do that?

    I have QT Pro 7.6.6 and want to delete all audio (5 tracks) from a selected in-out section of a .mov file. Then, add new audio. How do I do that?

    If I 1) knew TeX well enough to fix it, and 2) could get the guy to answer the phone or email so as to give me the sourcecode or to fix it himself, I wouldn't have bothered figuring out that the thing could be fixed one page at a time by a) getting a copy of acrobat pro, b) figuring out how to turn on all of the extra toolkits, c) finding the edit object button in randomly named toolkit, d) right clicking on the chapter title and selecting the e) ever so obvious "delete clip" menu selection.
    At this point I would absolutely love to never have to touch an adobe product again in my life, but my hand has been dealt and if I'm going to print the manual for a software library that we've spent a cumulative $70,000 for, I have to figure this out and I really don't want to have to hit [Page Down], [Ctrl] + [A], Right click, delete clip for >700 pages.
    I felt certain that once I'd figured out how to shift the pages down using ghostscript so first two lines of each page weren't getting cut off in the printer non-printable region, and finally figured out this that a relatively simple scripting solution would be immediately apparant.  I mean, there are APIs for both applescript and javascript, but I'm mystified by how to get to the edit object feature from within them, much less how to tell that feature to delete clips for everything on a page.

  • Random selection of rows from a 2D array then subset both the rows that were selected and those that were not. Please see message below.

    For example, I have a 2D array with 46 rows and 400 columns. I would like to randomly select 46 data rows from the 2D array. By doing the random selection it means that not all individual 46 rows will be selected some rows may appear more than once as there may be some duplicates or triplicates in the random selection. The importan thing is that we will have randomly selected 46 rows of data (no matter that some rows appear more than once). Then I would like to subset these randomly selected 46 data rows (some which will be duplicated, or triplicated, etc.) and then also find and subset the rows that were not selected. Does this make sense? Then i would like to do this say 10 times for this data set. So that then I will have 2 by 10 data sets: the first 10 each with 46 rows and the other 10 with n rows depending on how many WERE NOT randomly selected. i hope that my explanation is clear. I am relatively new to Labview. It is really great so I am getting better! If anyone can help me with this problems it will be great. RVR

    Start by generating randon #s between 0 and 45. Run a for loop X times and in it use the random function, multiply the result by X and round down (-infinity). You can make this into a subVI, which you can reuse later. In the same loop, or in a different one, use Index Array to extract the rows which were selected (wiring the result out of the loop with auto indexing causes it to be rebuilt into a 2D array).
    One possible solution for the second part would be to go over the array of randomly generated numbers in a for loop and use Search 1D Array to find each of the numbers (i). If you get -1, it means the row wasn't selected and you can extract it.
    I hope this puts you on the right path. If not, don't be afraid to ask more.
    To learn more about LV, I suggest you read the LabVIEW user manual. Also, try searching this site and google for LabVIEW tutorials. Here and here are a couple you can start with. You can also contact your local NI office and join one of their courses.
    In addition, I suggest you read the LabVIEW style guide.
    Try to take over the world!

  • Random selection from a list

    I’m setting up a multiple-choice question, and I want to re-arrange the position of the button sprites representing the correct answer and distractors.
    I can randomly select one of the sprites via gDistractorLoc = random(4). The random function fails me after that.
    Is there a means of randomly selecting one of the entries from a list, e.g. gDistractorList = [1, 2, 4] or [1, 4]?
    I realize that I am perhaps complicating the process, and I'd be grateful for a simpler approach.

    I don't know if this is simpler or not, but here is a method for grabbing a random item from a list:
    gDistractorList = [1, 2, 4]
    put gDistractorList.getAt(random(gDistractorList.count))

  • How to randomly select data from excel using labview.

    A very good day to all. I am actually working on a system that will be selecting integer number from randomly generated set of number. If that wouldnt be possible, I would like the system to be able to select number from the set of numbers which have already been randomly generated from excel. kindly help me with the solution. To make myself clear, supposing I have set of numbers from 1 to 10, I want a labview setup that will be picking these numbers one after the other either with replacement or without from excel or self generated. I know this is possible in matlab but would prefer labview if possible.  Thanks
    Solved!
    Go to Solution.

    Most, if not all, of the languages I've run across have a rand() function that returns a random number between 0 and 1.  Getting some other range is up to the programmer.  Usual method is to multiply by the range you need and add an offset to adjust the mean.  For instance if you need a random number between 200 and 300 the formula might look like  " rand()*100+200 ".   If you need an integer, you can use the round function (which will leave it as a float with no decimal pportion) or the conversion (to int).    All of this is doable and straightforward in LabVIEW.  Have a look: http://digital.ni.com/public.nsf/allkb/FCCDCD678EEF3A9186256D7B008054F5
    If you feel more comfortable pulling from a file, try this: http://digital.ni.com/public.nsf/allkb/C944B961B59516208625755A005955F2 

  • Digital clock which randomly selects different colors from Applet

    Hi,
    I relatively new to java, what I'm trying to do is list about five colours in my Applet and pass the colours into my java code, and maybe the font.....
    I want to be able to Display a digital clock which randomly selects different colours which were passed from my Applet
    Thanks for any help
    Zip
    Clock Code:
    import java.awt.*;
    import java.applet.*;
    import java.util.*;
    import java.text.*;
    public class dclock extends Applet implements Runnable{
    Thread animThread = null;
    int delay = 1000;
    public void init(){}
    public void paint (Graphics g){
    // get the time
    Calendar cal = Calendar.getInstance();
    Date date = cal.getTime();
    // format it and display it
    DateFormat dateFormatter =DateFormat.getTimeInstance();
    g.drawString(dateFormatter.format(date), 5, 10);
    public void start(){
    if(animThread == null){
    animThread = new Thread(this,"Animation");
    animThread.start();
    public void stop(){animThread = null;}
    public void run(){
    while(animThread !=null){
    try{ Thread.sleep(delay);}
    catch(InterruptedException e){};
    repaint();
    //sec++;
    }

    Why doesn't the clock just decide what colour it is going to be? If you need to pass the colour choices in, just let the clock accept a collection of colours in its constructor or something. I don't understand what bit of this you are having problems with as you haven't really explained. Please also use code tags.

  • Just upgraded my ipad 2 software to iso7 and all my Video name titles have gone? I have 4 films on the ipad and I share about 200 films from my pc, now to watch a film I need to randomly select one to see which film it is before I play it.. This is bad!

    Just upgraded my ipad 2 software to iso7 and all my Video name titles have gone? I have 4 films on the ipad and I share about 200 films from my pc, now to watch a film I need to randomly select one to see which film it is before I play it.. This can’t be right! Help!!

    You cannot go back to an earlier version of iOS.
    If you are having Wi-Fi problems I suggest going to some location that offered free Wi-Fi. Your library or a Starbucks perhaps. Does your iPad connect there and work well?
    If your iPad works well there you can eliminate the iPad and it's iOS as the cause of your problem.
    If your iPad still acts up when connecting to the other Wi-Fi sources I'd suggest a visit to an Apple store to help discover the problem. Be sure to make an appointment prior to going to the Apple store.

  • Oracle 11g:Query to return only 1 to 1 relationship & random selection

    Hi
    I have a complex query to modify but I have below the sample tables and data with only very few fields(only affected fields).
    Query based on 2 tables b_test and s_test.
    Pls see below.
    create table b_test(building_id number not null,invalid varchar2(1));
    create table s_test(sub_building_id number not null,building_id number ,invalid varchar2(1),sequence_no number);
    insert into b_test values (1000,'N');
    insert into b_test values(2000,'N');
    insert into b_test values(3000,'N');
    commit;
    insert into s_test values(1,1000,'N',90);
    insert into s_test values(2,1000,'N',91);
    insert into s_test values(3,1000,'N',92);
    insert into s_test values(4,1000,'Y',93);
    insert into s_test values(5,NULL,'N',NULL);
    insert into s_test values(1,2000,'N',94);
    insert into s_test values(2,2000,'N',95);
    insert into s_test values(3,2000,'N',96);
    insert into s_test values(4,2000,'N',97);
    insert into s_test values(5,2000,'N',98);
    insert into s_test values(6,NULL,'N',NULL);
    insert into s_test values(10,3000,'N',99);
    insert into s_test values(11,3000,'N',100);
    commit;The query below returns all rows required:(also see results:)
    select b.building_id,b.invalid,s.sub_building_id,s.sequence_no from b_test b,
    (select * from s_test where invalid='N') s
    where b.building_id = s.building_id(+)
    and b.invalid='N'
    Results:
    BUILDING_ID INVALID      SUB_BUILDING_ID     SEQUENCE_NO
    1000              N     1                     90
    1000             N     2                     91
    1000             N     3                     92
    2000             N     1                     94
    2000             N     2                     95
    2000             N     3                     96
    2000             N     4                     97
    2000             N     5                     98
    3000             N     10                      99
    3000             N     11                     100Now there are 2 requirements:
    1)How can the above query be changed so that 1:1 relationship if sub_building_id is returned?i.e For 1 building_id, only show 1 sub_building(This could be a random selection)
    (Pls help with query)
    The results would be like
    BUILDING_ID INVALID     SUB_BUILDING_ID     SEQUENCE_NO
    1000               N     1                      90
    2000               N     1                      94
    3000               N     11                     1002)How can the same SEQUENCE_NO be shown for all sub_buildings for the same building? (Pls help with query)
    The results will be:
    BUILDING_ID INVALID     SUB_BUILDING_ID     SEQUENCE_NO
    1000             N     1                       90
    1000             N     2                       90
    1000             N     3                       90
    2000             N     1                       94
    2000              N     2                       94
    2000             N     3                       94
    2000             N     4                       94
    2000             N     5                       94
    3000             N     10                       99
    3000             N     11                       99Many thanks!
    Edited by: Krithi on 08-Nov-2012 08:48
    Edited by: Krithi on 08-Nov-2012 08:55

    Krithi wrote:
    Hi
    I have a complex query to modify but I have below the sample tables and data with only very few fields(only affected fields).
    Query based on 2 tables b_test and s_test.
    Pls see below.
    create table b_test(building_id number not null,invalid varchar2(1));
    Thanks for posting the CREATE TABLE and INSERT statements, and your existing query; that's very helpful.
    The query below returns all rows required:(also see results:)
    select b.building_id,b.invalid,s.sub_building_id,s.sequence_no from b_test b,
    (select * from s_test where invalid='N') s
    where b.building_id = s.building_id(+)
    and b.invalid='N'
    Results:
    BUILDING_ID INVALID      SUB_BUILDING_ID     SEQUENCE_NO
    1000              N     1                     90
    1000             N     2                     91
    1000             N     3                     92
    2000             N     1                     94
    2000             N     2                     95
    2000             N     3                     96
    2000             N     4                     97
    2000             N     5                     98
    3000             N     10                      99
    3000             N     11                     100
    When I run your query, I get NULL for sequence_no on the last 2 rows, where building_id=3000. The numbers 99 and 100 don't seem to occur in either table. Did you post the worng sample data and/or results?
    >
    Now there are 2 requirements:
    1)How can the above query be changed so that 1:1 relationship if sub_building_id is returned?i.e For 1 building_id, only show 1 sub_building(This could be a random selection)
    (Pls help with query) Here's one way:
    WITH       got_r_num  AS
         SELECT  sub_building_id
         ,     building_id
         ,     sequence_no
         ,     ROW_NUMBER () OVER ( PARTITION BY  building_id
                                   ORDER BY          sequence_no
                           )         AS r_num
         FROM    s_test
         WHERE     invalid     = 'N'
    SELECT    b.building_id
    ,       b.invalid
    ,       r.sub_building_id
    ,       r.sequence_no
    FROM             b_test     b
    LEFT OUTER JOIN      got_r_num  r  ON  r.building_id  = b.building_id
    WHERE     NVL ( r.r_num
               , 1
               )          = 1
    ORDER BY  b.building_id
    ;This is called a Top-N Query , because we're picking N items (N = 1 in this case) from the top of an ordered list. What makes one item the "top", and another one "lower"? That's determined by the analytic ORDER BY clause, in this case
    ORDER BY      sequence_noThat means the row with the lowest sequence_no (for each building_id) will get r_num=1. If you want a random row from that building_id to be chosen as #1, then you can change the analytic ORDER BY clause to
    ORDER BY      dbms_random.valueYou can ORDER BY anything you like, even a constant, but you must have an analytic ORDER BY clause. ROW_NUMBER requires an analytic ORDER BY clause.
    The results would be like
    BUILDING_ID INVALID     SUB_BUILDING_ID     SEQUENCE_NO
    1000               N     1                      90
    2000               N     1                      94
    3000               N     11                     100
    Again, I don't see where the 100 comes from. The results I get are:
    BUILDING_ID I SUB_BUILDING_ID SEQUENCE_NO
           1000 N               1          90
           2000 N               1          94
           3000 N              11
    2)How can the same SEQUENCE_NO be shown for all sub_buildings for the same building? (Pls help with query)
    SELECT    b.building_id
    ,       b.invalid
    ,       s.sub_building_id
    ,       MIN (s.sequence_no) OVER ( PARTITION BY  s.building_id)
                            AS seq_no
    FROM             b_test  b
    LEFT OUTER JOIN      s_test  s  ON  s.building_id  = b.building_id
                                AND s.invalid      = 'N'
    The results will be:
    BUILDING_ID INVALID     SUB_BUILDING_ID     SEQUENCE_NO
    1000             N     1                       90
    1000             N     2                       90
    1000             N     3                       90
    2000             N     1                       94
    2000              N     2                       94
    2000             N     3                       94
    2000             N     4                       94
    2000             N     5                       94
    3000             N     10                       99
    3000             N     11                       99
    Again, I don't see where you get sequence_no = 99. The results I get are:
    BUILDING_ID I SUB_BUILDING_ID     SEQ_NO
           1000 N               1         90
           1000 N               2         90
           1000 N               3         90
           2000 N               1         94
           2000 N               2         94
           2000 N               5         94
           2000 N               3         94
           2000 N               4         94
           3000 N              10
           3000 N              11Edited by: Frank Kulash on Nov 8, 2012 12:12 PM
    Added explanation and results
    Edited by: Frank Kulash on Nov 8, 2012 12:28 PM
    It looks like you cahnged your sample data from
    insert into s_test values(10,3000,'N',NULL);
    insert into s_test values(11,3000,'N',NULL);to
    insert into s_test values(10,3000,'N',99);
    insert into s_test values(11,3000,'N',100);The queries I posted are niow getting 99, like you requested.

  • Recently I downloaded photos from an sd card. When the download was complete all photos were loaded in a random fashion completely out of order.This is the first time it has ever happened this way. downloaded same card to iPhoto and all photos were in ord

    Recently I downloaded photos from an sd card. When the download was complete all photos were loaded in a random fashion completely out of order.This is the first time it has ever happened this way. downloaded same card to iPhoto and all photos were in order. Help needed. Am working on a job that needs immediate attention and HDR images out of order are impossible to deal with.

    Thanks for your help. The out of numerical order comes before the actual import begins. It happens when first uploaded to Lightroom and prior selection of of photos to imported to the catalog.

  • ITunes has deleted random selection of library and refuses to import

    A week after installing iTunes 9.1, it has deleted a large random proportion of my tirelessly preened library. Upon attempting to re-import my files, iTunes runs a loading bar as if it's accepting them, but imports only some randomly selected, if any.
    Has anybody else encountered this problem upon installing iTunes 9.1?
    I'm considering reinstalling an older version and importing my last saved library?
    Any help would be o so very appreciated and rewarded handsomely
    Thanks,
    Diaz

    check if you have read & write permissions for your iTunes music folder. in finder, right-click on it and +get info+. unlock the little padlock (you may have to enter your admin password) and change the permission settings. next, click on the little gear-shaped icon and +apply to enclosed items+ like so
    you may also give everyone read & write access. if this doesn't help, try the same on your iTunes folder (not just the iTunes music folder).
    any help ?
    if not, try reinstalling iTunes the proper way. click here and follow the instructions.
    if you want to install a previous version after all, here are the steps:
    to downgrade to a previous iTunes version, you could try this user tip that seemed to have worked for some:
    +1) Quit iTunes.+
    +2) Delete iTunes from your Applications folder.+
    +3) Go to your ~/Music/iTunes folder. Delete or rename the "iTunes Library" file.+
    +4) Open the "Previous iTunes Libraries" folder and look for the backup of your old pre-9 library; it should be dated at about the time you first ran iTunes 9. Copy it back out to the ~/Music/iTunes folder, and rename it to "iTunes Library".+
    +6) click here to download iTunes 8.2.1. The page says it's for G3, but the Read Me file says it'll run on G4, G5, and Intel too. Open the disk image and run the installer.+
    +You should now be able to run iTunes 8.2.1 again.+
    +And your iTunes will restore to before you upgraded and you won't lose anything+.
    JGG
    edited by the Jolly Green Giant (where Green stands for environmentally friendly)

  • Is it possible to start slideshow from current picture?

    Hi,
    is it possible to start slideshow from current picture?
    Slideshow in Aperture always start from first picture in album.
    There is possibility to select bunch of images and than start slideshow and slideshow will use only selected pictures but this is not what I want:
    I want it to start from photo that I curently viewing in full scree.
    I *do not want* to:
    1. exit full screen
    2. going to browser
    3. than selecting rest of photos
    4. than hitting shift+S for slideshow
    I just want to hit shift+S and to slideshow starts right from picture that I curently looking.
    I hope I was clear enought
    Thanx in advance!

    If you mean on the phone (like J2ME apps on a cellphone) then the answer is no. However, if you can run the application on the server, then of course.. you just need a way to send a request to the server (e.g. a softkey button which makes a call to http://your-server/path/yourApplication) which triggers the application and does god knows what.

Maybe you are looking for

  • Crackling while PCI-bus is stressed [Audigy 2

    Hello I have a Audigy 2 NZ soundcard. I recently bought a SATA-controller card and have connected a harddri've to said controller. When that disc is under heavy load, such as when transferring large amounts of data to my main harddri've, I experience

  • Decode a parameter to be all values

    Hi- I would like to know if there is a way to decode a value of a parameter to all values for a particular column: ie can i DECODE(column_name, 'ALL', [something that represents all], 'Option1', 1, 'Option2', 2, 3) I have tried to use *- discoverer g

  • OIM 11gR2 provisioning with GTC

    Hello, We are curently implementing Oracle Identity Manager 11gR2, and we are having difficulties with the implementation of the provisioning from OIM to the Target Systems exposed through a webservice on Oracle Service Bus. We are using the Generic

  • Url for the geocoder

    Hello friends I'm learning how to use the oracle maps, now I'm studyng the "gant_chart_pivot_table.htm" of the oracle examples to jdeveloper 11g this is the url http://www.oracle.com/technology/obe/obe11jdev/11/dvt/gant_chart_pivot_table.htm#tv but t

  • Why won't my movies download anymore?

    Is there someone who can help me with iMovie? I have in the past downloaded my movies from my Canon Legria FS21 movie camera.  Now I went to download the movies and they won't.  I asked some Chinese people at the local Apple Shop, but their English i