Minimum size for an MIAW

Since when is there a minimum stage height for an MIAW?
I'm using Director MX and I have a movie that's 250 x 35 and
it always opens
to a height of 70. I set the height from 35 to 60 and it
opened at 70. I
set it at 72 and it opened at 72.
For now I've made the movie 70 pixels high and moved all
sprites down 35
then open it 35 pixels higher than where I normally would.
Since this MIAW
is at the top of my stage, the offstage 35 pixels don't
matter.
Craig Wollman
Lingo Specialist
Word of Mouth Productions
212-928-9581
www.wordofmouthpros.com

Zach1981 what version of Photoshop, Illustrator, and InDesign are you referring too?  You can find link to the system requirements for the Creative Cloud 2014 release version at System requirements | Creative Cloud.

Similar Messages

  • How to set minimum size for the 'location' box in toolbars?

    I reorganized my toolbars by merging the location and tabs bar. I have the location on the left hand side and the tabs *next* to it, like this:
    [ (<)(>) [LOCATION] /tab\/tab\/tab\ ]
    Unfortunately when the number of tabs increases, the location box becomes so small that I cannot even see the url of the site I'm in...
    Is there a way to force a minimum width for the location box? I couldn't find a setting in about:config for it (I imagine that this would be a browser.urlbar setting)

    You rock! The combination of fixed width tabs with the stylish Add-on, and the single line of script below just made my day!
    #main-window[sizemode="maximized"] #TabsToolbar, #TabsToolbar > #urlbar-container { min-width: 350px; }
    Many thanks!

  • Set minimum size for GridBagLayout

    Hi all,
    I have a dialog which using GridBagLayout. I spent quite a lot of time to test, but still got the following problems. Could anyone give me some solutions?
    1. How do I set the dialog to have a minimum size ?
    Since the dialog is sizeable, so I have to make this limitation to prevent the dialog being too small .
    I tried the following code:
            this.getContentPane().setMinimumSize(new Dimension(686,520));
            this.setMinimumSize(new Dimension(686,520));but it's still not work... , I can still resize it too small.. any other way ?
    2. How do I set its default size when dialog pop up?
    I don't know why the dialog always auto popup in maximum size.
    I have tried to use this.setSize(new Dimension(686, 536)); inside jbInit() function, but still not work...
    Please help ... Thanks a lot.

    Why dont you try this.setResizable(false);?
    Anyway I have given a sample program here using Gridbag layout and this dialog cannot be resized.
    import java.awt.BorderLayout;
    import java.awt.GridBagConstraints;
    import java.awt.GridBagLayout;
    import java.awt.Insets;
    import javax.swing.JButton;
    import javax.swing.JDialog;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    public class SunExample28 extends JDialog {
         public SunExample28() {
              setTitle("JDialog with Fixed size");
              JLabel nameLbl = new JLabel("Name:");
              JLabel ageLbl = new JLabel("Age:");
              JTextField nameFld = new JTextField(10);
              JTextField ageFld = new JTextField(10);
              GridBagConstraints gbc = new GridBagConstraints();
              Insets in = new Insets(5,5,5,5);
              JPanel compPanel = new JPanel(new GridBagLayout());
              gbc.gridx = 0;
              gbc.gridy = 0;
              compPanel.add(nameLbl,gbc);
              gbc.insets = in;
              gbc.gridx = 1;
              gbc.gridy = 0;
              compPanel.add(nameFld, gbc);
              gbc.insets = in;
              gbc.gridx = 0;
              gbc.gridy = 1;
              compPanel.add(ageLbl, gbc);
              gbc.insets = in;
              gbc.gridx = 1;
              gbc.gridy = 1;
              compPanel.add(ageFld, gbc);
              JButton okBtn = new JButton("OK");
              JButton cancelBtn = new JButton("Cancel");
              JPanel btnPanel = new JPanel();
              btnPanel.add(okBtn);
              btnPanel.add(cancelBtn);
              getContentPane().add(compPanel, BorderLayout.CENTER);
              getContentPane().add(btnPanel, BorderLayout.PAGE_END);
              setDefaultCloseOperation(DISPOSE_ON_CLOSE);
              setSize(500,300);
              setResizable(false);
          * @param args
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              new SunExample28().setVisible(true);
    }

  • How to set minimum size for PieChart wedge?

    The following chart has one wedge that is very thin. I know it is because the data value for that wedge is very small (262) compared to the other wedge data values, but I'd like to be able to set a minimum wedge size.
    Any ideas?
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
      <mx:Script><![CDATA[
         import mx.collections.ArrayCollection;
         [Bindable]
         public var expenses:ArrayCollection = new ArrayCollection([
            {Expense:"Jan", Amount:2200000},
            {Expense:"Feb", Amount:4700000},
            {Expense:"Mar", Amount:2300000},
            {Expense:"Jul", Amount:262}
      ]]></mx:Script>
      <mx:Panel title="Pie Chart">
         <mx:PieChart id="myChart"
            dataProvider="{expenses}"
            showDataTips="true"
         >
            <mx:series>
               <mx:PieSeries
                    field="Amount"
                    nameField="Expense"
                    labelPosition="callout"
               />
            </mx:series>
         </mx:PieChart>
      </mx:Panel>
    </mx:Application>

    This might be close enough to what you're looking for:
    The FB 4 code is shown below:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:mx="library://ns.adobe.com/flex/mx"
        minWidth="955" minHeight="600">
        <fx:Script>
         <![CDATA[
            import mx.charts.HitData;
            import mx.collections.ArrayCollection;
            import mx.controls.Alert;
            import mx.utils.ObjectUtil;
            [Bindable] private var Amount:String = "";
            [Bindable] private var minAmount:String = "";
            [Bindable]
            public var expenses:ArrayCollection = new ArrayCollection([
            {Expense:"Jan", Amount:2200000, minAmount:2200000},
            {Expense:"Feb", Amount:4700000, minAmount:4700000},
            {Expense:"Mar", Amount:2300000, minAmount:2300000},
            {Expense:"Jul", Amount:262, minAmount:50000}
            private function getDataTips(hitData:HitData):String {
                // add percent when the user gets the DataTip
                var percentValue:Number = (hitData.item.Amount / 9200262) * 100;
                var f:int = 3;
                if (percentValue > 1) {
                    f = 1;
                return hitData.item.Expense + ": " + percentValue.toFixed(f) + " % (" + hitData.item.Amount + ")";
            private function getData(series:PieSeries, item:Object, fieldName:String):Object {
                if (item.minAmount != 50000) {
                    return item.Amount;
                    psExpenses.setStyle("labelPosition", "callout");
                } else {
                    return item.minAmount
                    psExpenses.setStyle("labelPosition", "none");
         ]]>
        </fx:Script>
        <mx:Panel title="Pie Chart">
         <mx:PieChart id="myChart"
                 dataProvider="{expenses}" dataTipFunction="getDataTips"
                 showDataTips="true">
            <mx:series>
                <mx:PieSeries id="psExpenses" nameField="Expense" dataFunction="getData"/>
            </mx:series>
         </mx:PieChart>
        </mx:Panel>
    </s:Application>

  • How to set minimum height size for an empty XML Form iview

    Hi,
    I'm trying to configure the minimum height size of an XML Form iview without sucess. Even when there is no content to show, iview height size is around 80 pixels. When there is content the automatic configuration works fine and the iview is resized properly.
    The iview has automatic size and the minimum size for automatic is with 5 pixels...
    Any ideas?
    Thanks,
    Marcelo

    Hi,
    I'm trying to configure the minimum height size of an XML Form iview without sucess. Even when there is no content to show, iview height size is around 80 pixels. When there is content the automatic configuration works fine and the iview is resized properly.
    The iview has automatic size and the minimum size for automatic is with 5 pixels...
    Any ideas?
    Thanks,
    Marcelo

  • How to set a minimum size of a JFrame

    hi freinds,
    i have written a swing application which starts like this ,
    public class workerclass extends JFrame implements ActionListener {
    blah blah blah ..
    now can you please tell me how to set a minimum size for this application once it starts so that user cant minimize it more than that minimum size.....
    when i tried
    setDefaultLookAndFeelDecorated(true);
    it did my job by setting it to a particular size which wasnt minimizable, but this default look and feel looked ugly.
    so i used system look and feel
    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    but with this how do i set the minimum size..
    please do help
    and one thing more , like
    in my main Method when i say
    new workerclass().setSize(500,500); or say(100,100) or say(300,300)
    new workerclass().setVisible(true);
    the size (***,***) , doesnt reflect when my application starts, it always starts with some damn fixed size , what can be the issue .
    waiting.........
    Thanks

    how do i set my Jrame to a minimum size so that
    minimizing beyond that can be restrictedThis is what the code is all about
    don't know your code but ..
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    public class workerclass extends JFrame implements
    ActionListener,ComponentListener {
    public void initcomponenet()
    setJMenuBar();
    pack();
    addComponentListener(this);
    public static void main(String args[]) {
    java.awt.EventQueue.invokeLater(new Runnable() {
    public void run() {
    new myclass.setSize(500,500);
    new myclass().setVisible(true);
    public void componentShown(ComponentEvent e)
         public void componentResized(ComponentEvent e)
              if(getWidth()<200)//restrict width to minimum 200
                   setSize(200,getHeight());
    if(getHeight()<100)//restrict Height to minimum
    um 100
                   setSize(getWidth(),100);
         public void componentMoved(ComponentEvent e)
         public void componentHidden(ComponentEvent e)
    Thanks kanad , your code is working ... you desere lot more than a duke dollar but for now i can only give that :-( , please accept it :-)

  • Min size for max-beans-in-cache / stateful EJB

    Hello,
    Weblogic (7 and 8) seems to have a minimum size for this setting.
    This minimum seems to be around 8 instances because when we set it to 3 for
    instance, the cache size reported by the admin console is 8 (with 8 active
    clients) and no ejb has been passivated.
    Is there an explanation for this behaviour ?
    Laurent

    I would also like to know the answer to this one.
    Can the default be changed via the administration console or config.xml? If so, where?

  • Minimum filesize for uploaded file?

    One of the people in our department who is helping with course/content creation has brought up an interesting problem:
    For various reasons, up until now we have fed various pieces of video to our campus via a QT streaming server. Usually, we will embed a very small reference movie (usually around 4k) on a web page or in Blackboard. The reference movie will then kickstart the video stream. We have done this via podcasting in iTunes as well with success. When my colleague tried uploading one of the reference files into iTunesU, it acts as if it uploads, but will respond with a message stating : "0.00 of 0.00MB transferred" and the file never appears on the track list as it should. Other, larger files are uploading fine.
    So, my question is this:
    Is there some some sort of minimum size for an uploaded file? Is 4KB too small?
    and
    as a follow-up, will our stategy of using reference movies work within iTunesU? We know that the end-users will not be able to download the full video files.
    Thanks all
    Eric
    Dual 2GHz G5   Mac OS X (10.4.6)  

    One alternative you might consider is using a link on
    the iTunes U page. You could link to a page with the
    stream or to the stream itself with an http url.
    Links allow you to access any related content via a
    web browser.
    That is an option, but the idea here is to encourage the use of iTunes U to faculty and students as a media portal, and to encourage the use of iTunes in general. So basically, what I'm trying to accomplish is to argue why this needs to be a feature, instead of disabling it.
    I'll gladly argue the point with anyone that wants to take the side of the iTunes application NOT being a media player. I love Apple products, and I cringe at the notion of forcing our users to use Real to access academic streaming content from our Quicktime Streaming Server.
    It just doesn't make sense to force them to get some media files one way (using the "Get Song" button), and some (also Quicktime files) using a different metaphor. In fact, it goes against the metaphor of the entire iTunes Music Store interface of simply clicking the "Get" button to acquire the content.
    If the service only goes half way, there is little point in creating links on the iTunes U page linking back to a page referencing the streaming media. We (IT services on our campus) want to encourage the use of iTunes U, but why should we have users go to iTunes U to download the content when we could just post the links and content we would otherwise post within iTunes U within Blackboard, or as a podcast.
    Last fall we hosted a live event that we made accessible via our Quicktime Streaming server. I embedded a reference .mov file into one of our podcast feeds in iTunes (not iTunes U) so users could watch the even live within iTunes. Streaming... So it can be done. But iTunes U specifically prevents this format of a Quicktime .mov file from being uploaded.
    It would make my job much easier to advocate the use of iTunes as our campus media portal.
    Mark Leaman
    New Media Consultant
    Bowdoin College
    Brunswick, Maine
    207-725-3512
    17" iMac G5   Mac OS X (10.4.7)  

  • Minimum size of SGA for the recovery catalog db ?

    I've created a recovery catalog database and by default the total size of the SGA is 180MB. Problem is, there isnt' much memory on development server to run the target and recovery catalog database (catdb).
    Would it be possible to startup catdb with an SGA of size 10 MB or so? What's the minimum size? I figured since catdb is only used as for the recovery catalog and would rarely be access or changed, it doesn't need to use that much memory.
    Thanks in advance

    Hi David,
    In 10g, the minimal shared_pool_size is 120M, otherwise you will get
    ORA-00371: not enough shared pool memory, should be atleast 123232153 bytes
    You can set java_pool_size to 0, which is NOT the default.
    You could also set the large_pool_size to 0, but I am not sure this is recommended.
    In 8.0 shared_pool_size could be as low as 300K. Read your Reference manual for the values specifics to your version
    HTH
    Laurent Schneider
    OCM DBA

  • Minimum block size for DMA transfers

    Can't find Application Note 011, "DMA Fundamental on Various PC Platforms" on the NI website.
    Can someone please send me the link?
    What I'm trying to figure out is what is the packet size (chunk size) for DMA transfers on NI M series boards?
    i.e. how many samples are collected into the boards FIFO buffer before
    DMA transfer takes place.  (How many samples (or bytes) are
    transferred at a time.
    Is this packet size (chunk size) configurable?  If so , what is minimum value that it can take on?
    Thanks,
    Maurice

    See post at http://forums.ni.com/ni/board/message?board.id=170&message.id=162527.

  • How do you specify a minimum font size for incoming mail?

    Is there a way to specify a minimum font size for incoming mail messages? Mail I get from others is almost unreadable and I always have to manually (apple +) increase the size.
    As a test, a friend on a PC (most mail I get comes from Windows) kept increasing the size he sent me, but when I received it there was no change in size on my end.
    I can't find anything in Mail's menus and preferences to change this behavior.
    Mail 2.07; OS 10.4.6.
    Thanks,
    Cathy

    if i had the problem then i'd make a backup copy of
    my ~/library/preferences/com.appple.mail.plist file,
    open the original in property list editor, look for
    any likely elements that have small or negative font
    sizes and set them to, say, 12, save the changes and
    see if that helped
    Found the file; couldn't open it (tried Text Edit?) to make any changes.
    You can use the following trick to force Mail to
    always use a larger minimum font size on received
    messages - some HTML messages might not look exactly
    as intended but at least you can now read them:
    1. Quit Mail
    2. Open the Terminal
    (/Applications/Utilities/Terminal) and type in the
    following:
    defaults write com.apple.mail
    MinimumHTMLFontSize 13
    3. Restart Mail.app and your HTML messages are
    readable.
    Of course you can set the point size to whatever you
    like.
    Found file; was not comfortable inputing text as this simple task did not behave properly.
    PC friend said other Mac user reported this same anomally with receiving small text from him. I have over a dozen different PC users that I correspond with where I have this problem. It seems to be on the Mac end.
    -Cathy

  • Minimum computer speed and size for Logic

    Am thinking of gettting Logic Pro with my comparatively small G4- Am I looking for trouble or should I go for express until I can get a bigger box- what would you recommend as your minimum requirements for speed hard drive etc? Thanks !
    Dual 800 MHzPower Mac G4   Mac OS X (10.4.8)   1.25GB SDRAM

    You should be able to play back many audio files -
    and freeze files ( since they are audio files ). But
    if you want to use bigger, modern plugs you'll need a
    node or PCI solution. With your present config, you
    should have little problem playing back as many audio
    files as you need - you'll just spend a lot of time
    waiting for freeze files to render. Many 3rd party
    AUs will be out of reach - as well as stuff like
    sculpture but if you are patient and resourceful, it
    should be OK to get you by for many productions. I
    have a Dual G4 ( 1.25 ) and can do a lot with it and
    Logic. Mostly, this answer depends on what plugins
    you use and if they are realtime. I can't say Express
    will really reduce the load - just restrict you from
    attempting to while making you work slower as far as
    editing. Personally, I wouldn't bother with LE. If
    you like LP's plugs you can get a node machine or buy
    a new machine in a few months...
    J
    justin - thanks for your reply- pardon my ignorance on this, but what is a freeze file and what is a node machine?
    Thanks

  • Minimum size pictures for book

    what is the minimum size of the pictures if you want to show/print it full page in a medium book?
    I know of course it depends of how large you want to show the picture, but let's say that you want to be able to play a bit with the size of the picture. Is 350KB enough?
    thank you so much!

    Don't mess with or question the Old Toad:
    Click to view full size
    I ran a test with a series of photos, 8.5 x 11 inches in size at several dpis, 105, 110, 111, 115. The 110 and 105 files gave the low resolution warning on a full page layout. The others didn't. This was after I rechecked the iPhoto preference file and found this:
    defaults:
    <key>BookWarningImageDPI</key>
    <real>110</real>

  • How can I select the minimum size of Elements 10? It won't install due to lack of disk space on C:

    I have just purchased and downloaded Elements 10. Can't install it due to insufficient disk space on my C drive. I have enough space on my D drive, but it will not install there, probably because my sustem files are on C drive. The Install wisard does not provide for a selection of the size of Elements 10. Is there a way to select the minimum size? If so, how can I do this?

    There is not an option to customize the installation.  The system requirements for Photoshop Elements 10 request that you at least have 4 gigabytes free, plus more for installation, how much free space do you have on your C drive?

  • How to change font size for tracks in Songs view, iTunes 11?

    I'm wondering which field in TextStyles.plist for the new iTunes 11 (I've gotten rid of Helvetica for Lucida Grande thanks to another forum on here!) - controls the font size for track title, time, artist, album, etc. as seen here - I would like to have it smaller, and have been playing around on several forums and not found the magical field to get that exact thing smaller. Many thanks in advance.

    You're going to love me forever:
    <key>9002</key>
    <dict>
    <key>- loc hint -</key>
    <string>List Contents (Small)</string>
    <key>font</key>
    <string>HelveticaNeue</string>
    <key>size</key>
    <integer>12</integer>
    </dict>
    It's that interger "12" that's determines the size. Adjust it until you're happy—provided that it's an interger.
    I actually go with "HelveticaNeue" with a size of 11. I like to see lots of tabular information at once, horizontally, without changing my resolution… within reason, e.g. Fiona Apple album titles still have ellipses.
    An unfortunate aspect to this is that the row height isn't altered unless the font size specified is greater than 12—the font takes the row height along for the ride when it's bigger, but the row doesn't come along for the ride when the font gets smaller. It's likely you could change the minimum row height to be lower, in some other plist—search for something like "list contents (small)" or "list (small)" or whatever—but I don't know where that would be found, or if it could be found at all.
    Nonetheless, this should address your query.

Maybe you are looking for

  • I can't uninstall, repair or install itunes?????

    I get an error: Error with install file at C:\Windows\Installer\itunes.msi. The file is none existent. I can't get past this when I try installing, uninstalling or repairing. What do I do? Thanks in advance!

  • Export in MP3 to SD card

    My car has two slots for SD cards with music. The cards must be formatted in FAT32 with songs in MP3 format. If I create a Playlist with auto tunes, how would I export this in MP3? I figure I can get them on an SD using some sort of reader. I've gone

  • Scatch on macbook white. HOw to get rid?

    My macbook gets scatched very easily. A week,and it got like 15 scatch marks, its easy to see it when you are next to light. So is there any way to get rid of it?

  • Trying to find action class that acts behind the search button in a jsp

    Hi all, I am trying to change the Search Functionality of Standard B2B Web Shop. In B2B Web shop , if we click on Products tab on left hand side, we get a search box and if we search for a product, in standard system the search will return duplicates

  • Billing in the intercompany (Urgent!!!)

    Dear SAPpers, In the intercompany Billing i hve to raise a individual Billing document. But the point is like the system says i am not able to do that and for this reason i have to go to Log(Protocol). In the Log i got the error message as the saes O