I want no zoom on my .swf

Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default I want no zoom on my .swf

    Hi there,

    When you rigth click on flash movies with you're mouse, you get options like- zoom in, zoom out, 100%, show all....... ect. ect.

    What do you do to make a movie without those options???


    ReidarAxl webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Zoom and Pan
      I'm looking for a behaviour that will allow a user to zoom in and out on an image and pan it by dragging the mouse in any direction. Is there...
    2. Can not zoom in
      The previous versions of Flash Player allow web customer to Zoom In or Zoom Out. However, it seems that when people installed Flash 8 player, they...
    3. Zoom Bug?
      InDesign CS 3.01, August patch, Windows 2000 Years ago I adopted the habit of zooming with Ctrl-Spacebar and the mouse to select the area. This...
    4. zoom!
      hey, does anyone know how the zoom effect on this site was done in flash? it's really great, you can zoom in and zoom out to your liking. any tips or...
    5. Zoom in or out
      How do we do this with director mx (Please see attachment)? http://webforums.macromedia.com/attachments/bounce.zip
  3. #2

    Default Re: I want no zoom on my .swf

    "ReidarAxl" [email]webforumsuser@macromedia.com[/email] wrote:
    > Hi there,
    >
    > When you rigth click on flash movies with you're mouse, you get options like- zoom in, zoom out, 100%, show all....... ect. ect.
    >
    > What do you do to make a movie without those options???
    Stage.showMnu = false;

    --
    MOLOKO
    ------------------------------------------------
    ::remove _underwear_ to reply::
    'God saves but Buddha makes incremental backups'
    ------------------------------------------------
    GCM/CS/IT/MC d-- S++:- a- C++ U--- P+ L++ !E W+++$ N++ O? K+ w+++$ !O M+
    VMS? PS+++ PE- Y PGP+ t+ 5-- X-- R* tv++ b++++ DI++++ D+ G e h-- r+ y++
    see [url]www.geekcode.com[/url] to translate the above!
    MOLOKO Guest

  4. #3

    Default Re:I want no zoom on my .swf

    add following actionscript in the 1st frame:

    fscommand("showmenu",false)

    if you want to colse the rightclick-menu completely, you should use Macromedia Director.


    MarxEinstein webforumsuser@macromedia.com Guest

  5. #4

    Default Re:I want no zoom on my .swf

    In the publish setting u u must select the html export option. U must deselect the Display Menu checkbox. If the option is not selected the menu will not appear on rightclick. This is a parameter in the html.

    Hope that can help u


    Nixy webforumsuser@macromedia.com Guest

  6. #5

    Default Re: I want no zoom on my .swf

    If you are using HTML generated by Flash when you publish, uncheck the box
    that says DISPLAY MENU under publish setting for HTML (FlashMX). If you are
    not using Flashes HTML and need to modify existing HTML, then find the
    <PARAM> tags in the HTML document and ad this:

    <PARAM NAME=menu VALUE=false>

    With this, the user will not have any zoom options.

    Regards,
    --Vern


    _posted.by\(Vern\); Guest

  7. #6

    Default Re: I want no zoom on my .swf

    ok... but where in dreamweaver is this PARAM? And what do I do when I've found it?


    ReidarAxl webforumsuser@macromedia.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139