Unable to drag FLVPlayback Component onto stage

Just wondering if anyone could shed some light on why I can't
drag the FLVPlayback Component (AS3 version) onto the stage? I open
Component Inspector, and see the component, yet when I try and drag
it onto the stage, or into the Library, nothing happens. Each of
the individual controls, I don't have an issue with, they appear as
soon as I drag them, however the FLVPlayBack component won't have a
bar of it.

One or more of the files in the iPhoto Library are corrupted.
You can right click on the iPhoto Library and "Show Package Contents" inside is a folder called Originals.
You can mess around and copy files in small batches until you hit the snag.

Similar Messages

  • Eclipse Plugin unable to add MXML component

    I click on "New" and then choose "Other".  The "Select a Wizard" popup comes up.  I then choose "MXML Component", but when I click "Next" nothing happens.
    Does anyone have any ideas on what might be causing this?
    I am running Adobe Flash Builder 4 Premium (Version 4.0 build 272416)
    I am running Eclipse Java EE IDE for Web Developers Indigo Service Release 2 Build id 20120216-1857
    An error occurs in the .metadata/.log file
    !ENTRY org.eclipse.ui 4 0 2014-11-05 10:06:37.605
    !MESSAGE Unhandled event loop exception
    !STACK 0
    java.lang.NullPointerException
    at com.adobe.flexbuilder.mxml.editor.ui.wizards.MXMLComponentControl.updateComponentText(MXM LComponentControl.java:209)
    at com.adobe.flexbuilder.mxml.editor.ui.wizards.MXMLComponentControl.createBaseComponentTagC ontrol(MXMLComponentControl.java:202)
    at com.adobe.flexbuilder.mxml.editor.ui.wizards.MXMLComponentControl.createControl(MXMLCompo nentControl.java:96)
    at com.adobe.flexbuilder.mxml.editor.ui.wizards.NewMXMLComponentWizard$NewMXMLComponentWizar dPage.createAdditionalControls(NewMXMLComponentWizard.java:224)
    at com.adobe.flexbuilder.mxml.editor.ui.wizards.AbstractNewMXMLFileWizardPage.createControl( AbstractNewMXMLFileWizardPage.java:180)

    Hello,
    A few items to consider:
    Do the components appear if you reload the page?
    If not, do any errors appear in the error.log when you drag the component onto the page?
    If there are no errors, are the components built to display something in the default / unconfigured state?
    Regards,
    Caleb

  • Flash CS5: unable to drag component to stage or library

    We are the developers of a complex Flash component (http://www.openspace-engine.com) which worked without issues on Flash CS3 and CS4. Now, in Flash CS5 (both Mac and Windows versions) we have found a couple of problems at author-time, so any help would be appreciated.
    -1-
    After installing the mxp file containing the component, when trying to drag the component from the Components panel to the stage, or to the Library panel, it doesn't work. There's no way to import the component!
    -2-
    If we open an existing FLA (created with Flash CS4), the component doesn't show correctly at author-time: you only get a black frame, instead of the expected result (it should show a white background with a logo in the middle). When compiling, everything works fine.
    Any ideas? Thank you.

    The described issues have been reported to Adobe, which was able to replicate and to fix them. Simply install the latest Flash update.
    Thank you to the Flash development team.

  • Can't drag image onto stage in new layer, from the library?

    For a text book assignment we have to make a new layer and then drag a image from the library panel onto the stage but it won't let me? The new layer doesn't look the same as the rest in the timeline panel too.

    Hi,
    Thank you for your advice, but sadly it isn't locked. I can drag an image onto a layer already there just not a new layer for some reason. I'm behind in class because of this issue but I'm at a loss. I know how to take a screen shot but how do I add it to here, I pasted it in microsoft word but it wouldn't allow me to upload it as a image...

  • I am unable to drag and drop music onto my nano 6th gen!

    I am unable to drag and drop music onto my nano 6th gen that I downloaded into iTunes from 2 CDs that I purchased. Older songs will still copy! Oddly, I CAN drag and drop them onto my old video iPod!

    Yes! It is set up for manual management because I have way more music than will fit on my nano so I am only putting my favorites on it! It's just odd that the music on the 2 new CDs I downloaded into iTunes will not copy over! When I drag my songs to the playlist I made on my nano it acts like it is copying because I get the number of songs icon and the + sign indicating that it is copying but then the playlist is empty. The nano will say for a couple seconds that it is synchronizing but in the end nothing has transferred! If I take an older song and drag it into the playlist it does copy! Seem like it has to do with the new CDs being compatible with nano? I would really appreciate any advice! Thanks!

  • Drag the component from one cell to another cell within JTable

    Hi All,
    I have one requirement to drag the component from JList to JTable cell. I am able to do it but once if i drag the component from list to table cell, table accepting the drop after this i am unable to move the same component from one cell to another cell within the table.
    Any advice.
    I have used the following logic for JTable and JList is drag enabled.
    DefaultTableModel tableModel=new DefaultTableModel(
                new Object [][] {
                    {null, null, null, null,null,null,null},
                    {null, null, null, null,null,null,null},
                    {null, null, null, null,null,null,null},
                    {null, null, null, null,null,null,null}
                new String [] {
                    "Title 1", "Title 2", "Title 3", "Title 4","Title 5","Title 6","Title 7"
            JTable table = new javax.swing.JTable(){
                public boolean isCellEditable(int row, int column)
                    return false;
            table.setModel(tableModel);
            table.setDragEnabled(true);
            table.setDropMode(DropMode.INSERT);
            table.setTransferHandler(new TransferHandler(){
                public boolean canImport(TransferHandler.TransferSupport info){
                    if (!info.isDataFlavorSupported(DataFlavor.stringFlavor)){
                        return false;
                    return true;
                public boolean importData(TransferSupport support) {
                    if (!support.isDrop()) {
                        return false;
                    if (!canImport(support)) {
                        return false;
                    JTable table=(JTable)support.getComponent();
                    DefaultTableModel tableModel=(DefaultTableModel)table.getModel();
                    // fetch the drop location
                    JTable.DropLocation dl = (JTable.DropLocation)support.getDropLocation();
                    int row = dl.getRow();
                    int col=dl.getColumn();
                    // fetch the data and bail if this fails
                    String data;
                    try {
                        data = (String)support.getTransferable().getTransferData(DataFlavor.stringFlavor);
                    } catch (UnsupportedFlavorException e) {
                        return false;
                    } catch (IOException e) {
                        return false;
                    calendarTableModel.setValueAt(data, row, col);
                    return true;
            });Thanks & Regards,
    Maadhav.
    Edited by: maadhav on Jun 23, 2009 12:29 AM

    Hi All,
    I fixed this issue with some additional logic which allow me to drag and drop the string component from one cell to another cell within in the JTable.
    I am attaching the new logic here, if any one needs use it.
    DefaultTableModel tableModel=new DefaultTableModel(
                new Object [][] {
                    {null, null, null, null,null,null,null},
                    {null, null, null, null,null,null,null},
                    {null, null, null, null,null,null,null},
                    {null, null, null, null,null,null,null}
                new String [] {
                    "Title 1", "Title 2", "Title 3", "Title 4","Title 5","Title 6","Title 7"
            JTable table = new javax.swing.JTable(){
                public boolean isCellEditable(int row, int column)
                    return false;
            table.setModel(tableModel);
            table.setDragEnabled(true);
            table.setDropMode(DropMode.USE_SELECTION);
            table.setTransferHandler(new TransferHandler(){
              public int getSourceActions(JComponent c) {
                    return DnDConstants.ACTION_COPY_OR_MOVE;
                public Transferable createTransferable(JComponent comp)
                    JTable table=(JTable)comp;
                    int row=table.getSelectedRow();
                    int col=table.getSelectedColumn();
                    String value = (String)table.getModel().getValueAt(row,col);
                    StringSelection transferable = new StringSelection(value);
                    table.getModel().setValueAt(null,row,col);
                    return transferable;
                public boolean canImport(TransferHandler.TransferSupport info){
                    if (!info.isDataFlavorSupported(DataFlavor.stringFlavor)){
                        return false;
                    return true;
                public boolean importData(TransferSupport support) {
                    if (!support.isDrop()) {
                        return false;
                    if (!canImport(support)) {
                        return false;
                    JTable table=(JTable)support.getComponent();
                    DefaultTableModel tableModel=(DefaultTableModel)table.getModel();
                   JTable.DropLocation dl = (JTable.DropLocation)support.getDropLocation();
                    int row = dl.getRow();
                    int col=dl.getColumn();
                    String data;
                    try {
                        data = (String)support.getTransferable().getTransferData(DataFlavor.stringFlavor);
                    } catch (UnsupportedFlavorException e) {
                        return false;
                    } catch (IOException e) {
                        return false;
                    tableModel.setValueAt(data, row, col);
                    return true;
            });Thanks & Regards,
    Maadhav..
    Edited by: maadhav on Jun 23, 2009 5:26 AM
    Edited by: maadhav on Jun 23, 2009 5:28 AM

  • Need to stop playback of an FLVPlayback component when navigate away from page!

    I have an movieclip playing as auto start on the first page of my website.  The component continues to play when I navigate away from the page.  How can I stop the playback of the movie if it has not completed when navigation away from the page is invoked.  I have search and am unable to find such an event using an FLVPlayback component.  Presently there is no code in actionscript to display here.
    thanks

    Hi, this is the entire code that is placed on the timeline in frame 1 of the AS line.  There is now an error and the FLVPlayer component, which is also begin in frame 1. At this point there is one method that I thought should work when the vTinesDayBtn is clicked.  However, is not.
    The error is:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at ewddSite_fla::MainTimeline/vTines()
    ArgumentError: Error #1063: Argument count mismatch on ewddSite_fla::MainTimeline/stoppedVid(). Expected 0, got 1.
    The code is:
    stop();
    import flash.events.*;
    import flash.display.*;
    import fl.video.*;
    import fl.video.FLVPlayback;
    function stoppedVid() {
      vidPlay.stop();
    vTinesDayBtn.addEventListener(MouseEvent.CLICK, stoppedVid)
    function vTines(evt:MouseEvent):void {
    gotoAndStop(20);
    vidPlay.stop();
    function engagements(evt:MouseEvent):void {
    gotoAndStop(25);
    function weddings(evt:MouseEvent):void {
    gotoAndStop(30);
    function births(evt:MouseEvent):void {
    gotoAndStop(35);
    function birthdays(evt:MouseEvent):void {
    gotoAndStop(40);
    function graduations(evt:MouseEvent):void {
    gotoAndStop(45);
    function anniversaries(evt:MouseEvent):void {
    gotoAndStop(50);
    function specEvents(evt:MouseEvent):void {
    gotoAndStop(55);
    function memorials(evt:MouseEvent):void {
    gotoAndStop(60);
    //main.addEventListener(MouseEvent.MOUSE_DOWN, mainPg);
    vTinesDayBtn.addEventListener(MouseEvent.MOUSE_DOWN, vTines);
    engageBtn.addEventListener(MouseEvent.MOUSE_DOWN, engagements);
    weddingsBtn.addEventListener(MouseEvent.MOUSE_DOWN, weddings);
    birthsBtn.addEventListener(MouseEvent.MOUSE_DOWN, births);
    bDaysBtn.addEventListener(MouseEvent.MOUSE_DOWN, birthdays);
    graduBtn.addEventListener(MouseEvent.MOUSE_DOWN, graduations);
    annivBtn.addEventListener(MouseEvent.MOUSE_DOWN, anniversaries);
    spEventsBtn.addEventListener(MouseEvent.MOUSE_DOWN, specEvents);
    memorialsBtn.addEventListener(MouseEvent.MOUSE_DOWN, memorials);

  • FLVPlayback component skinAutoHide problem

    Hi guys!
    I have a problem with FLVPlayback component's skinAutohide
    property which works poorly when FLVPlayback component is the same
    size as your stage. The skin only hides when I move my mouse very
    slowly outside the FLVPlayback component.
    Also making the FLVPlayback component smaller isn't an option
    so what more options are there left?
    Is there anyway to hide the skin by yourself?
    I allready tried the following code, but I think this is very
    unreliable (I get some errors when I move my mouse very quickly
    over and outside the FLVPlayback component):
    video.addEventListener(Event.MOUSE_LEAVE, mouseLeaveHandler);
    video.addEventListener(MouseEvent.MOUSE_MOVE,
    mouseMoveHandler);
    function mouseLeaveHandler(event:Event):void {
    video.skin = "";
    function mouseMoveHandler(event:Event):void {
    video.skin = "SkinOverPlayStopSeekFullVol.swf";

    I am having the exact same problem. Thanks for info that this
    is caused by movie being the same size as the stage. I am also
    working on a solution and will let you know if I find one.

  • FLVplayback component problem

    my flash movie contains FLVPlayback component to play videos.
    In the begining of the movie( frame 1) I have a simple pre-loader.
    When I test my swf on a browser the pre-loader appear only after
    few second, not immediately. (my pre-loader start from 40%). I
    think the reason is that flash load the FLVPlayback component on
    the first frame although my component appears only on the second
    frame . Is there any work around this issue?
    Thanks

    I am having the exact same problem. Thanks for info that this
    is caused by movie being the same size as the stage. I am also
    working on a solution and will let you know if I find one.

  • Is Action Script for netStreaming and FLVPlayback component radically different, not interchangeabl?

    Hi.
    I am using NetConnection and NetStream to play back flv in Flash Pro CS5.5, and trying to add cue point to trigger events using Action Script, and to automatically rewind to the start at the end. There is no problem to trigger events via AS when the cue points are embedded, but i am unable to add cue points using AS.
    When i use an FLVPlayback component, there is no problem to add cue points (http://help.adobe.com/en_US/ActionScript/3.0_UsingComponentsAS3/WS5b3ccc516d4fbf351e63e3d1 18a9c65586-7feb.html) and to loop the playback using autoRewind (and fl.video.VideoEvent.AUTO_REWOUND which i got from Nafem at http://forums.adobe.com/thread/857036).
    However, i am failing to use this same code w/a netConnection and netStream, and would appreciate any help.
    thanks.

    Hello,
    Well, I've got some help from another helpful fellow at macscripter.net and I have a working script - albeit a bit more specific (ie, hardcoded extensions to look for) and a different approach.
    Here's the script:
    on adding folder items to thisFolder after receiving addedItems
    repeat with movieFile in addedItems
    set {Nm, Ex} to getName_andExtension(movieFile)
    set movieFilePath to (thisFolder as text) & Nm & ".avi"
    set subtitleFile to (thisFolder as text) & Nm & ".srt"
    if Ex is ".srt" then
    try
    tell application "iFlicks"
    import (movieFilePath as alias) with gui
    end tell
    end try
    else if Ex is ".avi" then
    if my FinderItemExists(subtitleFile) then
    try
    tell application "iFlicks"
    import (movieFilePath as alias) with gui
    end tell
    end try
    end if
    end if
    end repeat
    end adding folder items to
    on getName_andExtension(F)
    set F to F as Unicode text
    set {name:Nm, name extension:Ex} to info for file F without size
    if Ex is missing value then set Ex to ""
    if Ex is not "" then
    set Nm to text 1 thru ((count Nm) - (count Ex) - 1) of Nm
    set Ex to "." & Ex
    end if
    return {Nm, Ex}
    end getName_andExtension
    on FinderItemExists(thePath)
    try
    set thePath to thePath as alias
    on error
    return false
    end try
    return true
    end FinderItemExists

  • Illustrator and InDesign Unable to drag objects

    I have suddenly become unable to drag items in InDesign and Illustrator. I may mention at the same time my Photoshop is not working either. I solved these problems two weeks ago by uninstalling Adobe Creative Suite CS5, running adobe cloud cleanup tool, restarting the computer and then reinstalling the programs. However within the week the problem came back again and this solution is no longer working!
    Any suggestions of what could be going wrong??! (im pretty desparate!)
    I have copied my system info below:
    Component
    Details
    Subscore
    Base score
    Processor
    AMD Athlon(tm) II Dual-Core M320
    5.0
    3.0
      Determined by lowest subscore
    Memory (RAM)
    2.00 GB
    5.5
    Graphics
    ATI Mobility Radeon HD 4200
    3.0
    Gaming graphics
    894 MB Total available graphics memory
    3.4
    Primary hard disk
    199GB Free (254GB Total)
    5.8
    Windows 7 Home Premium
    System 
    Manufacturer
    LENOVO
    Model
    0873
    Total amount of system memory
    2.00 GB RAM
    System type
    32-bit operating system
    Number of processor cores
    2
    64-bit capable
    Yes
    Storage 
    Total size of hard disk(s)
    283 GB
    Disk partition (C:)
    199 GB Free (254 GB Total)
    Disk partition (D:)
    28 GB Free (29 GB Total)
    Media drive (F:)
    CD/DVD
    Graphics 
    Display adapter type
    ATI Mobility Radeon HD 4200
    Total available graphics memory
    894 MB
          Dedicated graphics memory
    256 MB
          Dedicated system memory
    0 MB
          Shared system memory
    638 MB
    Display adapter driver version
    8.681.0.0
    Primary monitor resolution
    1366x768
    DirectX version
    DirectX 10

    Thank you for your quick response!
    I cannot drag an image, text, simple shapes etc. By drag, I mean select the object in order to move it. I am able to move it using the arrow keys or the "transform" window, but I cannot move it by selecting it with my mouse and dragging it.

  • Opening .mp4 files using flvplayback component 2.5 in Air 3.2

    I've publishing the package using the extended desktop profile and captive runtime.
    When I run the published .exe file from a hard disk (either on my local machine or other test machines) it works fine, so I know that I have my code at least partially correct.
    I'm accessing the .mp4 files from a subdirectory of the applicationDirectory (eg: app:/video), the file names are read in from a .xml file.
    Example structure:
    exampleVideoSource = File.applicationDirectory.url+"video/12-16/attacking when in balance/counterattacking 2.mp4"
    Is this likely to confuse the FLVplayback component, if so what's the best way to get a working path?
    Thanks,
    Dan

    Discovered the issue.
    For mounted drives you need to use the nativePath property.
    For cross platform applications you can simply replace() the delimiter with the .separator property.
    Also for some reason the skin wouldn't load, despite the fact that I had chosen it in the component selector.
    I ended up setting the myFLVplayback.skin property just before I added the component to the stage.
    On  a related note, does anyone know if there's a difference between publishing an app with included folders, and simply publishing the app and adding the folders to the .app directory after the .app folder has been published?
    Dan

  • FLVPlayback Component + HTML5

    For a HTML5 Canvas project I'm in need to use imported FLV videos (green screen w/ alpha channel), with the goal to publish it highly compatible on the web. As the FLVPlayback Component is not supported in HTML5 projects, is there some possible workaround to achieve what I want with Adobe's software? If not, could I get briefed how this could be done with other programs/techniques?

    While there have been 'workarounds' in the past, the answer is ultimately that codecs that support this are limited and unreliable. You'll need to use a <canvas> trick to really pull this off which involves separating your alpha channel into its own video, then using an invisible canvas to process the video based on the alpha channels (reading pixel by pixel to determine what opacity percentage to draw of every single pixel). Some people use a specific color in the video as the channel (for instance if you just needed red text, then use a different background color as the alpha). You then draw that to a visible canvas after calculated. It's very unideal but there's no "best way" to do this currently, outside Flash.
    A quick search will show you the techniques I'm talking about but none of them are drag and drop approaches to the problem. They require JavaScript, proper types of video and a bunch of processing.

  • F4V video will autoplay in FLVPlayback component but won't appear w/autoplay "false"

    I'm designing a Flash Form Application (using screens) for an interactive portfolio. One screen, labeled multimedia (video), has an FLVPlayback component that appears on "stage" once visitors click the "multimedia" text button. The screen appears fine and the video actually begins to play with the parameter to autoplay toggled to "true." However, as this is just one of many screens, I only want it to play when the screen loads or when the visitor clicks the play button.  And please don't assume anything.  I'm an amature with components.
    I'm sure it's something small that I've missed. Has anyone else run into this or know why this happens or what I may've missed? Am grateful for any helpful assistance anyone offers.
    Thanks.

    See:
    FAQ: How do I import VOB files / edit a DVD?
    You will also find links to many
    free tutorials in the PremiereProPedia that will quickly show you how things are done in Premiere Pro.
    Cheers
    Eddie
    PremiereProPedia   
    RSS feed)
    - Over 350 frequently answered questions
    - Over 300 free tutorials
    - Maintained by editors like
    you
    Forum FAQ

  • Controlling the FLVplayback component Volume

    Hi there,
    I have a FLVPlayback component which I have modified to the
    core.There is one problem with the volume slider. Im using Flash
    Professional 8 with XP, and the skin Im using is
    "steelExternalAll". Suppose I load some file into the contentPath,
    it plays, and I drag the volume slider up (100%) and down(0%) for a
    couple of time I get a bug. The bug is that when Im finally in the
    down state, with 0% I still hear the sound which was in the
    previous status, say 38 or 50%. And it happens in the reverse too.
    Why is this happening? Can i resolve it?
    I tried doing this using a fresh FLASH file, still the result
    is the same. It happens once in a 10 times, but this surely is a
    defect i need to handle. I dont think I have enough API's to do
    something serious. Can anyone help me out?

    Hi kglad,
    Greetings. Felt so glad when I saw your reply saying that the
    problem was with the skinning, because I did one hell of a
    skinning. But I had a crosscheck. I tool a sample
    "steelExternalAll" skin, just like it is in the component panel,
    and just added a contentPath. Simple. I checked for the volume
    slider problem, and there it was.
    I can find the problem in the normal unmodified skin. This is
    the same problem I face. Can this be solved. There is no other code
    piece Im using other than the one given below.
    Thanks a lot for your kind patience.

Maybe you are looking for

  • Where to get to xml to alter photo gallery?

    In the new format for BC I can't seem to find where to upload a XML file to help me tweek the photo gallery. I was going to buy this tutorial in the hopes it will help me fix the sizing issue of the Photo Gallery. When a picture is really large it fi

  • Is there a keyboard shortcut to move from the bookmark pane to the PDF pane?

    I create a lot of bookmarks for easy referencing. Creating a bookmark is easy, with the press of Ctrl+B.  But once you are in the bookmark pane and done with it, there doesn't seem to be a keyboard shortcut to come back to the PDF pane. I always have

  • Tested my line so my internet still sucks

    my connection is testing at 4mps downloading and .5 uploading. i called for support and the tech said they said they'd have to check the line. i just got a call from the automated system saying they tested it and everything's fine so if i still have

  • How to find list of previously Instances

    Hi All, How to find the list of proviously installed instances and delete them. I installed obiee 11.1.1.5 and found it to be the 4th instance. So how could i clear all the previous instances in my system. Any help appricated. Thanks Jaan

  • Ipod from mac to Window

    Hi everyone, I have an Ipod program on a macintosh computer. Now I don't have anymore this computer I have presently a window PC. I want to format my Ipod on my new cumputer without losing all my files and songs. Is it possible. Thanks for your answe