Flash and the ActiveX of IE 7

Hi,
I'm developing a webpage with Dreamweaver and Flash for the
menu and other animation, but every time I visit or test the page a
message appear "To help protect your security, Internet Explorer
has restricted this webpage from running scripts or ActiveX
controls that could access your computer. Click here for
options..."
I'm really worry when I have to publish the page, that the
visitor will not trust the page. Could anybody help me please???
Thanks a lot!

Hmmm, I think I might have solved this after a bit of messing around.
What I have done is to make a copy of the audio book files into a new folder, then delete the originals from the Itunes library. Next import the folder with the files back into Itunes, hey presto they show up in the Audiobook section, then when I copied them to my Ipod, Itunes also sees them in the audiobook secion.
Would be nice though if I didn't have to do all that messing around.

Similar Messages

  • Hi, I just got my Iphone 5s when I open my camera when my phone is lock te icons of the flash and the reversing camera is there, but when I try to open my camera from the apps camera the icons of the flash, the reversing camera is not there anymore?

    Hi, I just got my Iphone 5s when I open my camera when my phone is lock te icons of the flash and the reversing camera is there, but when I try to open my camera from the apps camera the icons of the flash, the reversing camera is not there anymore?

    Have you tried restarting or resetting your iPhone?
    Restart: Press On/Off button until the Slide to Power Off slider appears, select Slide to Power Off and, after the iPhone shuts down, then press the On/Off button until the Apple logo appears.
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10 seconds).

  • My BB won't turn on the red light flashes and the key's light up

    Hi
    I have read all posts relating to my problem, but one thing my BB won't do is resgister on my computer.  The phone will not turn on, has the red light flashing and the keys light up, but the screen will not come on.  I have tried taking the battery out, charging it all night, all the recommended/ideas from this sight, but no joy.  I have only had this phone since July last year.  I haven't been able to try updating phone etc as it won't register on my or my husbands computer please help
    Louise

    Hi,
    The way you presented it made me think it had just happened.
    So you have had the phone since July has it ever worked?
    Most likely you are missing some or all of your device OS and you'll need to reload the device.
    Because the phone can't generate enough signal you will have to "force detect it". I've attached the link below. If you want to proceed I'll need what version of Device OS and what version of desktop manager software.
    Thanks,
    Bifocals
    KB10144 How to force the detection of the BlackBerry smartphone using Application Loader
    KB03295 How to verify which version of BlackBerry smartphone software is installed on the computer using BlackBerry Desktop Software
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • The charger is showing green but the laptop will not turn on. The stand-by light is flashing and the laptop is making a bleeping sound. Any suggestions?

    the charger is showing green but the laptop will not turn on. The stand-by light is flashing and the laptop is making a bleeping sound. Any suggestions?

    Could be bad ram or logic board. Take it to an Apple store or AASP.

  • I recently upgraded to lion ,my screen keeps flashing and the dock flickers on and off

    I recently upgraded to lion on my mac book pro but the dock appears and disappears (flashes) and the screen flashes also.  It occurs most when I have Game Manager on the screen although I don't subscribe to it.  I have a game called Cradle of Rome but I have to click the game manager icon to bring it up. That creates another problem - the game keeps freezing up.

    Launch the Messages app from your Applications folder.
    Then click and hold the Messages app icon in the Dock then click Options > Keep in Dock

  • HT201412 ok i did the new update and now my phone wont even start up! the apple logo comes up then the screen will flash and the phone will shut off. any ideas?

    as listed in the title, my phone just flashes on me no start up just flashes from the apple logo to shutting off and back and forth i did the update this afternoon (9-26-2012) and it still wont start up!!!

    Something in your backup may be corrupt. Try wiping it and setting it up as a new device, then sync your apps, data and media back to it from iTunes. DO NOT resotre from your backup. If the problem is contained in the backup, it will bring it right back again if you restore.

  • Flash and the HTML anchor

    I have a link on a page that takes you to a particular spot
    on another page-in other words the link is anchored. It takes you
    to a section of the page that has a flash movie. Simple enough.
    However, this flash movie has a preloader in it and whenever
    I click the link the preloader won't work properly, if at all. I
    was assuming it was my actionscript or how I created the movie but
    I've tested this thing inside out and had no problems until I
    uploaded it.
    Then I noticed something: since the link is anchored I
    decided to navigate to the page without the anchor (i.e. take off
    the #anchor section of the web address) and wouldn't you know it,
    the preloader works like a charm.
    The questions are this: how could a simple anchored page
    affect a swf? Is it possible that the anchor is forcing the page to
    skip some of the flash embedding code when parsing? Has anyone even
    heard of this and if so, have you heard of any solutions?
    If you'd like to view what I'm babbling about:
    *page in question
    here
    *to test the page both ways remember to clear your cache
    after the first view
    Please note this issue is not dealing with creating anchors
    within Flash using the "Flash with named anchor" feature when
    publishing it in HTML. The anchor is completly seperate from the
    movie.
    Any help or insight to this problem would be appreciated!

    Still no luck finding any information on this topic.
    Please let me know if you know of this and how to resolve
    such a glitch.
    Thanks

  • Passing variables from php to flash and the opposite

    Hi guys, im trying weeks now to solve this problem but nothing yet
    If someone could just tell me how to pass variables from flash to php and the opposite i would be thankful!!! Please help!

    I have recently had to learn this, so this may not be the best way but it worked for me
    I suggest looking at the code below stripping out everything you don't need (e.g. the databse stuff) and just get a simple string going back and forward
    have a go and post any problems here and I'll try and help
    in flash i have
    private function getBalanceAndXP():void
              var request:URLRequest = new URLRequest("utils.php");
              request.method = URLRequestMethod.POST;
              var variables:URLVariables = new URLVariables();
              variables.func = "getBalance";
              variables.fbid = userID;
              request.data = variables;
              var loader:URLLoader = new URLLoader();
              loader.dataFormat = URLLoaderDataFormat.VARIABLES;
              loader.addEventListener(Event.COMPLETE, onBalanceComplete);
              loader.load(request);
    private function onBalanceComplete(e:Event):void
              var loader:URLLoader = e.target as URLLoader;
              loader.removeEventListener(Event.COMPLETE, onBalanceComplete);
              var variables:URLVariables = new URLVariables(loader.data);
              _balance = parseInt(variables.balance); // class variable
              _experience = parseInt(variables.experience); // class variable
    public function setBalanceAndXP(balance:int, experience:int):void
                _balance = balance;
              _experience = experience;
              var request:URLRequest = new URLRequest("utils.php");
              request.method = URLRequestMethod.POST;
              var variables:URLVariables = new URLVariables();
              variables.func = "setBalance";
              variables.fbid = userID;
              variables.balance = _balance;
              variables.experience = _experience;
              request.data = variables;
              var loader:URLLoader = new URLLoader();
              loader.dataFormat = URLLoaderDataFormat.VARIABLES;
              loader.load(request);
    and then I have my php file
    <?php
    $func = $_POST["func"];
    $fbid = $_POST["fbid"];
    $balance = $_POST["balance"];
    $experience = $_POST["experience"];
    $numVariables = 0;
    $link = mysql_connect("localhost","username","password");
    mysql_select_db("databaseName");
    if ($func == "getBalance")
              getBalance($fbid);
    else if ($func == "setBalance")
              setBalance($fbid, $balance, $experience);
    mysql_close($link);
    function getBalance($fbid)
              $query = "SELECT balance, experience FROM tableName WHERE fbid = '".$fbid."'";
              $result = mysql_query($query);
              $row = mysql_fetch_row($result);
              writeVariable("balance", $row[0]);
              writeVariable("experience", $row[1]);
    function setBalance($fbid, $balance, $experience)
              $query = "UPDATE tableName SET balance = ".$balance.", experience = ".$experience." WHERE fbid ='".$fbid."'";
              mysql_query($query);
    function writeVariable( $name, $value )
              global $numVariables;
              if ( $numVariables > 0 )
                        echo "&";
              echo $name . "=" . urlencode($value);
              $numVariables++;
    ?>

  • When i unlock my ipod touch 4th generation and i click on an applicatio to play a game it flashes and the screnn reappears as it was and doesn't connect. any suggestions that would help solve my problem?

    when i unlock my ipod touch and touch on an application my sxreen will flash and reappear with the same screen without connectioning me to the application that i had clicked on. does anyone have any suggestions to resolve this problem?

    Did you try a hard reset or restarting the unit?
    Basic troubleshooting steps  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101
     In Memory of Steve Jobs 

  • I'm trying to download flash and the Adobe website says my anti-virus must allow software downloads.  How do I allow this?

    I'm unable to re-download flash.  I've disabled firewall and allowed apps to be downloaded from anywhere with no results.  Any help is appreciated. Thanks. 

    This is the URL copied from the "install now" link that should be loading on your browser, but isn't:
    http://get.adobe.com/flashplayer/download/?installer=Flash_Player_11_for_Mac_OS_ X_10.6_-_10.9&os=OSX&browser_type=KHTML&browser_dist=Safari
    Warning: Clicking the above will initiate the download immediately.
    I took the liberty of omitting the "optional offer" junk from the URL, which was appended to the above link. FYI that was the following
    &d=Adobe_Photoshop_Lightroom_for_Macintosh&dualoffer=false
    Here is the button containing the complete URL: Install now
    The page may not be completely loading for you because it is stalling on the Adobe Lightshop advertisement or something else. It can probably be fixed by clearing the Safari cache.

  • Flash and the Web

    Hi ... I'm hoping someone can assist me. I am in the preliminary stages of choosing a program for creating animation and video for the Web, specifically for Mobile Devices and Desktops. I understand Flash Player will no longer be developed for mobile devices. My questions are as follows:
    Can I create an animation in Adobe Flash Pro, export the animation as a .MOV or .AVI and be able to upload the animation to the web so it is playable on mobile devices and desktops ?
    What program would you recommend I learn in order to create animation and videos for Mobile Devices and Desktops, taking into consideration HTML 5 ?
    I know the basics of HTML 4 and CSS but for the last 10 years I've been working as a Network professional. I'm pretty new to Flash. I am using Flash Professional CS 5.5 and I did the following steps to create an AVI file to test my theory: 
    Opened Flash Pro CS 5.5.
    Selected "Animation" from "Create from Template".
    Selected "Animated Mask Motion Tween" from the templates.
    I played the animation.
    I then selected File \ Export \ Export Movie.
    From the "Save as type" I selected "Windows AVI".
    I clicked Save.
    I then played the AVI file and it played successfully and showed the animation.
    I'm assuming I could convert the file for mobile viewing and could use the AVI for desktop viewing ? Or can .AVI's and .MOV's be played on Mobile devices ?  I would appreciate any recommendations.
    Thanks for the help !
    Jason

    http://www.ask.com/answers/102698381/i-want-to-install-flash-player-for-my-ipad
    Cannot personally endorse any of the solutions there, but you're welcome to try.

  • When opening an email in Hotmail, the ads keep flashing and the page updating, making it impossible to scroll down to see the rest of the email, any solution?

    In addition, the page tab flashes between "Hotmail - email address" and "Connecting". There was no change after adding the Adblock addon, Hotmail is safe in the NoScript addon.

    Sounds like this Bug. <br />
    https://bugzilla.mozilla.org/show_bug.cgi?id=627729 <br />
    ''(Please don't comment in that Bug report unless you can provide a patch to fix the problem.)''

  • Apple TV won't load up. the light flashes and the logo appears on the TV then it just goes off and starts again. I've tried restoring via USB on 5 different computers and I keep getting error message 9? Can anyone please help?

    I have a black Apple TV that has recently stopped working. It loads the Apple Logo on screen then goes off and starts again. It's as if it is stuck in a loop. I've tried a re-boot and this has failed. I have tried a restore using a USB cable on 5 different computers, including a Mac Book Pro and it downloads the update file but when it tries to restore I get the error code 9 showing on screen. I just can't get it to do anything.
    Can anyone please help?

    Thanks for that information!
    I'm sure I will be calling AppleCare, but the problem is, they charge for the phone calls don't they? Because I don't have money to be spending to be on the phone with a support service.
    In other things, it seemed like the only time my MacBook was working was when I had Snow Leopard without the 10.6.8 update download that was supposed to be done to prepare for OS X Lion.
    When I look at the information of my HD it says that I have 10.6.8 but that was the install that it claimed to have failed and caused me to restart resulting in all of the repeated problems.
    Also, because my computer is currently down, and I've lost all files how would that effect the use of my iPhone? Because if it doesn't get fixed by the time OS 5 is released, how would I be able to upgrade?!

  • My screen is flashing and the phone wont work

    at first there was just vertical colored stipes, we were able to force the phone to turn off and  now the screen just strobes

    Sounds like a hardware problem.
    If no change after a reset and/or after restoring with iTunes as a new iPhone or not from the backup, the iPhone has a hardware problem.

  • Get iPad and can't download adobe flash and the web site said I cant

    Please help

    http://www.ask.com/answers/102698381/i-want-to-install-flash-player-for-my-ipad
    Cannot personally endorse any of the solutions there, but you're welcome to try.

Maybe you are looking for