How to cancell  the american idol and the voice thats keeps on charging

Pls help me, i want to cancell the American Idol and The Voice that charging me 3.17 and theres another one i dont the name.

You could use the Flash server Administrator API getLiveStreams() and read the xml the server throws you with actionscript on your flash
http://localhost:1111/admin/getLiveStreams?auser=username&apswd=password&appInst=application
http://help.adobe.com/en_US/flashmediaserver/configadmin/WS5b3ccc516d4fbf351e63e3d119f2926 33e-7ff8.html
I would thow something like this.
<result>
<level>status</level>
<code>NetConnection.Call.Success</code>
<timestamp>7/13/2011 10:52:05 AM</timestamp>
<name>_defaultRoot_:_defaultVHost_:::_1</name>
<data>
<_0>live1</_0>
<_1>live2</_1>
</data>
</result>
Then read the data node and get the number of streams. use some actionscript if data# >= 100
then trace a message.
I haven't tried this. but i think is posible.

Similar Messages

  • Shut of the voice that keeps speaking everything i do!

    ever since the latest update this macbook pro speaks everything i type! how can i make it stop!

    Hi zephyrarose,
    Sounds like you have VoiceOver on. Press Command+PF5 (top row of keys) to turn it off.
    Cheers,
    GB

  • How to cancel the event in Item Adding and display javascript message and prevent the page from redirecting to the SharePoint Error Page?

    How to cancel the event in Item Adding without going to the SharePoint Error Page?
    Prevent duplicate item in a SharePoint List
    The following Event Handler code will prevent users from creating duplicate value in "Title" field.
    ItemAdding Event Handler
    public override void ItemAdding(SPItemEventProperties properties)
    base.ItemAdding(properties);
    if (properties.ListTitle.Equals("My List"))
    try
    using(SPSite thisSite = new SPSite(properties.WebUrl))
    SPWeb thisWeb = thisSite.OpenWeb();
    SPList list = thisWeb.Lists[properties.ListId];
    SPQuery query = new SPQuery();
    query.Query = @"<Where><Eq><FieldRef Name='Title' /><Value Type='Text'>" + properties.AfterProperties["Title"] + "</Value></Eq></Where>";
    SPListItemCollection listItem = list.GetItems(query);
    if (listItem.Count > 0)
    properties.Cancel = true;
    properties.ErrorMessage = "Item with this Name already exists. Please create a unique Name.";
    catch (Exception ex)
    PortalLog.LogString("Error occured in event ItemAdding(SPItemEventProperties properties)() @ AAA.BBB.PreventDuplicateItem class. Exception Message:" + ex.Message.ToString());
    throw new SPException("An error occured while processing the My List Feature. Please contact your Portal Administrator");
    Feature.xml
    <?xml version="1.0" encoding="utf-8"?>
    <Feature Id="1c2100ca-bad5-41f5-9707-7bf4edc08383"
    Title="Prevents Duplicate Item"
    Description="Prevents duplicate Name in the "My List" List"
    Version="12.0.0.0"
    Hidden="FALSE"
    Scope="Web"
    DefaultResourceFile="core"
    xmlns="http://schemas.microsoft.com/sharepoint/">
    <ElementManifests>
    <ElementManifest Location="elements.xml"/>
    </ElementManifests>
    </Feature>
    Element.xml
    <?xml version="1.0" encoding="utf-8" ?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <Receivers ListTemplateId="100">
    <Receiver>
    <Name>AddingEventHandler</Name>
    <Type>ItemAdding</Type>
    <SequenceNumber>10000</SequenceNumber>
    <Assembly>AAA.BBB, Version=1.0.0.0, Culture=neutral, PublicKeyToken=8003cf0cbff32406</Assembly>
    <Class>AAA.BBB.PreventDuplicateItem</Class>
    <Data></Data>
    <Filter></Filter>
    </Receiver>
    </Receivers>
    </Elements>
    Below link explains adding the list events.
    http://www.dotnetspark.com/kb/1369-step-by-step-guide-to-list-events-handling.aspx
    Reference link:
    http://msdn.microsoft.com/en-us/library/ms437502(v=office.12).aspx
    http://msdn.microsoft.com/en-us/library/ff713710(v=office.12).aspx
    Amalaraja Fernando,
    SharePoint Architect
    Please Mark As Answer if my post solves your problem or Vote As Helpful if a post has been helpful for you. This post is provided "AS IS" with no warrenties and confers no rights.

    Recommended way for binding the list event handler to the list instance is through feature receivers.
    You need to create a feature file like the below sample
    <?xmlversion="1.0"encoding="utf-8"?>
    <Feature xmlns="http://schemas.microsoft.com/sharepoint/"
    Id="{20FF80BB-83D9-41bc-8FFA-E589067AF783}"
    Title="Installs MyFeatureReceiver"
    Description="Installs MyFeatureReceiver" Hidden="False" Version="1.0.0.0" Scope="Site"
    ReceiverClass="ClassLibrary1.MyFeatureReceiver"
    ReceiverAssembly="ClassLibrary1, Version=1.0.0.0, Culture=neutral,
    PublicKeyToken=6c5894e55cb0f391">
    </Feature>For registering/binding the list event handler to the list instance, use the below sample codeusing System;
    using Microsoft.SharePoint;
    namespace ClassLibrary1
        public class MyFeatureReceiver: SPFeatureReceiver
            public override void FeatureActivated(SPFeatureReceiverProperties properties)
                SPSite siteCollection = properties.Feature.Parent as SPSite;
                SPWeb site = siteCollection.AllWebs["Docs"];
                SPList list = site.Lists["MyList"];
                SPEventReceiverDefinition rd = list.EventReceivers.Add();
                rd.Name = "My Event Receiver";
                rd.Class = "ClassLibrary1.MyListEventReceiver1";
                rd.Assembly = "ClassLibrary1, Version=1.0.0.0, Culture=neutral,
                    PublicKeyToken=6c5894e55cb0f391";
                rd.Data = "My Event Receiver data";
                rd.Type = SPEventReceiverType.FieldAdding;
                rd.Update();
            public override void FeatureDeactivating(SPFeatureReceiverProperties properties)
                SPSite sitecollection = properties.Feature.Parent as SPSite;
                SPWeb site = sitecollection.AllWebs["Docs"];
                SPList list = site.Lists["MyList"];
                foreach (SPEventReceiverDefinition rd in list.EventReceivers)
                    if (rd.Name == "My Event Receiver")
                        rd.Delete();
            public override void FeatureInstalled(SPFeatureReceiverProperties properties)
            public override void FeatureUninstalling(SPFeatureReceiverProperties properties)
    }Reference link: http://msdn.microsoft.com/en-us/library/ff713710(v=office.12).aspxOther ways of registering the list event handlers to the List instance are through code, stsadm commands and content types.
    Amalaraja Fernando,
    SharePoint Architect
    Please Mark As Answer if my post solves your problem or Vote As Helpful if a post has been helpful for you. This post is provided "AS IS" with no warrenties and confers no rights.

  • I preordered the new one direction album and I ment to preorder the one with 18 songs and it preordered both of the albums and I don't know how to cancel the one can someone help me?

    I preordered a album then preordered the Same one and I don't know how to cancel the one I preordered that I didn't mean too and it's charging me for both and I don't have a lot of money on my iTunes

    Go to the iTunes Store. Click on your Apple ID and enter your password. Scroll down towards the end of the page, you should see a line item that says Pre-Order. You can cancel the pre-order there.

  • How to cancel the sales order - header and line status are in Entered Stage

    Dears,
    I have some sales order to be cancelled in which the header and line status are in *"Entered"*. I am not able to cancel these sales order.
    Also note that these orders are for maintenance service.Once i book these orders the lines will change to closed status.
    So it is not possible to book and cancel the lines.
    Kindly me to resolve this.

    926530 wrote:
    Boss,
    If i do Action-->cancel on header, it just makes the qty to zero.But the header and line status still showing as entered.It will not cancel the order.
    The problem for me is that these lines are coming in my monthly reports. This is what your question says...be more specific as what is your issue..which in turn is your problem
    How to cancel the sales order - header and line status are in Entered Stage
    Coming to your Action-->cancel...as far as i know ...the header status will change to canceled..
    unless until you have some processing constraints in place...which is stopping you...
    HTH
    Mahendra

  • I would like to know how to cancel the signing of the match itunes, bought it thinking it would be a package of unlimited songs, how do I cancel and get refund?

    I would like to know how to cancel the signing of the match itunes, bought it thinking it would be a package of unlimited songs, how do I cancel and get refund?
    eu gostaria de saber como cancelo a assinatura do itunes match,pois comprei achando que seria um pacote de musicas ilimitadas,como faço o cancelamento e recebo reembolso?
    and i would like to know about the plan for take ilimited music?
    ATT,
    Bruno Riscado Dias

    Bruno Riscado Dias wrote:
    I would like to know how to cancel the signing of the match itunes, bought it thinking it would be a package of unlimited songs, how do I cancel and get refund?
    You can turn off iTunes Match by pulling down the Store menu and selecting "turn off itunes match." You'll need to contact iTunes Store support for a refund.
    Bruno Riscado Dias wrote:
    and i would like to know about the plan for take ilimited music?
    Apple has no "unlimited music" subscription plan avaiilable.

  • If I bought an Apple TV and agreed to the free week of Hulu, how do I cancel the membership? It's charging my iTunes account.

    If I bought an Apple TV and agreed to the free week of Hulu, how do I cancel the membership? It's charging my iTunes account.

    There are instructions on this page for managing and stopping auto-renewing subscriptions : http://support.apple.com/kb/HT4098
    Or there are instructions on this Hulu page about iTunes billing : http://www.hulu.com/support/article/21454771

  • Recently I have added a new icloud account for my iphone but now my email is hacked and I cant complete the verification process.How to cancel the verification in my phone?  plsz help me.....

    Hi
    Recentky I have added a new icloud account to my iPhone 5s but my email is now hacked! so I can't complete the verification procedures. How to cancel the current verification process????plszz help me...

    Ah thanks Razmee however there is NO option to delete the iCloud account in settings!

  • How to cancel the delivery number in the billing due list

    Hi Gurus,
    My User has created the Consignment Fillup order and Dlivery for that order.
    Now User asking that the delivery number coming into Billing Due list (VF04).
    As you know all for Consignment Fillup there is no invoice. Please suggest me
    how to cancel the Delivery number in Billing Due list for above scenario.
    Br,
    Satish

    What you have faced is not at all an issue.  Its a standard behaviour only.  Though you are not generating commercial invoice here, you can generate (F8) proforma via VF04 in bulk.  Either you can generate one proforma per delivery or consolidate multiple deliveries into one proforma which it depends on VTFL copy control for the field Data VBRK/VBRP.   There if you maintain 001 or 007, you can club multiple deveries and if you maintain 003, one proforma per delivery can be created.
    thanks
    G. Lakshmipathi

  • Hi!pls tell me how can I cancel the files that download,but they can not be downloaded,there maybe a. Problem.

    hi!pls tell me how can I cancel the files that download,but they can not be downloaded,there maybe a. Problem.

    What files, and downloaded from where and by what app?

  • I need to cancel my Adobe Photoshop and Lightroom but it keeps sending me in the same cycle, this is my first month, what do I do?

    I need help and can't figure out how to cancel the service.

    Contact sales support by web chat or phone.
    Mylenium

  • How to cancel the background job?

    Hi,
        I have schedule the backgroud job.How to cancel the background the job.
    When i select the job and click on stop button, iam getting message "job is not active - cancellation not possiable".How to schedule the background job.
    Regards,
    T.suresh

    goto sm37
    SM36 Define Background Job
    SM37 Background Job Overview
    SM39 Job Analysis
    U can Moniter the background Jobs through T code SM37
    In the Simple Job Selection window enter the name of the Job and User of that Job and u can check the status of that Job like “JobName, Job CreatedBy, Status, Start date, Start time Duration(sec.) Delay (sec.).

  • How to cancell the account?

    how to cancell the account?

    This is an open forum, not Adobe support... You need Adobe support to cancel a subscription
    -start here https://forums.adobe.com/thread/1703848
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html
    --and two links which may provide more details, if the above links don't help you
    -http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    -http://helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html

  • 怎么取消或者屏蔽firefox的快捷键?How to cancel the keyboard shortcuts?

    怎么取消或者屏蔽firefox的快捷键?我在使用其他软件时的很多快捷键都被firefox浏览器给占用了,麻烦得很,所以想取消那些快捷键。
    在firefox上安装了一个shortcut的插件,也只能编辑快捷键而不能完全删除!!!!
    怎么办!!!!!烦死了!!!!
    严重抗议向firefox提出抗议:功能应该让我们自己来选择,而不是定死!!!!
    How to cancel the keyboard shortcuts?
    donnot tell me edit it!
    i want to STOP it,,,,not change!!!!!!

    Hello,
    I will try my best to guess the issue you are reporting. I don't speak Mandarin and I used Google Translate to guess what the issue is. So, if I got that wrong, I do apologize.
    You are looking to disable the Firefox shortcuts - all of them. And you want to do this because you think these shortcuts are blocking a Firefox plugin you are using. Is that correct?
    您想禁用Firefox的快捷方式 - 所有这些。并且要做到这一点,因为你觉得这些快捷方式阻止你使用的是Firefox插件。这是否正确?
    谢谢

  • How can I cancel the item that did not ship on my pre-order.

    Hello,
    I ordered two devices on my pre-order, one item shipped and the other didn't.
    How do I cancel the item that did not ship on my pre-order?

        sirguynate805 We're glad that you received your iPhone 6 Plus! Check out this link for cool iPhone info http://vz.to/1e948q1 . Enjoy your new phone and let us know how we can help.
    SheritaH_VZW
    Follow us on Twitter
    @VZWSupport

Maybe you are looking for

  • Airport card no longer found on Macbook

    My airport card is no longer being found by my macbook. I haven't done anything different?

  • Urgent: regarding output display problem

    hi, i had made dis report for displaying changes made to a purticular material in a purticular month. d poblem is dis when i check a materail in MM04 which use to display a change made to a single material and when i check further that what changes h

  • Mapping a constant attribute in OVD

    I am trying to set and attribute (employeeType) to a constant value in OVD based on the adapter. I tried going through the plug-ins and addAttribute-inetorgperson employeeType=SUN1, but this didn't work. Anyone out there set up any mappings like this

  • ME5A Scope of list

    Hi all, I would like to know if the SAP scope of list u201Cu201DALVu201Du201D could be made available in transaction ME5A. We are using Release 4.6C At the moment if we run ME5A the system will list open requisition in a certain format which makes it

  • Urgent...editable col...is not showing values....in grid...have ur points.

    Hi all, I m using an ALV grid with one column editable....but some cells of that columns are uneditable. Now I m putting values in the editable column....my grid is interactive..now when i click on some button...to display the value of grid in list s