Creating a widget that shows youtube movies

Hi All,
I'm trieing to create a captivate widget, usein widgetfactory, that can play youtube content in my project. So far I've succeeded in creating an AS3 script that loads a youtube move and places it on the stage. Here's a part of the code i use in stagemode:
override protected function initiate():void {
   super.initiate();
   WidgetDebugger.debug("MainStage class");
   r = new myRect();
   r.addEventListener(Event.ADDED_TO_STAGE, myInit);
   addChild(r);
  public function myInit(e:Event):void {
   p = new youTubePlayer();
   addChild(p);
my idea was to add r as a movieclip to the stage and add p, the youtube player, to it as a child. When i run this as a standalone swf it works. But when i try to load the youtube movie into a widget nothing shows up. Anyone any ideas? Or someone who can point me to a site where i can find more information about creating widgets using widgetfactory (Allready looked at CPGURU an WidgetKing).
Thanks,
Dennis

Xcode is not really meant for building widgets. Widgets are built primarily with html, css and javascript. You can code them by hand or you can get a copy of the recently released "Dashcode" beta.
Dashcode is a development tool specifically for building widgets. It is supposed to be released along with Leopard but Apple recently released a beta that's supposed to run in Tiger (I haven't tried it yet). If you've signed up for a free online developer account at Apple Developer Connection you can logon and download the beta.
Steve
PS - by the way, if you go to Apple Developer Connection and do a search for "widget" you'll get some hits on Dashboard tutorials and programming guides (these are not geared toward "Dashcode" and should be useful even if you're handcoding your widget)

