My Fullbrowser Portefolio Website work in SWF but not work in HTML

Hi people
First of all I am not very good in English language.
I created my portfolio website in flash as3, with javascript (SWFAddress and SWFObject), with contact form with PHP, and XML Gallery.
When uploading all the files into the correct folders for the server, the first times I view the site in browser it works correctly, the browser reads the HTML without any problems.
However I tested it on firefox, safari, ie, google chrome, and it just did not work in google chrome, so I tried to solve the problem, beginning to see where the error was in the HTML file.
I copied the original file, because that original file I knew it was working properly in other browsers, and started to make changes. I managed to get google chrome to open the HTML correctly but then did not work in firefox and safari.
So I decided to eliminate this html file and continue with the original file. I'll test again and something happen! The file browser can't read XML, everything else works correctly, alltransitions are correct, the animations are correct.
I try with the SWF and it opens the XML Gallery, I try with the HTML and it does not open.
I don't know what to do, can you guys help me?
Thanks!

If the swf file is in a different folder than the html file, then it is might be a problem with targeting the XML file in the swf.  When you place an swf file in an html page, anything that swf tries to load has to be targeted as if the swf file is in the same folder as the html.  It does not have to live in that same folder, but it has to act as if it does.

Similar Messages

  • Microhpone work in swf but not projector(exe)

    I have an actionscript use to record voice from microphone, it work fine in swf but if i publish it as projector (exe) it won't work anymore, even the "adobe flash player setting asking for camera and microphone access" box din't appear.
    Below is my actionscript, is it because of the classes i use or projector(exe) won't support microphone.
    Help! Thanks in advance.
    import flash.media.Microphone;
    import flash.events.MouseEvent;
    import flash.events.Event;
    import flash.events.SampleDataEvent;
    import flash.media.Sound;
    import flash.media.SoundChannel;
    import flash.utils.ByteArray;
    var _mic:Microphone;
    var _sndBytes:ByteArray;
    var _snd:Sound = new Sound();
    var _channel:SoundChannel = new SoundChannel();
    _mic=Microphone.getMicrophone();
    _mic.rate=44;
    _mic.setSilenceLevel(5);
    _mic.gain=70;
    _mic.setUseEchoSuppression(true);
    mc_recorder.btn_startrecord.addEventListener(MouseEvent.CLICK,startRecording);
    mc_recorder.btn_stoprecord.addEventListener(MouseEvent.CLICK,stopRecording);
    mc_recorder.mc_equalizer.addEventListener(Event.ENTER_FRAME,updateEqualizer);
    function startRecording(evt:Event):void {
        _sndBytes = new ByteArray();
        if (! _mic.hasEventListener(SampleDataEvent.SAMPLE_DATA)) {
            _mic.addEventListener(SampleDataEvent.SAMPLE_DATA, getMicData, false, 0, true);
    function getMicData(evt:SampleDataEvent):void {
        _sndBytes.writeBytes(evt.data);
    function stopRecording(evt:Event):void {
        _mic.removeEventListener(SampleDataEvent.SAMPLE_DATA, getMicData);
    function updateEqualizer(evt:Event) {
        mc_recorder.mc_equalizer.gotoAndStop(_mic.activityLevel);

    Check you publishing settings and parameters.

  • Flash hyperLinks work in Swf but not HTML

    I have Flash CS3 and created the movie. When I preview the
    movie in Flash all the links work fine and launch the relevant
    webpage that I am linking to. However when I preview the movie in
    HTML some of the links don't work, the mouse pointer changes as if
    the link is there but clicking does not launch the web page.
    I have checked that the javascript file is in the publish
    directory and can't figure what is missing.
    Any suggestions appreciated

    Wizardfromoz wrote:
    > I have Flash CS3 and created the movie. When I preview
    the movie in Flash all
    > the links work fine and launch the relevant webpage that
    I am linking to.
    > However when I preview the movie in HTML some of the
    links don't work, the
    > mouse pointer changes as if the link is there but
    clicking does not launch the
    > web page.
    > I have checked that the javascript file is in the
    publish directory and can't
    > figure what is missing.
    > Any suggestions appreciated
    Did you test it online?
    For security reason and due to not so recent changes in
    browser and player,
    some things do not work locally, only on line in real time.
    Best Regards
    Urami
    "Never play Leap-Frog with a Unicorn."
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • I was using webrtc connection for a video connect. Firefox works in Mac but not work in windows

    I was using our company API tokbox SDK to do the servers test between two machines. I blocked one machine ipfw to test the server connection. However, our server connection works well when we are using two mac firefox browser, but not succeed when we were using one windows and one mac machine.

    Oh, I replied in your second question here: https://support.mozilla.org/questions/1001511

  • Css work in window but not work in mac os on browser safari

    css not work properly on safari of mac os but work  safari on
    window

    Check Safari / Preferences - Extensions. Turn that off if you have any installed, quit then relaunch Safari.

  • RFC working in foreground but not working thru webdynpro abap

    Dear all,
    I am passing certain parameters to an RFC it works thru foreground but when I pass the same parameters at the click of a submit button the RFC doesn't work. although the RFC importing parameters are getting passed successfully.
    Can anyone tell me the reason for this kind of behaviour or what needs to be done to make it work more specifically?
    Thanks and regards,
    Sonal

    I am not sure about the exact reason behind your problem, but you can try following things. I hope it will help.
    1) Set break point after RFC call, and try following things:
         i) Check if correct parameters are passed to the RFC i.e. parameters you are passing in test mode, same are also passed
            while running in WDA application
         ii) Compare the return parameters of RFC in test mode and WDA after setting break point if any
    2) use 'COMMIT WORK' after RFC call
    Regards,
    Saket.

  • Js working with FF but not working with IE

    Dear All,
    I have created a text field P5_NO1 and in the
    Post Element Text
    <span style="color:#0000ff;font: normal 1.2em "Lucida Sans Unicode",sans- serif;font-size:12px;"> <select id="unit" onchange="TankUnit();" >
    <option> -S-</option>
    <option> ml</option>
    <option> kg </option>
    </select> Units
    </span>
    the js TankUnit() works fine in FF not in IE
    I have an sample in apex.oracle.com
    http://apex.oracle.com/pls/otn/f?p=4000:4150:4089089633206316::NO:::
    can anyone help me to solve the problem?
    bye
    Srikavi

    Hi Peter and John,
    FF is so... tolerant to accept the value of the option as the same as it is displayed in the select list.
    where IE is so... prudence, that we have to explictly tell it
    ie Post Element Text in IE should be like this
    <select id="unit" onchange="TankUnit();" >
    <option> -S-</option>
    <option value="ml"> ml</option>
    <option value="kg"> kg </option>
    </select> Units
    bye
    Srikavi

  • Export to .SWF but not work on Android

    Hi Experts,
    I create a XCelsius Dashboard. I already export it to .swf (flash). When I run it in my notebook (swf player/internet explorer), the flash dashboard work. I export it to PowerPoint, it's work. But when I oppened in my mobile - Samsung Android Galaxy Tab (already installed latest flash player 10.3) does't work.
    I've try another Xcelsius dashboard flash from internet (there are many sample of Xcelsius flash). When I run it in my Samsung Tab, it's work.
    Can anyone help we, why it happen ? Or there are steps/activity while we export the dashboard to flash (.swf) ? Any idea ?
    Thx in advance,
    Tri W

    Hi,
        One possible explaination is the different version of Flash used between your machine and on the tablet.
        Try upgrading to 10.3 on your machine and see if that works. Then export to Tablet again for another test.
        As stated in the Xcelsius Support Platform, it only states
    Supported Flash Players
     Adobe Flash Player 9.0.151.0 and above (32-bit only)
       Question is, I don't think the "above" include version 10.x. You may want to do the test to validate.
    Ken

  • Multi-Slide Synchronized Video Working in SWF - but not HTML5

    We have a module that has 8 slides that contain Multi-Slide Synchronized Videos, each of which are contained on 1 slide (as seen in the screen shot.)
    When we publish the project, the swf version works fine. However, the first html5 video shows up, then none of the others do.
    We first tried inserting the video as an "Event Video" but when we tried that, in html5 there were no controllers at all for the in-slide video. This breaks our spec because the client needs cross browser and mobile device combatability.
    Any clues as to why the video isn't even appearing after the first slide in html5?

    No controllers showing here either. Controllers show and work in preview mode, but when publishing to Html5 then playing on Ipad, video in slide plays once, but now controls visible...can't pause. stop or rewind...
    Dave

  • Load xml works on designer but not works in adobe acrobat

    Hi
    I have load a xml file on the file -> properties of the form.
    When I preview the pdf all works ok, but when I have saved the document and I have opened the pdf file with adobe acrobat. Then data hasn't loaded.
    Somebody know what happen?
    Thanks
    Ruben

    Unfortunately, Adobe no longer supports Acrobat 7.  Not only that, but I don't believe it was ever supported in a Citrix environment. 
    You will need to upgrade to at least Acrobat 8 for general support (and official Citrix compatibility).

  • Personal hotspot working via BlueTooth but NOT working via wi-fi

    Hi,
    Would appreciate some help with this! Using an iPhone 4, just upgraded to iOS 4.3, and trying to get personal hotspot working.
    Basically, see subject ^ .. I can't get it working. Devices (I've tried iMac, iPad) can see the wireless network created by the iPhone, begins to connect (and appearing connected, from the iPhone) but isn't actually online. Though, I was able to pair my computer and phone and create a network connection via personal hotspot that way. But I want to use wifi, and let others use it...
    I'm on Bell Mobility in Canada. Any help greatly appreciated!
    Chris

    Hi lofive,
    Welcome to Apple Support Communities.
    It sounds like you’re running into an issue with devices not being able to connect to a Personal Hotspot created by your iPhone. Try the suggestions in the article linked below, it provides a lot of great troubleshooting tips that will resolve most issues like the one you’ve described.
    iOS: Troubleshooting Personal Hotspot
    I hope this helps.
    -Jason

  • Case Working in "TOAD" but not Working in "WHERE" clause

    Hi Friends,
    When I am using case in the where clause of SQL query in Oracle Reports 3.0.5, than it is giving me "Error - Rep - 0946 Unable to Parse Query"
    But when I am running the same query in TOAD it is working fine.
    select *from inv_stores, inv_product, inv_location
    where  (inv_stores.location_code in ('12', '13', '16', '17', '18') and
                inv_stores.location_code = inv_location.location_code and
                inv_stores.department_code = inv_product.department_code and
                inv_stores.product_code = inv_product.product_code and
                nvl(delete_flag, 'N') <> 'Y' and
                inv_product.department_code = '11' and
                       (((CASE WHEN nvl(inv_product.sale_price3jd,0) = 0 THEN 0  ELSE (nvl(inv_product.sale_price3jd,0) - nvl(inv_product.cost_pricejd,0)) /
                       nvl(inv_product.sale_price3jd,0) END) *  100 ) <= 100))
    order by inv_product.department_code, inv_product.product_codePlease Help me.......
    Thanks in Advance

    Hello,
    When you create a SQL query in Reports, Reports will parse the SQL query in order to create the "data model".
    Reports 3.0.5 is quite old, so, you can use only the SQL "supported" by the RSF included in Reports 3.0.5.
    When you use TOAD , the sql query is not parsed by TOAD but by the DB just like with sqlplus or SQL Developer.
    Regards

  • Isync for RAZR worked on powerbook, but not working on new MacBook Pro

    Hello --
    I've been syncing my RAZR for the past year using my G4 Powerbook - no problems. I've just bought a MacBook Pro, and am trying to get the RAZR to sync to it. I was able to set up the bluetooth connection no problem, but iSync doesn't seem to see the phone - it doesn't find it when I scan to add a device. Thoughts/advice?
    Thanks!

    I have a similar situation. My RAZR pairs and works with my G4 Dual, but when I pair it with my 15" Powerbook, there are no isync services ....
    I haven't found a solution yet.
    PB 15" 1.67   Mac OS X (10.4.7)  

  • AMF work in Localhost, but not work in Remote server

    I am using zend's amf to connect the flex with backend.
    I have this service-config:
    <?xml version="1.0" encoding="UTF-8"?>
    <services-config>
        <services>
            <service id="zend-service"
                class="flex.messaging.services.RemotingService"
                messageTypes="flex.messaging.messages.RemotingMessage">
                <destination id="zend">
                    <channels>
                        <channel ref="zend-endpoint"/>
                    </channels>
                    <properties>
                        <source>*</source>
                    </properties>
                </destination>
            </service>
        </services>
        <channels>
        <channel-definition id="zend-endpoint" class="mx.messaging.channels.AMFChannel">
            <endpoint uri="http://www.domain.com.br/flex" class="flex.messaging.endpoints.AMFEndpoint"/>
        </channel-definition>
        </channels>
    </services-config>
    When I run my app in localweb this work nice, but when I upload my app to the host, this erro show:
    [RPC Fault faultString="Send failed" faultCode="Client.Error.MessageSend" faultDetail="Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Failed: url: 'http://www.domain.com.br/flex'"]
        at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::faultHandler()[C:\autobuild\3.x\frameworks\pro jects\rpc\src\mx\rpc\AbstractInvoker.as:290]
        at mx.rpc::Responder/fault()[C:\autobuild\3.x\frameworks\projects\rpc\src\mx\rpc\Responder.a s:58]
        at mx.rpc::AsyncRequest/fault()[C:\autobuild\3.x\frameworks\projects\rpc\src\mx\rpc\AsyncReq uest.as:103]
        at mx.messaging::ChannelSet/faultPendingSends()[C:\autobuild\3.x\frameworks\projects\rpc\src \mx\messaging\ChannelSet.as:1446]
        at mx.messaging::ChannelSet/channelFaultHandler()[C:\autobuild\3.x\frameworks\projects\rpc\s rc\mx\messaging\ChannelSet.as:1056]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at mx.messaging::Channel/connectFailed()[C:\autobuild\3.x\frameworks\projects\rpc\src\mx\mes saging\Channel.as:1069]
        at mx.messaging.channels::PollingChannel/connectFailed()[C:\autobuild\3.x\frameworks\project s\rpc\src\mx\messaging\channels\PollingChannel.as:388]
        at mx.messaging.channels::AMFChannel/statusHandler()[C:\autobuild\3.x\frameworks\projects\rp c\src\mx\messaging\channels\AMFChannel.as:411]
    Please, somebody can help-me, please?

    RESOLVED!
    The problem was on the server: http resquest return 301... I turn off the "mod_security" on the server and all works perfect now!

  • DragAcceptFiles Working in 9926 But Not Working In 10049 and 10061

    My company has a software product that accepts dragged items.  In all versions of Windows from XP through Windows 10 build 9926 that functionality has worked fine.  However, with build 10049 (possibly 10041 which I did not test thoroughly before
    going to 10049) and now 10061 that functionality stopped working.  The application calls DragAcceptFiles to enable drag drop messages.  In addition, either ChangeWindowMessageFilter is called on Vista or ChangeWindowMessageFilterEx is called on Windows
    7 and higher for the messages WM_DROPFILES, WM_COPYDATA, and WM_COPYGLOBALDATA.  This was working fine on Windows 10 build 9926.  Now when I attempt to drag an item to our software product, I get the "Don't" symbol (circle with line through
    it) and no WM_DROPFILES messages are received.  The application is unchanged with only an upgrade to the Windows 10 build performed.  As a sanity check, I created a brand new VM yesterday running build 9926 and the functionality worked fine.  I
    then upgraded to 10049 and it stopped working.  This morning I upgraded to 10061 and it is still broken.  Is there are new filter or restriction in place since build 9926 that would be stopping the traditional drag drop procedure from working? This
    is very frustrating because there is a dearth of information on Windows 10 API changes and since this appears to be some kind of recent change, I am out of ideas of where to look for answers.  I can duplicate this problem on the older platforms by simply
    calling DragAcceptFiles with the second parameter set to false.  In that case, on Windows 7 for example, I will get the "Don't" symbol.
    When drag drop is working fine, the WM_DROPFILES message is received and processed using DragQueryFile to get the number of files to be transferred and the names of those files.  That is then followed by DragFinish to complete the operation.

    Hi,
    Since this issue is related to the desktop application development, I recommend you post it in the following forum
    MSDN---Application compatibility for Windows Desktop Development
    https://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/home?category=windowsdesktopdev
    Regards
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Maybe you are looking for

  • Returning sql statement instead of values from database

    hi am reading value from database but my problem is am get sql statement values instead of values in database my code is java:337)

  • How to schedule a client import ?

    hi i'm wondering if  "client import" can be scheduled ? so far i can schedule for client deletion, client export ... but don't see the option to schedule client import. my activities as below a.) perform SCC8 at the source client to export the client

  • Need more information for ADT

    Hi Guys,             I need more information about ADT. I am new to ADT.So will u plz provide the docs related ADT?               Thanks in advance. Best Regards, Purna.

  • Some DSC developing relating questions

    Hi, I am new with DSC and have some questions relating to building the custom periodic I/O DSC server: 1. After building the custom VI and implementing it as an I/O DSC server, I found there are some mistakes inside the custom VI. I would like to mod

  • My ipod 30gb driver files is missing

    please help my ipod 30gb is missing driver files