Video has controls locally, not over Internet

Hello,
I'm using Flash CS3.
I used the Import video... wizard to import a QT movie and I
used one of those template controls for playback control and
published using the default settings. I have an .HTML, .SWF, .FLV
and a AC_RunActiveContent.js files. When I launch the .HTML file
locally on my computer, I get the movie with the controls in my
browser (Safari and Firefox Mac). After uploading all the files to
my server, when I click on the .HTML, I only get the video and no
controls.
Here is the .HTML:
http://www.swproductions.com/clients/KLA-Tencor/KTC-Chinese-Flash.html
I searched this forum for someone with this issue and didn't
find any existing thread. I also looked in the manual and didn't
find a solution.
Thank you for any tips or help.
Scot

Sorry about wasting your time! :)
I didn't realize a skin SWF was also created and needed. I
found that and uploaded it and it works.
Scot

Similar Messages

  • XML (RSS) Spry Dataset File Works in Preview But Not Over Internet

    hello
    I am trying to build a custom feed reader using the Spry framework in Dreamweaver CS4 and everything seems to go smoothly until I actually host the file (with the accompanying js and css files) and try to view it over the internet
    previewing from DW shows everything working the way it should
    I feel like I am missing something obvious ... but not sure what
    thanks for any help!

    Hi, i have a similar problem..
    These URL returns a XML:
    1) http://www.bolsadesantiago.com/intradayServlet?symbol=IPSA
    2) http://www.valorfuturo.com/contenidos_vf/proyectos/clientes/penta/titularnoticias.asp
    I use a CS4 and both works in preview, but only first works over internet (IE7).
    I suspect that 2° has a problem of syntax XML, but work with jQuery.

  • Java chat program, works on single PC, but not over internet?

    I got bored so I started writing a chat client in java, its IRC style, a server and as many clients as you want. It works fine on a single computer (using 127.0.0.1 as the IP) but not over the internet.
    I've tried running the server and client on my home PC, set up the ports to be forwarded on my router and enabled them in the windows firewall but I get the error "Connection refused" when trying to connect using my external IP (ISP) address, same with me running the server and a mate running the client.
    The class chatHandler was basically stolen off the internet, the rest I wrote myself or modified bits of code to suit. I wrote it in netbeans with the GUI builder.
    I've hosted both projects in the single zip, if you want to run the application just open the .jar file in the dist folders, or view the source via the src folder, or alternatively you can load the project up in NetBeans so its easier to play with the GUI.
    So yeah if anyone can help me out with why its not working that'd be great, I've added the port to my firewall (default 60111). My ultimate goal is to implement an actual protocol so it isn't just sending plain text, then I can easily send files to mates etc.
    http://rapidshare.com/files/208309140/ChatProgram.zip.html
    Edited by: rolls on Mar 12, 2009 4:58 AM

    what I have done recently is this:
    have added java.exe, javaw.exe, the ports Im using to the windows firewall and also the ports I am using to my router.
    I have also tried changing :
    server = new ServerSocket(port);
    to:
    InetAddress IP = InetAddress.getByName(IPAddress);
    server = new ServerSocket(port, backlog, IP);
    (IPAddress = 192.168.1.3 my lan NIC)
    As I believe it was binding to my local loopback adaptor, hence not seeing any packets when using a packet analyser, however now I get an exception, after printing a stacktrace from the client I get this.
    However I can now connect using 192.168.1.3 just not using my external IP address.
    java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl .java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSoc ketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.j ava:182)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.j ava:366)
    at java.net.Socket.connect(Socket.java:519)
    at java.net.Socket.connect(Socket.java:469)
    at java.net.Socket.<init>(Socket.java:366)
    at java.net.Socket.<init>(Socket.java:180)
    at chatclient.Client.run(Client.java:60)
    at java.lang.Thread.run(Thread.java:619)
    Why is my connection getting refused? I've set up a virtual server and port forwarding on my router, and turned off the windows firewall.

  • JDBC thin client downloads locally, not through internet

    Using same code, environment, server, etc,:
    the thin client will download successfully if the server is accessed as part of the internal network. Access with the server outside the local network (via internet) does not seem to download all the parts of the thin client.
    I have tried with the thin client jars (both), and with classess rather than jar (so I can see where it stops).
    The environment is O8iEnterprise, NT server4 (SP6), IIS, JRUN 2.3x, IE5, java 1.2x/applets, 1.3 plugin
    What am I missing for the internet access setup? Thx.

    are you using latest drivers - http://www.oracle.com/technology/tech/java/sqlj_jdbc/index.html
    you may want to check some options reducing jdbc connection cost from the otn samples - http://www.oracle.com/technology/sample_code/tech/java/sqlj_jdbc/index.html

  • Loading Images Slow [Not over Internet]

    Hi,
    I'm wondering if the way my program is behaving is normal.
    I'm loading about 200 images into my program. They're about 3 kilobytes each, so in total I'm loading about 700 kb worth of data.
    I use the following code:
      for(int i=0; i<images.length; i++)
        mediaTracker.addImage(img,1);
    mediaTracker.waitForAll();
    However, loading these images often takes up to a minute. And this is not over the internet. This is directly read from the HD. Is this loading time normal? It seems strange that it takes a min to load not even 1 meg of data.
    Please offer any suggestions.

    I tried reading in 200 images that are about 6.5K each -- takes about 5 secs total on my shitbox of a machine.
    import java.awt.image.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import javax.imageio.*;
    public class Example {
        static final int UB = 200;
        public static void main(String[] args) throws IOException {
            createFiles();
            long start = System.currentTimeMillis();
            System.out.println("start");
            readFiles();
            long end = System.currentTimeMillis();
            System.out.println("elapsed millis = " + (end-start));
        static void createFiles() throws IOException {
            URL url = new URL("http://today.java.net/jag/bio/JagHeadshot-small.jpg");
            BufferedImage image = ImageIO.read(url);
            Iterator it = ImageIO.getImageWritersBySuffix("jpeg");
            ImageWriter w = (ImageWriter) it.next();
            for(int i=0; i<UB; ++i) {
                w.setOutput(ImageIO.createImageOutputStream(new File("images/temp" + i + ".jpeg")));
                w.write(image);
         static void readFiles() throws IOException {
             BufferedImage[] images = new BufferedImage[UB];
             Iterator it = ImageIO.getImageReadersBySuffix("jpeg");
             ImageReader r = (ImageReader) it.next();
             for(int i=0; i<UB; ++i) {
                 r.setInput(ImageIO.createImageInputStream(new File("images/temp" + i + ".jpeg")));
                 images[i] = r.read(0);
    }

  • ActiveX control "could not be loaded"

    G'Day everyone,
    I'm having a problem with my activeX controls (SHDocVw.IWebBrowser2 for example) - when I load and run a LabVIEW 6i VI with an ActiveX container on the front panel, I get an error 97 (Unknown System Error in Untitled.vi) out of its method node. If I load the same VI into LabVIEW 6.1, I get the same error, and the container has "Control could not be loaded" written in it. This isn't just limited to the web browser control, but others too. (they used to work a week or so ago, and I can't think of anything I've done to the system since then...) If anyone has any ideas on how to fix this, I'd really appreciate it!
    cheers,
    Christopher
    Christopher G. Relf
    [email protected]
    Int'l Voicemail & F
    ax: +61 2 8080 8132
    Aust Voicemail & Fax: (02) 8080 8132
    EULA
    1) This is a private email, and although the views expressed within it may not be purely my own, unless specifically referenced I do not suggest they are necessarily associated with anyone else including, but not limited to, my employer(s).
    2) This email has NOT been scanned for virii - attached file(s), if any, are provided as is. By copying, detaching and/or opening attached files, you agree to indemnify the sender of such responsibility.
    3) Because e-mail can be altered electronically, the integrity of this communication cannot be guaranteed.
    Copyright © 2004-2015 Christopher G. Relf. Some Rights Reserved. This posting is licensed under a Creative Commons Attribution 2.5 License.

    Unfortunately, it was *all* of my ActiveX controls that wouldn't load. That said, A user of the Info-LabVIEW list came up with the answer: reinstall the RunTime engine - wierd....
    thanks,
    Christopher
    Copyright © 2004-2015 Christopher G. Relf. Some Rights Reserved. This posting is licensed under a Creative Commons Attribution 2.5 License.

  • How to control and display video from IP camera using ActiveX control over Internet.

    Hello,
    I need to control my IP cameras over the internet. I need to log into the cameras and then display the video.  There's an ActiveX control registered on the computer and works fine with IE to access and control the cameras. Controlling the cameras using IE works fairly well, but there are some quirks that I'd like to eliminate by using my own custom code.
    Has anyone created a vi that controls a Foscam FI8905W over the Internet? I’ve attempted, but I keep getting a catastrophic failure when I try to call ManagementConnect Method in the DVM_IPCam2 ActiveX Control Module V1.0. I'm not sure whether I need to establish an IP connection with the cameras first, or allow the ActiveX control to establish it for me.
    Some example code would be greatly appreciated. Running LabVIEW 2011 on a Win7 32bit.  Even some code used to control a similar device using ActiveX over Internet would be helpful.

    I have an example vi for interfacing to the foscam activex.
    I plan on using mouse click events within the activex window to trigger the PT function.
    I only have the basic up/down/right/left directions and not the down-right/down-left/up-right/up-left in the enum.  You can load the camera's web page and view the source to see the Java script code that uses the activex control.  There are definitions for the other directions.
    I had to mark the control as "Disabled" to keep click events from going to the activex control.  If I double click the control, it goes full screen.  If I then click on it to get out of full screen mode the video never returns or returns to the wrong spot in the VI.
    Attachments:
    Foscam Demo.vi ‏24 KB

  • TS3274 Every time I try to play Amazon video on iPad, it shows "our Internet connection is currently using an HTTP proxy, content playbacks not supported when a proxy is configured". Though I can play it on iPhone which has same Internet connection. Plz h

    Every time I try to play Amazon video on iPad, it shows "our Internet connection is currently using an HTTP proxy, content playbacks not supported when a proxy is configured". Though I can play it on iPhone which has same Internet connection.
    Can any one please help?

    This helped me
    http://mashtips.com/amazon-instant-video-http-proxy-error-on-ipad/

  • Video Conferrence over Internet??

    Hi all experienced JMF-ers,
    I'm new to Java, of course JMF too .But I have a big will to learn it ..
    I'm interested to develop such a video conferrence using JMF.
    I've read JMF Guide ( although I don't understand all yet ), some refference, I learn several free source code on the internet ( it helps me to understanding JMF faster ) .
    with my poor of experience I modify AVTransmit2 and AVReceive2 then I can make the code to transmit captured video and audio over LAN ( still one way stream ). Although it still makes a delay 1-2 sec.
    But then when I look at this forum, I read several messages that video conferrence using JMF still have a problem such as can't transmit video stream over Internet yet.
    Is there anyone who have solved this problem? ( I'm not testing yet for DaddyE's code for video conferrence) , if yes, I apreciated if you want to share ur depth experience about its high level architecture? And what's the algorithm ? I'll try to make the code by my self. Thanx before.
    Regards,
    Adhi

    Hi khrisna,
    i decide to make a conferrence over LAN first before it goes to internet.
    It doesn't work yet. I modify the code AVTransmit2 and AVReceive2.
    And I think I dont set the frame rate ( default from the web cam ).
    Video and Audio encoding are set just like AVTransmit2.
    I have a plan to make client-server transmit. In a Local Area Network,
    I use socket network programming.
    Now, I've a problem to clone datasource. I think someone in this forum has a problem as I have.
    whats ur suggestion about these :
    1. merge the datasource for audio and video capture first and then make it one processor. After processor has realized, cloned the dataOutput from processor, or
    2. make a processor for each audio and video capture, after both processor has been realized then I merge the dataOuput from both. and then clone the mergedDataOutput.
    which one can work better ? ur help,please!

  • Facing Problems in Streaming Video over internet using FMS 3.5

    I,am using FMS 3.5 to stream video over internet.This video will be a part of a website www.mywebsite.com . I have the webserver in my company. This webserver has the local LAN IP : 192.168.10.19 which is binded with a public internet ip 212.77.xx.xx .This website is hosted using IIS 6.0 on OS windows 2003 server with SP2
    I created a swf name sample.swf from sample.flv file and gave it the rtmp address as follows:
    rtmp://192.168.10.19/vod/_StreamingVideo_/sample.flv   (where _StreamingVideo_  is the instance on the server, and 192.168.10.19 is the LAN IP of server) ,and it worked fine and every one within the local company network could see the streaming video. Now i tried to replace this local address with the public address and the address became as follows:
    rtmp://212.77.xx.xx/vod/_StreamingVideo_/sample.flv
    After giving this public IP in the rtmp address i,am getting a message "Failed to load Flv from the address rtmp://212.77.xx.xx/vod/_StreamingVideo_/sample.flv" and as as result the video is not streamed and it only shows the progress bar on the link
    www.mywebsite.com/VideoStreaming/Sample.html without loading the video. I have also checked the ports 80,1935,1111 on the server and they are open. Is there any problem with my rtmp address with public IP or any other reason ??. Please help me out in this regard because im realy stuck here.

    Adding to my previous post this is the XML output i get when i try to access the fms admin console from local ip address i.e http://192.168.10.19:1111/fms_adminConsole.htm
    <?xml version="1.0" encoding="utf-8" ?>
    - <result>
    <level>error</level>
    <code>NetConnection.Connect.Rejected</code>
    <description>Admin user requires valid username and password.</description>
    <timestamp>2/3/2010 8:26:08 AM</timestamp>
    </result>
    but when i try to access fms admin console through public ip (http://212.77.xx.xx:1111/fms_adminConsole.htm) then it gives me the following :
    Internet Explorer cannot display the webpage.
    Any more suggestions Jay (because really ur the only one helping me out in this so far) ??

  • Hey guys, i have a one year old Mac desktop which has become incredibly slow over time. Strange thing is that I have not downloaded anything save for install Windows for Mac. Storage wise the bulk of my info is stored on hard external drives. Can someow

    Hey guys, i have a one year old Mac desktop which has become incredibly slow over time. Strange thing is that I have not downloaded anything save for install Windows for Mac. Storage wise the bulk of my info is stored on hard external drives. Can someow

    Hardware Information:
              iMac - model: iMac11,2
              1 3.2 GHz Intel Core i3 CPU: 2 cores
              4 GB RAM
    Video Information:
              ATI Radeon HD 5670 - VRAM: 512 MB
    System Software:
              Mac OS X 10.6.8 (10K549) - Uptime: up 0:2:53:43
    Disk Information:
              WDC WD1001FALS-40Y6A0 disk0 : (931,51 GB)
                        (null) (disk0s1) <not mounted>: 200 MB
                        Macintosh HD (disk0s2) /: 931,19 GB (894,98 GB free)
              OPTIARC DVD RW AD-5680H 
    USB Information:
              Apple Inc. iPad
              Apple Internal Memory Card Reader
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple, Inc. Keyboard Hub
                        Apple, Inc Apple Keyboard
              Apple Computer, Inc. IR Receiver
              Apple Inc. Built-in iSight
    FireWire Information:
    Kernel Extensions:
    Problem System Launch Daemons:
                     [failed] com.apple.suhelperd.plist
                 [not loaded] org.samba.winbindd.plist
    Problem System Launch Agents:
                     [failed] com.apple.Kerberos.renew.plist
    Launch Daemons:
                     [loaded] com.adobe.fpsaud.plist
                     [loaded] com.microsoft.office.licensing.helper.plist
                     [loaded] com.rim.BBDaemon.plist
                     [loaded] com.zeobit.MacKeeper.AntiVirus.plist
    Launch Agents:
                     [loaded] com.rim.BBAlbumArtCacher.plist
                     [loaded] com.rim.BBLaunchAgent.plist
    User Launch Agents:
                     [loaded] com.adobe.ARM.202f4087f2bbde52e3ac2df389f53a4f123223c9cc56a8fd83a6f7ae.plist
                     [loaded] com.zeobit.MacKeeper.Helper.plist
    User Login Items:
              iTunesHelper
              BlackBerry Desktop Software
              Bluetooth File Exchange
              Garmin ANT Agent
              Dropbox
    3rd Party Preference Panes:
              Flash Player
    Internet Plug-ins:
              AdobePDFViewer.plugin
              AdobePDFViewerNPAPI.plugin
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              GarminGpsControl.plugin
              iPhotoPhotocast.plugin
              JavaAppletPlugin.plugin
              QuickTime Plugin.plugin
              SharePointBrowserPlugin.plugin
    User Internet Plug-ins:
    Bad Fonts:
              None
    Top Processes by CPU:
    Top Processes by Memory:

  • Video transmission over internet

    Hi to all ,
    iam developing video and audio transmission over internet using JMF in java.
    it is working in the LAN with multicast ip address like 224.235.202:42050
    my problem is when i want to transmit in the internet which ip address and port i need to use for transmission and receive.
    please help me out.
    if possible give me some sample code which is working in internet for transmission video and audio.

    Hi khrisna,
    i decide to make a conferrence over LAN first before it goes to internet.
    It doesn't work yet. I modify the code AVTransmit2 and AVReceive2.
    And I think I dont set the frame rate ( default from the web cam ).
    Video and Audio encoding are set just like AVTransmit2.
    I have a plan to make client-server transmit. In a Local Area Network,
    I use socket network programming.
    Now, I've a problem to clone datasource. I think someone in this forum has a problem as I have.
    whats ur suggestion about these :
    1. merge the datasource for audio and video capture first and then make it one processor. After processor has realized, cloned the dataOutput from processor, or
    2. make a processor for each audio and video capture, after both processor has been realized then I merge the dataOuput from both. and then clone the mergedDataOutput.
    which one can work better ? ur help,please!

  • I have now purchased easy a twice which has cost me 14 pounds both times the video has not loaded i has come up with "!" its asking e to locate the file and i have tried to i typed in easy a on finder and spotlight and it hasn't come please help

    i have now purchased easy a twice which has cost me 14 pounds both times the video has not loaded i has come up with "!" its asking e to locate the file and i have tried to i typed in easy a on finder and spotlight and it hasn't come please help

    Janieburmy,
    You can always deauthorize all your machines from your store account page — just log in and view your account settings and there's a button to deauth all your machines. Which just means for the other machines, it will ask you for your store ID / password the next time you play a purchased song.
    So, let's try the filter experiment.
    On the start menu, click on "run". in the space it provides enter "regedit" without the quotes. This will open the registry editor.
    Find the heading HKEYLOCALMACHINE. Click on it.
    Find the heading SYSTEM inside it. Click on it.
    Find the heading CurrentControlSet. Click
    Find the heading Control. Click
    Find the heading Class. Click
    Find the heading that begins {4D36E965- Click
    Go up to the Registry menu and select "Export Registry File... command. Make sure the "Selected Branch" radio button is checked and save that off somewhere that you can find it.
    Delete the key named LowerFilter.
    Select the key named UpperFilter, right click, select "modify". Then edit the text in the dialog to just say "GEARAspiWDM" followed by hitting the return key, the return after the word is important.
    Then reboot, and see what iTunes does.
    To get the system back to its previous state. Run Regedit again and use the Registry menu -> Import Registry File... command and select the file that you saved off in the first section.
    I'm particularly interested in getting rid of the "AFS2K" driver in the chain — that's a old driver from a company that hasn't existed in years.
    To answer your last question, why am I doing this?... I'm paying off a karmic debt. And someday we'll start that Tequila for Toonz paypal account and then I'll be set.

  • C7280 - Cannot scan. Error message says another program has control over the device

    I opened the HP Device Manager to do a scan. I accepted the settings and the scan started. But part way through the scan, I stopped the scan as I realized that I wanted to change the resolution. I quit the Device Manager  and restarted it but when I did, I got an error message saying:
    "The function you have requested cannot be performed because another program has control over the device".
    I don't have anything else open and so I can't work out what program has control over the printer.
    C7280 Prtinter. Mac OSX 10.7.
    This question was solved.
    View Solution.

    I was thinking that if you stopped the process in mid-scan that there may be some background processes still running. Rebooting usually stops those processes.
    No, you will not have to do this each time.  Next time, though, it may be easier to just let the scan complete and the do another scan at whatever setting you want.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • Transmitting video over internet

    Hi ,
    iam developing an video conferencing application.
    iam able to transmit video using RTP in the LAN but not in the internet.
    what should i do to transmit the video over internet?.which ipaddress i need to use?
    please help me.

    hay guys,
    the problem of video streaming through internet is solved.....
    can any one have idea about converting H.263 format back to jpeg
    thanks in advance
    krishna

Maybe you are looking for