FLVPlayback controls are not showing in other people computer on there browser...

Hi,
In my project I have to play a flv vedio in swf file so in place a FLVPlayback component in one movieclip and when I hv to show I make that movie clip visible and play the vedio from starting.
Its working fine on my computer but FLVPlayback controls (play pause button, seek bar volume controls) are not showing in other people computer on there browser...

Then set "base" attribute to "swf" or "./swf" (relative path - can't remember which ), or absolute path to the "swf" directory.
Kenneth Kawamoto
http://www.materiaprima.co.uk/

Similar Messages

  • HT201077 After updating my iPhone4s to the lastest update my photostream stopped updated onto my comuter.  From my phone it looks like pictures have been moved into the photostream folder... but they are not showing up on my computer.  Help!

    After updating my iPhone4s to the lastest update my photostream stopped updated onto my comuter.  From my phone it looks like pictures have been moved into the photostream folder... but they are not showing up on my computer.  Help!
    I have signed out then back into the cloud.  I have comfirmed location of the photostream folder.  I have have even restored settings on my phone.  any ideas on what I can do to get it working again?  or do I have to accept defect, and manually save my photos?

    There's a whole lot to read in your post, and frankly I have not read it all.
    Having said that, this troubleshooting guide should help:
    http://support.apple.com/kb/TS1538
    In particular, pay attention to the mobile device support sections near the bottom, assuming you have already done the items above it.

  • In IPhoto I changed movie dates after thumb nails were created in IMovie but the new dates are not showing up in IMovie.  Is there someway to refresh the IPhoto event in IMovie?

    Background:  I'm transferring file folders from a Visa laptop via an external hard drive to my IMac.  In the folders are photos and videos from different cameras.  SO I first tried to import to IMovie but it would not recognize any of the files.  So then I imported into IPhoto and both photos and videos were imported and I created events for each folder.  When I first opened IMovie I had to wait for it to create "thumb nails".  Then I could view the events in IMovie BUT the video clips are not together because they have vastly different dates and are mixed with videos from other events.  I looked at the dates and said I can fix that in IPhoto which i did but those new dates are not showing up in IMovie.    I think I need to somehow refresh the event data that Imovie is using but have not found how to do that in either IPhoto or IMovie. 
    I'm doing this on three events with about 100 photos and videos.  But I have many 1000s more to do so need to know how to either fix this or delete these events, reimport, change the dates, then open again in IMovie.   I'm sure that would work but I can't understand why changing the dates in IPhoto is not being reflected in IMovie.  
    Appreciate any tips or pointers.
    OBTW this is my first question as a first time Apple owner. 

    It was suggested I move this question to IPhoto or IMovie which I did. 
    Well moving to a different discussion group did not provide an answer to this question either. But what I finally did was import one batch of photos and videos into IPhoto for a given day at a time. Working with these I could change the date and times in order to get them in the original sequench taken. Then I would create an album with that batch. These would all be on the same day (IMove was closed for this phase). Then I would open IMovie, generate the thumbnails for that album, and select the album I had created. This was necessary because the importing process in IPhoto was using incorrect dates for my video so it was a real struggle finding them in IMove until I developed this approach.
    I believe that this whole process was so screwy because I was importing from an external hard drive not a camera. I had these photos on a PC and did not have the original cameras to use to import directly which I am fairly sure would have made this easier!

  • HT204053 I downloaded songs through itunes to my phone, but they are not showing up on my computer, why?

    I downloaded songs to my iphone 5 through itunes, but they did not show up on my computer through the cloud, why?

    Is iTunes on your computer signed into the iTunes account you used to purchase these songs, and have you turned on automatic downloads for music in iTunes>Preferences>Store?

  • My ActiveX Controls that i downloaded (APTLaser Control and APTTEC Control) are not showing up

    I got a new computer and im trying to bring over all of my files from my previous computer, however after downloading everything i was unable to use my ActiveX controls for the above objects. When i try to reinsert the object, they are not there, how to i bring in new controls to insert into the ActiveX container? Labview
    -Danny

    Hi zhuangd1,
    Did you try registerin the  ActiveX control manually, as described here?
    Cheers!
    TJ G

  • Updates are not showing in other websites

    I have kept my firefox updated automatically. When looking at the info about firefox, it says I am running 16.0.2 HOwever, there are many websites that do not let me view video or audio streams or other items because it says I am running firefox 3, an older version. This computer is not even a year old, and I put firefox on when I got it. How can sites possibly say my browser is running an older version? I have tried redownloading the application and replaced it with what I had. One of the websites that this keeps happening is google. When I open google drive, it says my firefox version is running 3.0.
    I am a mac user...OS X 10.7.4

    hello aslaven, your useragent (the information the browser sends to websites to identify its version) - apparently mistakenly - shows you're on firefox version 3.6. probably some sort of toolbar or adware has overwritten it. please refer to this article in order to reset the user-agent settings in firefox: [[Websites say that Firefox is outdated or incompatible even though it's the latest version]]

  • Added records in DB are not show in page until start a new browser

    I am inserting a record in my DB table by writing a code in my App Module Impl class. The code is shown below:
    EntityDefImpl productDef = ActivitySubtype_EOImpl.getDefinitionObject();
    ActivitySubtype_EOImpl newSubActivityType = (ActivitySubtype_EOImpl)productDef.createInstance2(getDBTransaction(),null);
    newSubActivityType.setAttribute("SubActivityName",subActivityType);
    getDBTransaction().commit();
    getDBTransaction().clearEntityCache(null); // Here I have tried lot of other function like refresh(), setClearCacheOnCommit() but noting works.
    For updating the cache I have tried many functions but nothing is working. I mean that I when I go to the same browser and view the rows, the row is added but without any PK (which is being generated by a sequence fired by trigger in my DB), until I start a new browser to see the record. When I start a new browser and view the rows I can see everything in sync with the DB table. Can someone let me know how to update the View Object cache?
    Appreciate your kind help.
    Thanks,
    Sanjay

    Hello John,
    Many thanks for your reply. I have marked the configuration you have talked about, but still it does not work.
    I understand that the problem is that my VO cache is not getting updated on its own. When I open a new browser, for this new session when the SQL query gets fired, the VO cache gets updated from the DB and the changes are visible in the new page.
    To overcome this problem I tried adding row using my VO (and not EO, as in my previous case). But I am getting some NullPointerException in that.
    Here is the code and exception.
    Code:
    String amDef = "model.activity.subtype.Second_AMImpl";
    String config = "Second_AMLocal";
    ApplicationModule secondAM = Configuration.createRootApplicationModule(amDef, config);
    ActivitySubType_VOImpl svcReqs = (ActivitySubType_VOImpl) secondAM.findViewObject("ActivitySubType_VOImpl");
    if(svcReqs != null)
    System.out.println("I am NOT NULL");
    else
    System.out.println("I am NULL"); // This object is null
    Row newSvcReq = svcReqs.createRow();
    svcReqs.insertRow(newSvcReq);
    Exception:
    javax.faces.FacesException: #{backing_addSA.create_action}: javax.faces.el.EvaluationException: java.lang.NullPointerException     at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:98)     
    at oracle.adf.view.faces.component.UIXCommand.broadcast(UIXCommand.java:211)     
    at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:287)     
    at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:401)     
    at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:95)     
    at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)     at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:110)     
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:213)
    My VO is in the same package, hence for the VO I not mentioned the package. When I mentioned the package it not able to create the VO at all.
    Can you help me on creating a new record using a VO?
    Thanks,
    Sanjay

  • Why are keywords are not showing ....

    Why are keywords are not showing, all other functions and metadata seem fine

    LarryHN - Thanks for jerking me back to reality. I've been using iPhoto since 2001, I have over 14,000 images in the file, I use facial recognition, Places, folders, keywords and Events (did I leave anything out?).   I installed Lion a couple months ago, I'm running iPhoto '11, version 9.2.1 and I'm not getting any error messages. When I click on View, Keywords I expect to see little boxes under each image with one or more Keywords in it.  If I click on View, Info I can see the keywords in the sidebar but they never appear in the main window.

  • My Websites are not showing up on the Creative Cloud Control Panel

    Hi guys,
    For some reason, just recently, my websites that I have hosted with BC, that I have built for clients, are not showing up on the right control panel? Usually when I load up CC, it shows the Website text as ...loading, then my sites appear... now, nothing.
    Help!?
    Thanks,
    Aaron

    This seems to be a bug with Creative Cloud. I am encountering the same issue. We've gone ahead and notified the product team, but for now, you can access your websites by directly logging into Business Catalyst: http://www.businesscatalyst.com/admin/Index.aspx. Use the same log in information that you use for your Creative Cloud memberhsip.
    Thank you for bringing this issue to our attention! Hopefully we'll get it sorted out soon.

  • My control center and notification center are not showing when I swipe in there respective locations. Does anybody know why?

    My control center and notification center are not showing when I swipe in there respective locations. Does anybody know why?

    Thank you for the sugestion, but it was working fine both on the lock screen and on my home screen. I check all my settings and it is how it was from Friday, when I got the iPhone 5s. It just stop working.  The only way I can fix it is by shutting down the phone. It will work for a while, then it won't. 

  • I've just found that three movies I've bought from iTunes on on my iPad are not showing up on Apple TV or anywhere other than that iPad.  What's up with that and will I lose these films if I reset this iPad?

    I've just found that three movies I've bought from iTunes on on my iPad are not showing up on Apple TV or anywhere other than that iPad.  What's up with that and will I lose these films if I reset this iPad?

    Thanks.  The reason this has become an issue is that I recently bought a new Macbook Air that the iPad is not synced to.  The one is was synced to was stolen.  If I want to sync this iPad to the new Air, won't it be wiped before I'm able to copy these films or am I wrong about that?

  • I have songs that have been purchased and they show up in my I tunes but the are not showing up bold like all other songs in my library, they will not let me download from the cloud and will not load onto my ipod.

    I have a handfull of songs in my library that are not showing up bold like the other songs. When I click the icon to download from the cloud nothing happens and they will not load onto my ipod. When I look for them in the purchased area they show up as purchased and downloaded.

    Welcome to the Apple Community.
    So far as I am aware, books haven't been available for 6 years, so I'm wondering if you mean audiobooks.
    Audiobooks are not currently part of the content that can be re-downloaded.

  • On Windows 7, CS6 all products, but especially need help with ID.  Fonts that are showing in other applications are not showing in ID.

    on Windows 7, CS6 all products, but especially need help with ID.  Fonts that are showing in other applications are not showing in ID.

    The ID Program folder will be relevant to your OS...
    I took a shot and right clicked on my Scripts Samples, choose reveal in Explorer and opened up the ID Program folder.
    As shown, there is a Fonts folder.
    Drag/Copy/Paste fonts to this folder.

  • I have installed Itunes 10.5 on my PC and I have turned photostream on on my Ipad2 and Iphone.  The photos sync fine but they are not showing up on my PC.   What's the problem?

    I have installed Itunes 10.5 on my PC and I have turned photostream on on my Ipad2 and Iphone.  The photos sync fine but they are not showing up on my PC.   What's the problem?  I can see my photos on my ipad and Iphone.   I want to be able to see them on my PC when I take pictures from my Iphone and Ipad.  How do I see Photostream on my PC?

    You have to install the iCloud control panel for windows, then sign in with you apple ID, and check what you want to sync.
    link: http://support.apple.com/kb/DL1455

  • On my iphone4s, music control do not show up on the screen and the screen cannot be rotated.

    On my iphone4s, music control do not show up on the music screen and the screen cannot be rotated.

    Couple of clarifications, the rotation lock is not set. The controls are visible for video and other apps. Only the music screen does not rotate or show the controls.

Maybe you are looking for