Similar Messages

  • Can we create a report that show us all comments created for a specific MP

    Hi All,
    I have created documents for multiprovider.
    Now, I want to know whether we can create a report that shows all the documents created on this multiprovider or not.
    Your help will be rewarded.
    Regards,
    Haritha.

    Check out this post: http://forums.adobe.com/message/4399918#4399918
    You can use skip logic to get the desired effect. If you have problems do it just reply back.
    Randy

  • Is there a way to link or create a widget that links back to the iTunes U app on your iPad from your iBook?

    Is there a way to link or create a widget that links back to the iTunes U app on your iPad from your iBook?
    I have already found the Apple Widget Builder (http://widgets.itunes.apple.com/builder/) and that works fine if you want to link to the "App Store", but I want to know if there is a way to "open an app" that is already installed on the iPad instead of double tapping the home button to switch between apps. (I know using the home button is very simple, but I am trying to find an even easier way to just "tap a widget" or "link" that will open iTunes U right up) I am only asking if this is possible for people who may have a hard time running an iPad at the beginning.
    I appreciate any help, thanks!

    I appreciate your help, but I had already looked at LinkMaker and I thought that was my answer, but as far as I could tell that still only links to an app in the app store. Yes it will link to iTunes U in the app store and you can then hit Open, but that is too drawn out of a process. We would like to know a way to just open the app directly.
    Thank you!

  • How to create an applet that shows a pdf as non-editable.

    Hi friends,
    Does any one know how to create an applet that shows a pdf document (should make that pdf a non-editable one) while clicking a link.Its urgent for me as I have to complete this one tomorrow itself...please help me...
    I am able to view the pdf document but that cannot be make a non-editable one.
    Can anyone gave me the code for that one....please I am not very much good in Java.

    PDF is a proprietary format and Java doesn't support it by default. Are you using a 3rd party tool to create the PDF? If so, you need to review the developer docs to see how to make the document non-editable. Frankly, I don't see why you're using an Applet to view a PDF in the first place. What exactly are you trying to do. I'm confused.

  • Trying to create a query that shows Sales Order/Invoice Totals as well as Paid/Outstanding/Available Down Payments

    Currently working on SAP B1 v8.82
    I'm looking to generate a query that will give an overall report for a given customer that shows Sales Order No, Invoice No, Sales Order Total, Invoice Total, Amount Paid on Invoice, Amount Remaining on Invoice, Down Payments Available, Open on Sales Order.
    I'm not sure what the best way to select the columns in bold above.  Invoice Total should be self-explanatory.  Amount Paid should be any down payments or applied payments on the invoice.  The balance due on the invoice (which seems to be T0.DocTotal if I'm not mistaken) should = 'Invoice Total' - 'Amount Paid on Invoice'. In the Down Payments Available column I want the total amount of money on the account or on down payments that aren't tied to a Sales Order.  If a client overpaid in the past for instance and there's a credit on their account, then it should contribute to this sum.  Open on Sales Order should be pretty easy.  I guess it's just the sum of everything that is still open on the Sales Order.  I'm just not sure what the best way to sum all the un-delivered freight, tax, and line items is.  Here's what my query looks like so far.
    SELECT DISTINCT T4.[DocNum] [Sales Order No],
    T0.DocNum [Invoice No],
    T4.DocTotal [Sales Order Total]
    T0.DocTotal [Amount Outstanding],
    FROM OINV T0
    INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN DLN1 T2 ON T1.BaseEntry = T2.DocEntry AND T1.BaseLine = T2.LineNum
    INNER JOIN RDR1 T3 ON T2.BaseEntry = T3.DocEntry AND T2.BaseLine = T3.LineNum
    INNER JOIN ORDR T4 ON T3.DocEntry = T4.DocEntry
    INNER JOIN OSLP T5 ON T4.SlpCode = T5.SlpCode
    WHERE T0.CardName Like '%%[%0]%%'
    GROUP BY T4.DocNum, T0.DocNum, T0.DocTotal, T4.DocTotal
    I tried doing a little searching around for queries similar to what I need, but I could find exactly what I was looking for and I'm very unfamiliar with OJDT, JDT1, and ITR1 tables which I think might be important to finding unapplied payments...

    Thanks.  There's a few problems though.
    1)  It seems that OINV DocTotal != Balance Due.  I'm seeing a number of invoices where there was a balance due, but we applied additional money (either we took another incoming payment and applied it or applied money from the account balance, etc.) and yet it still shows a total.
    2)  It's pulling incoming payments from different customers.  I think this is because the table was joined based on "RCT2 T4 on T4.[DocEntry]  =  T3.[DocNum] and T4.[InvoiceId] = T2.[LineNum]"  In one example I have 2 incoming payments 446 and 614.  Both have the DocEntry 542, but one relates to A/R Invoice 542 (for a different client) while the other relates to Down Payment Invoice 542.  *I was able to fix this by adding WHERE T5.CardCode = [%0]*
    3)  I'm going to work with this a little bit and see if I can alter it to make it work for me.  Basically this query falls a little short on the following:
    -  Doesn't include incoming payments that aren't linked to a down payment invoice.
    -  Does not give the Invoice Total (I'd like to know how much of the SO was invoiced.  DocTotal seems to give me Amount Invoiced - Down Payments.  I'm not sure the best way to get this number.  Maybe I could do the sum of each line * tax + freight)
    -  Does not give the outstanding amount on an invoice.  The ARtotal [DocTotal] column gives me how much was owed when the invoice was created, but it doesn't tell me what is currently owed.
    -  Lastly it may complicate the query too much and could be left off, but it would be nice to see if they have any money from credits or incoming payments that has not been applied.  Perhaps this would be easily accomplished by simply pulling in their account balance.

  • How do you create a PDF that shows up on the opening of an e-mail

    I use to be abel to create a PDF that I could drag onto the desktop of an email and it would show up as part of the e-mail when opened as well as an attatchement. Is there an actual procedure for creating one or is it random?  Sometimes it works sometimes it doesn't?

    Yakandhurl wrote:
    I use to be abel to create a PDF that I could drag onto the desktop of an email and it would show up as part of the e-mail when opened as well as an attatchement. Is there an actual procedure for creating one or is it random?  Sometimes it works sometimes it doesn't?
    There is no procedure. Whether it shows up or not is purely dependent on the receivers email application and their preferences.
    As always, I suggest if you want to do something like that, you should create an HTML email. There's a bit more control although it isn't foolproof either.

  • Acrobat X & Outlook: Create PDF's that show time SENT

    Hi
    I am creating PDF's from emails in Outlook using Acrobat X. When I create PDFs the PDFs show the time the email was received. I need the PDFs to show the time the email was sent (i.e. the same way it is displayed in Outlook). How do I do this?
    Can existing PDFs be amended so the date changes from showing the time received to the time sent?
    Thanks in advance

    Thanks Bill
    Oddly I have worked out a solution:
    When I use File-> print and use Adobe printer, the Outlook format is preserved.
    When I use the Adobe add-on to convert an email to PDF, that is when the problem arises. There seems to be no visible setting to alter this. I would prefer to convert because of the preservation of meta-data; any ideas?

  • How to create a formula that shows only the last date of a series of dates

    I have a report that shows a series of dates that 'notes' were created on a particular file. I want the report to only show the date of the last note that was created instead of showing all the dates. Ive tried using 'Maximum ()' which does not work.
    Any suggestions?

    Either order the dates in ascending order and place the date field in the group footer
    -or-
    order the dates on descending order and plade the date field in the group header.
    HTH,
    Jason

  • How to create a graph that shows individual totals plus cumulative ones as well?

    Hi,
    I use Numbers regularly in the most basic way possible but I'd love to create a chart/graph that shows individual totals but can also show cumulative ones.
    For example, Tune A was written in 2004 and earnt £5 that year, £7 in 2005, £8 in 2006, £9 in 2007.
    Tune B was written in 2006 and earnt £5 in that year, £2 in 2007, £3 in 2008 and £4 in 2009.
    Tune C written in 2007 earnt £1 that year, £3 the next year etc.
    I want to be able to see how each Tune is earning across the years but also see how much I earnt from all three Tunes in 2007, 2008 etc.
    Can any tell me whether it's possible, whether such thing already exists (free or paid for template is fine) or how to in simple terms?
    Many thanks.
    A.

    Setting up one simple data input table and using SUMIFS and COUNTIFS to extract summary data can be easier and more flexible than using long LOOKUP functions with multiple data input tables.   For example, this one Data table can be used to as the source for the other tables, each of which has only one formula which can be copied to other body cells:
    In B3 of 'Tune A Earnings by Year', copied down:
          =SUMIFS(Data::$C,Data::$B,$A3,Data::$A,$A$1)
    (This table can be cloned for other tunes by copy-pasting it and changing the value in A1 to the relevant tune name.)
    In B2 of 'Total Earnings by Year', copied down:
          =SUMIFS(Data::$C,Data::$B,$A2)
    In B2 of 'Total Earnings by Tune', copied down:
         =SUMIFS(Data::$C,Data::$A,A2)
    In B2 of 'By Tune by Year', copied right to column D and down:
          =SUMIFS(Data::$C,Data::$B,$A2,Data::$A,B$1)
    SUMIFS and COUNTIFS work using column-condition pairs. They are not affected by sorting or filtering the data table and update results automatically as new rows are added to the data table.
    SG

  • Software/widgets that show hardware usage

    On Windows Vista, there is a widget on the desktop that shows (visually) my PC’s CPU & RAM usage. Also, Vista will show me (visually) how much hard drive space has been used up in a pie chart. Both of these are very useful to me as they allow me to monitor vital aspects of my PC’s hardware.
    Is there something similar (free) for the Mac? If so, where can I find it or download?

    If you want to monitor critical information then look into Temperature Monitor as well.
    One feature Vista has that OS X lacks is ability to closely monitor APC UPS - you don't want to use PowerChute in OS X, but Vista version is loaded with details, and you don't generally want to be w/o UPS adequate (1300VA+).

  • Does anyone know a widget that shows the power mangement, sms settings?

    is there a widget that can show me easily the list of things that comes up when you type pmset -g in to the terrminal to see power management, the sms sensitivity, and the rest of what it displays? ive searched but its tough to find one.

    Evidence is simply wrong, and new media have to say something, don't they? There are almost 10,000 posts about battery problems, and a few dozen about WiFi. Which is a real problem? WiFi problems have occurred sporadically for 4 years; there's nothing special about 5.0.1. If you focus on the version you will never solve the problem, and waiting for the next version won't solve it either. If you want it to work you will have to follow some basic troubleshooting. Here's what I'm talking about:
    WIFI not work after upgrade to IOS 5.0
    iPhone Wi-Fi not working after iOS 5 update
    Re: iOS 5.0 WiFi Problem
    Re: No Wifi after 4.0.1
    Re: WiFi reception extremely bad
    Re: OS 4.0 WiFi Problem
    Re: No wifi on 3G 4.0.1
    Re: Upgrade to ios 4.0.1 => still NO WI-FI
    WIFI problem after IOS 4.0.1
    Re: 3.1 WIFI Issues
    Re: Unable to use wifi since update to 4.3.1
    WIFi issues since 3.1
    Re: Wi-fi issues with new 3.1.3 update
    Most WiFi problems fall into 2 buckets:
    Actual WiFi chip failure; more common than you think
    Settings curruption as a result of the upgrade process, having nothing to do with the specific versions involved
    The 2nd can usually be fixed by Reset Network Settings or Reset All Settings. Frequently also by "forgetting" the network, rebooting, then reconnecting.

  • Need to create a pdf that shows imported charts accurately

    I have an annual report with a lot of charts and graphs imported from Illustrator. When I create a pdf, the lines of the charts and graphs appear to be inconsistent. The images are fine, but I am unable to show them to the client as the should look. I have tried every option for exporting and also have printed to a pdf with no luck. Is there a way to get a better preview a pdf from Indesign? I am on a MAC/OS 10.5.8/CS3.

    That's a display issue and there's not a whole lot you can do about it. You can try playing around with the Acrobat/Reader display prefs but I will tell you one thing for sure...if the person viewing this is using an LCD that is not running at its native resolution it's not likely that you'll ever get it to look good.
    Bob

  • SEARCH: Widget that shows a PDF or XLS File

    Hey,
    I am looking for a widget which can show me a pdf or XLS file (Picture would be a possible work around).
    Best would be to show a small kind of thumbnail and a magnifying class to look up details. So far about the wish list .
    Reason is my weekly time-planner - I use a XLS sheet in adoption of Steven Covey's "7 Habits of highly effiective people" - and in order to be even more effective, I would like to make this visible
    Thanks for the help
    Marcus
    MacBook Mac OS X (10.4.6)

    for PDF, try this out...
    http://www.apple.com/downloads/dashboard/status/dashclipping.html
    allows you to use a URL to display in a window. nice widget. I use it to check a site or two, but i have tested on local PDF files, and it works fine...
    eg:
    URL = file://localhost/Users/usernamehere/Desktop/example.pdf
    Beavis2084

  • Trying to create a report that shows all 8.1 machines missing update 1 (KB2919355)

    Currently I have a report that polls every machine that talks to our SCCM 2012 server and only displays Windows 8.1 machines.  
    I'd like to modify the code where it will only show the 8.1 machines that are missing Update 1.  That way we can go through and patch the ones that need it.  Is this possible? 
    The existing query looks like the following: 
    SELECT
    SCCM_Ext.vex_R_System.Name0
    ,vMacAddresses.MacAddresses
    ,v_GS_PC_BIOS.SerialNumber0
    ,v_GS_COMPUTER_SYSTEM.Model0
    ,SCCM_Ext.vex_R_System.Operating_System_Name_and0
    ,v_GS_COMPUTER_SYSTEM.UserName0
    FROM
    SCCM_Ext.vex_R_System
    INNER JOIN vMacAddresses
    ON SCCM_Ext.vex_R_System.ResourceID = vMacAddresses.ItemKey
    LEFT OUTER JOIN v_GS_PC_BIOS
    ON SCCM_Ext.vex_R_System.ResourceID = v_GS_PC_BIOS.ResourceID
    LEFT OUTER JOIN v_GS_COMPUTER_SYSTEM
    ON SCCM_Ext.vex_R_System.ResourceID = v_GS_COMPUTER_SYSTEM.ResourceID
    WHERE
    SCCM_Ext.vex_R_System.Operating_System_Name_and0 like '%6.3'
    ORDER BY SCCM_Ext.vex_R_System.Name0

    Here is the code I use to pull 64bit machines that don't have CU1 (BTW cu2 is now out):
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SY STEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM .Client from SMS_R_System inner join SMS_G_System_SMS_ADVANCED_CLIENT_STATE on SMS_G_System_SMS_ADVANCED_CLIENT_STATE.ResourceID
    = SMS_R_System.ResourceId inner join SMS_G_System_COMPUTER_SYSTEM on SMS_G_System_COMPUTER_SYSTEM.ResourceID = SMS_R_System.ResourceId where (SMS_G_System_SMS_ADVANCED_CLIENT_STATE.DisplayName = "CCM Framework" and SMS_G_System_SMS_ADVANCED_CLIENT_STATE.Version
    != "5.00.7958.1203") and SMS_G_System_COMPUTER_SYSTEM.SystemType = "x64-based PC"
    Minor mods to this or your code should do the trick.
    ...I see you're talking an update to the OS, rather than SCCM update. Still hopes this helps.
    Ben JohnsonWY

  • Can I create a footer that doesn't move with a scrolling layout?

    I'm making a book that has horizontal and vertical layouts, and I'd love to make a footer that stays put while the content scrolls. Is that possible?
    ----S

    Having  taken almost an hour using my primitive Aussie download speed Broadband,  to download the 1gig plus book...and expecting some supa dupa new gizmo..... Its a great example of  using the power of iBA coupled  together with a full understanding of how to use the built in options and facilities.
    Apart from certain  things which I personally don't like ( six mini sized videos on a white page ) it is a masterclass worth downloading by anybody wanting to  have a reference work at hand. It is free and basically from what I see, its  a brochure for a company.
    The  virtical scrolling pages are...... just that and available to anybody using iBA and a LS template and wanting vertical scrolling - which I think is pointless , but hey....
    Basically, you create in LS and edit in Portrait.
    A comment in the  book was .. " I took  my staff to a beer tasting....."
    "My Staff", to me suggest the  book is a studio product
    Use the  Orientation icons top menu to see your  page in either modes.
    I suggest you  open a template and  use it as a test book.... I keep one all the time and its now full or trials and tests! OR, duplicate your  book and  play with the copy, it saves heartache when it goes wrong!
    Again my  disclaimer....  most people do not  like  turning the iPad around and as books made  with iBA are not  usable on other devices, I see no point in  having basically  duplicate  content seen in porttrait or LS.....after all, you do not keep grabbing your flatescreen TV and turning it  vertical , or expecting a cinema screen to rotate...
    Have some more fun......

