Trying to find app that alerts when apps on sale???

Hi, this is a silly question but I was browsing the app store awhile back and came across an app that alerted you when apps you were interested in went on sale. I moved on and don't remember the name of it. Now that I want to maybe purchase it, I don't know what it was called and can't find it when I search. Anyone have any ideas what does this? Thanks.
Sharee3

AppSniper

Similar Messages

  • Trying to find the URL used when installing Flash player via ActiveX pop-up

    I'm trying to determine what URL would be used when a customer clicks on the Activex Pop-up to install Flash player. 
    I've found a document that indicates the URL used when updating Flash Player via the Auto updater, but I think they are different URLs....  Can anyone help?

    thanks guys for the replies.
    Just to clarify, I am in no way having troubles installing Flash player.  I'm a tech specialist, and have been for many years.  I am fully able and aware of how to update Flash player.
    What I am trying to get is the URL that would be used when a client click on the "Install Adobe Flash Player" ActiveX Pop-up.
    thanks for the URLs you sent, and I do have those, I'm just wondering if any can confirm "as for sure as possible" what URL is used with that ActiveX Pop up.
    Our corporate has several web-based products that do NOT work with th emost recent version of Flash Player.
    We are trying to find all possible Flash Player installer URLS that are used, so we can block them on our Proxy server.
    Thanks again for everyone's reply, and if anyone knows for sure the info I need, please let me know

  • TS1702 How can I get a refund for an app that I accidentally purchased. It's called "Flash Drive Pro". I was feeling sleepy while trying to find apps to download and try out. Can I get a refund?

    I accidentally downloaded a paid app, while laying down on my sofa and while fighting to stay awake. But I fell asleep and woke up just in time to see me press "Yes" on the "Are you sure" question (at least the way I remember it).
    Are all sales final, or can I get a refund?
    signed
    a big dummy.
    Ray Feliciano
    [email protected]

    You can plea your case here:
    http://www.apple.com/emea/support/itunes/contact.html

  • Trying to understand problems that occur when redistributing between two OSPF processes

    Hi all, I'm currently brushing up on my OSPF and trying to understand the problems that can occur when redistributing between two OSPF processes. I have read and understand (I think!) the issues caused by the fact that the same route submitted by two different OSPF processes may not necessarily follow the OSPF rules that one would expect - for example, OSPF preferring intra-area routes to inter-area routes to external routes, but only within the same process. So, if the same route is submitted from two different processes, that rule goes out the window.
    But I'm having some difficulty getting my head around the idea of setting the administrative distance lower in one OSPF process to prefer one domain over the other. I just can't quite follow the example described in this document:
    http://www.cisco.com/c/en/us/support/docs/ip/open-shortest-path-first-ospf/4170-ospfprocesses.html#twored
    Specifically, in figure 4 where two external networks - external network "N" originating in OSPF domain 1, and external network "M" originating in OSPF domain 2 - are redistributed via two ASBRs. The explanation states:
    This sequence of events could occur occur:
    Router A (Router B) redistributes M into Domain 1, and external M will reach Router B (Router A).
    Because the administrative distance of Domain 1 is lower than Domain 2, Router A (Router B) will install M through Domain 1 and will set to maxage its previous originated LSA (event 1) into Domain 1.
    Because M has been set to maxage in Domain 2, Router A (Router B) will install M though Domain 2 and, therefore, will redistribute M into Domain 2.
    Same as event 1.
    I can't quite work my way through this. I guess it must have something to do with the redistribution of "M" from domain 2 into domain 1 being learned by both ASBRs due to the lower administrative distance assigned to external routes in domain 1, and the original routes through domain 2 being deleted, but then I can't follow the rest of the description. And I can't understand why this would be a problem for network "M" in OSPF domain 2, but NOT for network "N" in OSPF domain 1.
    Any explanation gratefully received!
    Thanks, Graham

    Hello.
    You are right - whenever A and B learns about "M" from Domain 2, they craft LSA for domain 1 and inject it simultaneously. They learn each other's LSAs simultaneously and withdraw (set timer to 3600) for previous LSAs. And it might flap infinitely.
    If they don't learn LSA simultaneously (let's say that A is much faster then B), then there will be no flaps, but B would learn all Domain 2 routes (not just redistributed) via Domain 1.
    And later you will observe routing loop (when you stop advertising M from D): A knows "M" from Domain 2 and injects into Domain 1, B knows from A via Domain 1 and injects into Domain 2... so "M" stays in the routing tables due to mutual redistribution.
    You don't have similar (flap) issue with network "N", because admin distance is lower for Domain 1, so both routers would never prefer OSPF via Domain 2! But having no issue with route flaps, you still will observe routing loop if you stop advertising "N" from C.

  • I'm trying to find code that has a seek bar roll over effect as HULU and YouTube.

    Hi
    The seekbar roll over will not just show the NetStream.time but also has the frames screen shot.  I've searched several sites but no clear answer yet.
    I'm using actionscript 3 in FLash CC and can also use Flash Builder.
    Thanks

    Please find the below code -
    1) Use your actual variable instead of dummy.
    2) Position of thumbnails should be move as per mouseMove on seekBar. Get the mouse X posion and set the xpos of your thumbnail which contain either Video object or image display holder.
    package  {
      import flash.display.MovieClip;
      import flash.events.MouseEvent;
      import flash.events.TimerEvent;
      import org.osmf.events.TimeEvent;
      import flash.utils.Timer;
      import flash.net.NetStream;
      public class SeekThumb extends MovieClip {
      private var seekBtn:MovieClip;
      private var getVideoFrameAtSecond:Number = -1;
      private var durationOfVideo:Number = 100// Asume that we have 100 seconds video
      private var timer:Timer;
      private var counter:Number = 0;
      private var delay:Number = 1;  // It can be updated as per smoothness.
      private var netStream:NetStream;
      private var lastSeekPos:Number;
      public function SeekThumb() {
      // constructor code
      this.addChild(createSeekButton());
      timer = new Timer(200);
      timer.addEventListener(TimerEvent.TIMER, updateQos);
      counter = delay;
      private function createSeekButton():MovieClip{
      seekBtn = new SeekButton();
      seekBtn.buttonMode = true;
      seekBtn.addEventListener(MouseEvent.MOUSE_MOVE, seekMouseMove, false, 0, true);
      seekBtn.addEventListener(MouseEvent.ROLL_OVER, seekOver, false, 0, true);
      seekBtn.addEventListener(MouseEvent.ROLL_OUT, seekOut, false, 0, true);
      seekBtn.x = 50;
      seekBtn.y = 100;
      return seekBtn;
      private function seekOver(event:MouseEvent):void{
      timer.start();
      private function seekOut(event:MouseEvent):void{
      timer.stop();
      private function updateQos(event:TimerEvent):void{
      //trace("counter = "+counter)
      if(counter>0){
      counter--;
      }else{
      // Enable below funtion as per your need.
      //updateVideoFrame(getVideoFrameAtSecond);
      //addImageOfVideoFramesAt(getVideoFrameAtSecond);// If you want to show your bitmap image then pass the bitmap image params here or customize your methods here
      trace(getVideoFrameAtSecond);
      private function addImageOfVideoFramesAt(seekTime:Number):void{
      var getBitmapMovie:MovieClip = myStoredThumbArray[seekTime]// Set the image url here from array which you have already stored/ traced from main source of image which you provided.
      previewHolder.addChild(getBitmapMovie);
      private function updateVideoFrame(setId:Number):void {
      try {
      if (netStream!=null && lastSeekPos!=setId) {
      lastSeekPos = setId;
      netStream.play(netStreamURL, setId);
      netStream.pause();
      //netStream.soundTransform = setVoluem to 0
      } catch (error:Error) {
      trace("UpdateVideo Frame Error: "+error);
      private function seekMouseMove(event:MouseEvent):void{
      var currentMc:MovieClip = MovieClip(event.currentTarget);
      getVideoFrameAtSecond = Math.round(currentMc.mouseX*durationOfVideo/seekBtn.width);
      counter = delay;
    Re: How to show video frames as still preview image when roll over on seek bar just like Hulu? 

  • Is there something that alerts when a command wants input or finishes?

    Many command line operations require waiting before requiring input (eg compiling and using package managers). Many of these offer options for ignoring all questions but sometimes you don't want to do this (or miss an argument) but don't want to check the terminal all the time.
    Is there a application that I can run in combination with these that will somehow alert me (sound?) that the application is finished/error or waiting for input?

    A finished / error state notification is easy, the program in question has finished, so you can run another program e.g. play a sound file so you know e.g. the compilation has finished.
    If it just waits for input or hangs, that's another thing.

  • Trying to find the difference between two sub-totals (sales - credits)

    Hi Everyone,
    I have the following code which essentially lists the total sales for an items on the first row, and the total credits for the same item on the second row.
    SELECT T0.ItemCode, SUM(T0.LineTotal) as 'Total Sales'
    FROM INV1 T0
    WHERE T0.ItemCode = 'ACR2401010'
    GROUP BY T0.ItemCode
    UNION ALL
    SELECT T1.ItemCode, SUM(T1.LineTotal) as 'Total Sales'
    FROM RIN1 T1
    WHERE T1.ItemCode = 'ACR2401010'
    GROUP BY T1.ItemCode
    The results of the query are shown below (with some alterations for confidentiality).
    What I would like to do is write a code block that subtracts the total credits from the total sales, leaving me with only one row of data for the ItemCode.
    If anybody can help with writing the code to achieve this it will be greatly appreciated.
    Kind Regards,
    Davo

    Hi, Please take a look and tweak accordingly. You may pay attention to nulls and manipulate accordingly. Best of luck!
    --Option 1
    SELECT t2.ItemCode,( SUM(T2.TotalSales)-SUM(TotalCredits)) AS 'Total'
    FROM
    SELECT T0.ItemCode, SUM(T0.LineTotal) as 'TotalSales',SUM(0) as 'TotalCredits'
    FROM INV1 as T0
    WHERE T0.ItemCode = 'ACR2401010'
    GROUP BY T0.ItemCode
    UNION ALL
    SELECT T1.ItemCode, SUM(0) as 'TotalSales', SUM(T1.LineTotal) as 'TotalCredits',
    FROM RIN1 as T1
    WHERE T1.ItemCode = 'ACR2401010'
    GROUP BY T1.ItemCode
    ) AS t2
    GROUP BY t2.ItemCode
    --Option 2
    SELECT t2.ItemCode, ( SUM(T2.TotalSales)-SUM(TotalCredits)) AS 'Total'
    FROM
    SELECT T0.ItemCode, SUM(T0.LineTotal) as 'TotalSales',SUM(0) as 'TotalCredits'
    FROM INV1 as T0
    --WHERE T0.ItemCode = 'ACR2401010'
    GROUP BY T0.ItemCode
    UNION ALL
    SELECT T1.ItemCode, SUM(0) as 'TotalSales', SUM(T1.LineTotal) as 'TotalCredits',
    FROM RIN1 as T1
    --WHERE T1.ItemCode = 'ACR2401010'
    GROUP BY T1.ItemCode
    ) AS t2
    WHERE t2.ItemCode = 'ACR2401010'
    GROUP BY t2.ItemCode
    --Option 3
    SELECT t2.ItemCode, ( SUM(T2.TotalSales)-SUM(TotalCredits) ) AS 'Total'
    FROM
    SELECT T0.ItemCode, T0.LineTotal as 'TotalSales', 0 as 'TotalCredits'
    FROM INV1 as T0
    UNION ALL
    SELECT T1.ItemCode, 0 as 'TotalSales', T1.LineTotal as 'TotalCredits',
    FROM RIN1 as T1
    ) AS t2
    WHERE t2.ItemCode = 'ACR2401010'
    GROUP BY t2.ItemCode
    --Assuming credit part is optional..also assuming each table should return only one row else results would inflate...option 4
    SELECT t0.ItemCode, ( SUM(T0.TotalSales)-SUM(T1.TotalSales)) AS 'Total'
    FROM
    INV1 as t0
    left outer join
    RIN1 as t1
    ON t0.ItemCode = t1.ItemCode
    WHERE t0.ItemCode = 'ACR2401010'
    GROUP BY t0.ItemCode
    --option 4 with grouping to ensure single row from each table
    SELECT t0.ItemCode, ( isnull(T0.TotalSales,0)-isnull(T1.TotalSales,0)) AS 'Total'
    FROM
    SELECT T0.ItemCode, SUM(T0.LineTotal) as 'TotalSales'
    FROM INV1 as T0
    --WHERE T0.ItemCode = 'ACR2401010'
    GROUP BY T0.ItemCode
    )as t0
    LEFT OUTER JOIN
    ( SELECT T1.ItemCode, SUM(T1.LineTotal) as 'TotalCredits',
    FROM RIN1 as T1
    --WHERE T1.ItemCode = 'ACR2401010'
    GROUP BY T1.ItemCode
    ) as t1
    ON t0.ItemCode = t1.ItemCode
    WHERE t0.ItemCode = 'ACR2401010'
    --Option 5 with grouping to ensure single row from each table.
    --Also assuming that sales or credits can be optional
    SELECT
    ISNULL(t0.ItemCode,t0.ItemCode) AS ItemCode,
    ( isnull(T0.TotalSales,0)-isnull(T1.TotalSales,0)) AS 'Total'
    FROM
    SELECT T0.ItemCode, SUM(T0.LineTotal) as 'TotalSales'
    FROM INV1 as T0
    --WHERE T0.ItemCode = 'ACR2401010'
    GROUP BY T0.ItemCode
    )as t0
    FULL OUTER JOIN
    ( SELECT T1.ItemCode, SUM(T1.LineTotal) as 'TotalCredits',
    FROM RIN1 as T1
    --WHERE T1.ItemCode = 'ACR2401010'
    GROUP BY T1.ItemCode
    ) as t1
    ON t0.ItemCode = t1.ItemCode
    WHERE (t0.ItemCode = 'ACR2401010' OR t1.ItemCode = 'ACR2401010')

  • How can I find apps that are not in my local iTunes Store ?

    I am trying to find apps that we've seen on a friend's iPad however I cannot find them back in our local (South Africa) iStore.  Is it so that the European iStore has more items to download than the South African ?  Is there any way that I can get apps from another store ?  E.g. I was looking for Supermania 2, Luxor HD, RealTennis, WorldCupFever but they give no results when doing a search in iTunes...

    You can only buy content from the country in which you are located and you must have a valid credit card registered to an address in that same country.
    Only apps and books are available in South Africa and if the apps are not in your store, according to Apples terms and conditions, you cannot purchase them.

  • Is there an easy way to find apps that will run on an ipod touch gen 2 with iOS 4.2.1?

    My grandson's ipod touch gen 4 was stolen so I picked up a used ipod touch gen 2 only to find out I can't upgrade beyond 4.2.1 iOS, so I am trying to find apps that run on that iOS. Enter an unfriendly App Store for those of us not used to using it!
    Can someone please tell me an easy way to find apps for him to run on this older system?
    Thanks in advance!

    You can also use this more manual but free method,
    https://sites.google.com/site/appleclubfhs/support/advice-and-articles/finding-a pps-for-older-devices

  • How do I find apps for an ipod touch 2.2.1

    I have an old ipod touch and am trying to find apps for it.  My version is 2.2.1.  The apps I try to download say my system is not updated.  Help!

    See the google search technique mentioned by PC1234 in https://discussions.apple.com/message/19298842#19298842 and change the 3.1 to 2.2. This will give show you thousands of apps.

  • I keep getting the "Cannot Connect To Find My Friends" alert

    I keep getting the "Cannot Connect To Find My Friends" alert when trying to accept friends on Find My Friend. I have verified my Apple ID and reset my password. Still no luck. any suggestions...?

    What finally worked for me was to go to "Me" in Find My Friends, then chose "Account." I found that the wrong email for me was there somehow. I corrected it, saved it, and now FMF allows me to accept followers and request new friends. Hope this works for you too.

  • Finder keeps hiding toolbar when I reboot

    Ok, I just upgraded to Tiger, and every time I reboot my powerbook the finder window that appears when OS X loads is the barebones, no toolbar version. Nothing I've done has made it stay the way I want (with the toolbar). Can anyone help?
    I can upload a pic but I don't really see how that'll help.

    "Repair Disk Permissions" from Disk Utility may help.
    Also, deleting the following files (they are located inside your home directory)may help:
    ~/Library/Preferences/com.apple.finder.plist
    ~/Library/Preferences/com.apple.sidebarlists.plist
    Mihalis.

  • Hello,somebody can tell me if I can find my lost Iphone5 if the "find my phone" app is tunrned off ,I tried to locate my phone and when I sign in says that I need an Icloud account(to sign in I'm using apple id account)Thanx

    hello,somebody can tell me if I can find my lost Iphone5 if the "find my phone" app is tunrned off ,I tried to locate my phone and when I sign in says that I need an Icloud account(to sign in I'm using apple id account)Thanx

    You can't create an iCloud account on your PC.  You have to first create an iCloud account on an iOS device (iPhone, iPad, iPod Touch) or Mac (running OS X Lion or higher).  After creating the account on one of these devices you can use the ID to sign into the account on your PC.

  • I am trying to find an app that will track the usage on my iphone with times and dates to see what was accessed on my phone when I was away from it and what if anything was done eg deleted messages viewed facebook etc?

    Hi! I am trying to find an app that with track everything that is done on my phone with times and dates? im not really woried about call usage and texts sent I need it to view what has been done - for example:
    Messages received
    Messages deleted
    Facebook viewed
    Messages viewed
    Internet viewed and what?
    I just have an issue with someone using my phone - I used to track this through double clicking the home button and roughly knowing in what order I had been on things but they have sussed this one!
    Thank you!!

    No way to do that on a non-jailbroken iPhone. Why don't you just passcode protect your phone? That way no one but you can use it...unless they know your passcode.

  • My ipad is on an infinite loop.  I used ios7 for a few days and then did updates on some of my apps. that's when the infinite loop started.  I have tried pressing the power and home button at the same time, but it doesn't work. Please help!

    my ipad is on an infinite loop.  I used ios7 for a few days and then did updates on some of my apps. that's when the infinite loop started.  I have tried pressing the power and home button at the same time, but it doesn't work. Please help!
    I even tried some hints posted for ios6 (turn off Ipad, holding home button and plugging in power cord at the same time and then releasing the home button)
    I did manage to get a different screen that shows the itunes icon and a power cord, but nothing happens.

    You were on the right track. You got the connect to iTunes screen and you ended to use iTujes to restore your iPad. Try recovery mode again.
    Recovery Mode Instructions
    Disconnect the USB cable from the iPad, but leave the other end of the cable connected to your computer's USB port.
    Turn off iPad: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for iPad to turn off.
    If you cannot turn off iPad using the slider, press and hold the Sleep/Wake and Home buttons at the same time. When the iPad turns off, release the Sleep/Wake and Home buttons.
    While pressing and holding the Home button, reconnect the USB cable to iPad. When you reconnect the USB cable, iPad should power on.
    Continue holding the Home button until you see the "Connect to iTunes" screen. When this screen appears you can release the Home button.
    If necessary, open iTunes. You should see the recovery mode alert that iTunes has detected an iPad in recovery mode.
    Use iTunes to restore iPad.

Maybe you are looking for