Maybe you are looking for

  • EMF graphics demaged in PDF created in Word 2010 with Acrobat X Pro,

    We export EMF from a modelling tool and insert the EMF graphics in Word (see Word window). Creating a PDF with Acrobat X Professional leads to a damaged graphic (see Acrobat window). It was no problem in the Word 2003 & Acrobat 7 Pro "suite"... What

  • Watching rented movies on Apple TV

    Hi, I just rented a movie on itunes (on my mac) and I am trying to watch it on Apple TV (2nd gen). It's on a rental tab in iTunes, but when I look for it on my Apple TV, there is no rental category on the computer tab. How do I get that to work?

  • Adjustment Brush Problem

    Dear all, I have problem with my lightroom application. The edited point after using adjustment brush didn't appeared after i locked the editing. Its hard to change the editing because the point not apeared and i cant controlmy editing after dat beca

  • Original airport card mysteriously stopped connecting to network

    i have a powermac G4 tower and have been using the original airport card for about four months. Just recently it stopped connecting to the network at all. the bars are all gray on the menu bar and when i try to connect to any network in the drop down

  • Trouble with Apple Mail

    Hello, I have Gmail account and a couple of days ago, I tried to send an email via Apple mail. E-mail size was too big so I couldn't send it. Afterwards, it created 'recovered message file' into the apple mail. Since then, gmail cannot connect Apple