Got any creative suggestions for my map designs?

I'm designing a strategy game and I'm using adobe photoshop to make the maps. I'm not to bad at it, but my only problem is that I'm not very goot at making mountains. Got any suggestions on how to make a canvas look bumpy looking?

AngishKhan wrote:
I do have those tabs so I guess I have this extension you're talking about.
FYI, it's not an extension.
Photoshop comes in two versions:
Photoshop Standard (no 3D) and Photoshop Extended (with 3D features).

Similar Messages

  • TS4268 I have done everything on this page to activate my iMessage! I somehow lost it when I upgraded to the iOS 6 version. Does anyone have any creative suggestions??

    I have done everything on this page to activate my iMessage! I somehow lost it when I upgraded to the iOS 6 version.
    Does anyone have any creative suggestions??

    themaluna wrote:
    I have Mac OS X 10.7.5 and GarageBand 6.0.5
    My iPad has iOS 7 as well.
    the latest version of GB for iOS requires the latest version of GB for the Mac which is version 10 (which is free, but also requires OS X 10.9 [though that is also free])

  • Suggestions for good presentation design?

    I am currently using the default font size for title and subtext that comes with the dark blue gradient template.
    1.) Are there any general guideline for good presentation design with regards to having titles take two lines of text?
    2.) Are there any general guidelines for what the title font size should be? I am wondering if I should make the title font size smaller to fit more characters.
    Thanks!!!

    I have been an prenter/instructor for many years, and +*Presentation Zen*+ by Garr Reynolds is absolutely the best reference on this topic.
    Beware of using too much text on your slides. Less is, most certainly, more when it comes to engaging your audience and keeping their attention. Be liberal with the use of large graphics and keep it fun for everyone involved.

  • Any creative ideas for handling call priorities?

    Hi
    I am looking for creative ideas to help out my customer.  They are using UCCE 8.5.3 with CVP.  They have 3 priority levels: gold (1), silver (3) and bronze (5).  All three levels are handled by the same skill group.  There are times when they have an influx of gold calls which go ahead of silver and bronze in the queue - and therefore bronze keep getting pushed back in the queue.  How can then ensure that bronze calls get serviced within a reasonable time period while still maintaining their prioirties?
    Appreciate any creative ideas.
    W                  

    A colleague of mine just went through this same exact scenario. This is what we ended up doing… If a low priority call sat for more than 2 minutes it got moved to a higher priority. I know it’s not perfect and it doesn’t “fix” the problem but merely puts a band-aid on it in most cases until you get a large number of calls with a particular priority calling in.
    You are stuck my friend. There is nothing you can do programming wise to get around it. You need more agents when it comes to situations like this. Personally I think priority is stupid especially when you have one group of agents handling all the queues or priorities. If you use priority your incoming call pool becomes dynamic so your agent pool should become dynamic as well but managers “your customer” don’t realize this or can’t afford more agents but they still insist priority is a great idea.
    That’s my two cents anyway.
    Good Luck! You can’t please them all.

  • Any layout suggestions for this?

    How can I place a JCheckBox and JButton components on the area beside the TabbedPane tabs (Top right corner position)?
    Final design should be like this image
    http://www.rejimani.com/backup/tabbed.jpg
    Any suggestions?
    Reji Mani

    * Test_AbsoluteLayout.java
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Test_AbsoluteLayout extends JFrame {
        public Test_AbsoluteLayout() {
            initComponents();
        private void initComponents() {
            checkbox = new JCheckBox();
            button = new JButton();
            tabbedpane = new JTabbedPane();
            panel1 = new JPanel();
            panel2 = new JPanel();
            getContentPane().setLayout(new AbsoluteLayout());
            setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
            checkbox.setPreferredSize(new Dimension(83, 21));
            checkbox.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent evt) {
                    checkboxActionPerformed(evt);
            getContentPane().add(checkbox, new AbsoluteConstraints(350, 0, 20, -1));
            button.setText("OK");
            button.setMargin(new Insets(0, 0, 0, 0));
            button.setPreferredSize(new Dimension(71, 21));
            button.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent evt) {
                    buttonActionPerformed(evt);
            getContentPane().add(button, new AbsoluteConstraints(370, 0, 30, -1));
            tabbedpane.setPreferredSize(new Dimension(400, 300));
            tabbedpane.addTab("tab1", panel1);
            tabbedpane.addTab("tab2", panel2);
            getContentPane().add(tabbedpane, new AbsoluteConstraints(0, 0, -1, -1));
            pack();
        private void checkboxActionPerformed(ActionEvent evt) {
            System.out.println("check");
        private void buttonActionPerformed(ActionEvent evt) {
            System.out.println("ok");
        public static void main(String args[]) {
            new Test_AbsoluteLayout().setVisible(true);
        private JButton button;
        private JCheckBox checkbox;
        private JPanel panel1;
        private JPanel panel2;
        private JTabbedPane tabbedpane;
    class AbsoluteConstraints implements java.io.Serializable {
        static final long serialVersionUID = 5261460716622152494L;
        public int x;
        public int y;
        public int width = -1;
        public int height = -1;
        public AbsoluteConstraints(Point pos) {
            this(pos.x, pos.y);
        public AbsoluteConstraints(int x, int y) {
            this.x = x;
            this.y = y;
        public AbsoluteConstraints(Point pos, Dimension size) {
            this.x = pos.x;
            this.y = pos.y;
            if (size != null) {
                this.width = size.width;
                this.height = size.height;
        public AbsoluteConstraints(int x, int y, int width, int height) {
            this.x = x;
            this.y = y;
            this.width = width;
            this.height = height;
        public int getX() {
            return x;
        public int getY() {
            return y;
        public int getWidth() {
            return width;
        public int getHeight() {
            return height;
        public String toString() {
            return super.toString() +" [x="+x+", y="+y+", width="+width+", height="+height+"]";
    class AbsoluteLayout implements LayoutManager2, java.io.Serializable {
        static final long serialVersionUID = -1919857869177070440L;
        public void addLayoutComponent(String name, Component comp) {
            throw new IllegalArgumentException();
        public void removeLayoutComponent(Component comp) {
            constraints.remove(comp);
        public Dimension preferredLayoutSize(Container parent) {
            int maxWidth = 0;
            int maxHeight = 0;
            for (java.util.Enumeration e = constraints.keys(); e.hasMoreElements();) {
                Component comp = (Component)e.nextElement();
                AbsoluteConstraints ac = (AbsoluteConstraints)constraints.get(comp);
                Dimension size = comp.getPreferredSize();
                int width = ac.getWidth();
                if (width == -1) width = size.width;
                int height = ac.getHeight();
                if (height == -1) height = size.height;
                if (ac.x + width > maxWidth)
                    maxWidth = ac.x + width;
                if (ac.y + height > maxHeight)
                    maxHeight = ac.y + height;
            return new Dimension(maxWidth, maxHeight);
        public Dimension minimumLayoutSize(Container parent) {
            int maxWidth = 0;
            int maxHeight = 0;
            for (java.util.Enumeration e = constraints.keys(); e.hasMoreElements();) {
                Component comp = (Component)e.nextElement();
                AbsoluteConstraints ac = (AbsoluteConstraints)constraints.get(comp);
                Dimension size = comp.getMinimumSize();
                int width = ac.getWidth();
                if (width == -1) width = size.width;
                int height = ac.getHeight();
                if (height == -1) height = size.height;
                if (ac.x + width > maxWidth)
                    maxWidth = ac.x + width;
                if (ac.y + height > maxHeight)
                    maxHeight = ac.y + height;
            return new Dimension(maxWidth, maxHeight);
        public void layoutContainer(Container parent) {
            for (java.util.Enumeration e = constraints.keys(); e.hasMoreElements();) {
                Component comp = (Component)e.nextElement();
                AbsoluteConstraints ac = (AbsoluteConstraints)constraints.get(comp);
                Dimension size = comp.getPreferredSize();
                int width = ac.getWidth();
                if (width == -1) width = size.width;
                int height = ac.getHeight();
                if (height == -1) height = size.height;
                comp.setBounds(ac.x, ac.y, width, height);
        public void addLayoutComponent(Component comp, Object constr) {
            if (!(constr instanceof AbsoluteConstraints))
                throw new IllegalArgumentException();
            constraints.put(comp, constr);
        public Dimension maximumLayoutSize(Container target) {
            return new Dimension(Integer.MAX_VALUE, Integer.MAX_VALUE);
        public float getLayoutAlignmentX(Container target) {
            return 0;
        public float getLayoutAlignmentY(Container target) {
            return 0;
        public void invalidateLayout(Container target) {
        protected java.util.Hashtable constraints = new java.util.Hashtable();
    }

  • HT3275 Any other suggestions for the message the backup volume is read only

    I keep getting the message Time machine is unable to complete the backup because it appears the backup volume is read only.  I've tried the suggested repairs from apple for this but keep getting the same problem.  Any suggestions?

    The Master of the Time Machine, Pondini has extensive documentation and he mentions your particular problem in the following link.
    http://pondini.org/TM/C6.html

  • Any printer suggestions for the ibook g4

    I am completely overwhelmed and in need of some suggestion of the most compatable printer for the ibook g4. Mine is a 2004 model

    Hi Hotrodgirlly,
    Welcome to Apple Discussions
    What are you going to use the computer for and what features do you want(example: mostly printing documents, normal amount of pictures, professional photography, as well as all-in-one, scanner, fax, fast printing, portability, quality of print outs, etc)? Price range?
    You may want to look at the following threads...
    http://discussions.apple.com/thread.jspa?messageID=1718307
    http://discussions.apple.com/thread.jspa?messageID=1198652
    http://discussions.apple.com/thread.jspa?messageID=1858479
    http://discussions.apple.com/thread.jspa?messageID=594421
    There are a ton of posts in Apple Discussions alone that can help you make a decision or narrow down your options. I suggest searching AD, Google, and any other search engine on the internet. Consumer Reports probably has a review section on new printers, but you can either buy it in the store or buy an online subscription (I believe).
    Jon
    Macbook 2.0 White (100Gb HD 2Gb RAM) Mac Mini 1.42Ghz, iPod (All), Airport (Graphite & Express), G4 1.33Ghz iBook, G4 iMac 1Ghz, G3 500Mhz, iBook iMac 233Mhz, eMate, Power Mac 5400 LC, PowerBook 540c, Macintosh 128K, Apple //e, Apple //, and some more...  Mac OS X (10.4.5) Moto Razr, iLife '06, SmartDisk 160Gb, Apple BT Mouse, Sight..

  • Is there any sap module for power plant design

    Hi All,
    This is not the question to put in sdn.
    Actually i completed my M.Tech(Instrumentation & Control), right i am working as a power plant designer in Instrumentation Control.  I want to know which Module of SAP will suite for my career. I am working for power plant and oil and gas company.
    Regards,
    R.K

    Dear R,K,
    SAP have a industrial specific module as IS-Oil and Gas.
    You can visit
    http://help.sap.com/saphelp_oil472/helpdata/en/67/bfa73ad9ccf101e10000000a11402f/frameset.htm
    Also you can look for PM and PP module in SAP.
    Regards,
    Vishal

  • Hey every one ... Does any one suggest for me a good browser for my tablet

    Hi
    I would like to have a better browser... Every browser i had tried is not good like if i wanna to upload a file i have to choose only from the gallery and nothing on the settings can change it.. I have tried dolphin browser, boat .. Etc almlst all of them but still and the built in browser every time i try to upload something it shut down by itself 
    Thanks for reading 

    I FIXED IT!
    FYI for the rest of you that might be having the same problem. DON'T USE A BELKIN ROUTER WITH AOL ON A MBP!!!!! It ***** wirelessly. or even hard connected, it won't connect. I went to best buy today, and got a refund on the belkin. I then went to J&R and got a D-Link router. And now it works perfect. I can now chat on AOL yet again, and I tried all the other web browsers I have and messengers, and warcraft 3 online via battlenet. And it works great. I want to give you guys a special thanks for taking time out to answer back to my post. FYI! Belkin wireless G routers do not connect you to AOL wirelessly on MBP's. No matter how much you mess around on them. I highly recommend a D-Link Router. They are easy to set up as long as you READ ( AND I MEAN IT!!!) read the instructions before you set anything up on it. Use the CD that it comes with, and you'll be good to go. Set it up and it works great Almost no dead zones in the house, and now I can use the MBP with all it's cababilities. Thanks people. I really appreciate it.
    P.S. I called belkin last night when i decided to get a refund on my router for today and when i talked to the tech, after puersuading him to tell me the truth. And stop BS'ing me, he broke down and admited that AOL does not work wirelessly on MBP's. So to make a long story short this time, There you go. And one last note, I'm very happy now with my d-link router. I honestly thought it would suck. Not being a brand name router or anything. But amazingly, it works like a brand name item! Again, many thanks all.
    Bruce

  • Any good suggestions for Flash?

    After my Flash stopped working thanks to the recent upgrade, I decided to get rid of all the 32-bit libraries and the nspluginwrapper packages only to find that it was solved here on the forums...
    However, now that I don't have any Flash at all, is it better to go through the process with nspluginwrapper again or should I go for gnash? I noticed that it updated recently and it might have improved..

    though gnash has much more active developers i still prefer the results of swfdec-mozilla. i think it's the better solution for firefox. it has also better support for control buttons and even plays youtube fullscreen. swfdec never autoplays any banner or video. that prevents your browser crashing due to broken action scripts or huge memory leaks.
    but gnash is improving fast. it has also a konqueror plugin and a streaming server. new packages are in testing. see the announcement thread.
    both solutions are not yet perfect but for me good enough to live without any lib32 stuff.

  • Need suggestion for the following Design

    Hi All,
    I have the following requirement to be implemented.
    | |
    | < Start Day << Start Week ---- End Week >> End Day > |
    |____________________________________________________________________|
    The above has to be on top of a table.... (i.e a table action region)
    Table action allows us to have either "rowLayout" or "flowLayout" to begin with...
    The "Start Day", "Start Week" and so on are actions...
    Pls suggest me how to align " End Week >> | End Day > " to right (end of the table)....
    PS... I am unable to plot the image properly... the " ---- " in between is just spaces.
    Putting it simple, In a table action I want a button on the left most and right most corner...
    Regards,
    Santhosh.
    Edited by: Santy on Jan 21, 2011 4:09 AM

    Hi All,
    I have the following requirement to be implemented.
    | |
    | < Start Day << Start Week ---- End Week >> End Day > |
    |____________________________________________________________________|
    The above has to be on top of a table.... (i.e a table action region)
    Table action allows us to have either "rowLayout" or "flowLayout" to begin with...
    The "Start Day", "Start Week" and so on are actions...
    Pls suggest me how to align " End Week >> | End Day > " to right (end of the table)....
    PS... I am unable to plot the image properly... the " ---- " in between is just spaces.
    Putting it simple, In a table action I want a button on the left most and right most corner...
    Regards,
    Santhosh.
    Edited by: Santy on Jan 21, 2011 4:09 AM

  • Anyone got any good AVCHD FOR DVD Presets they can share for AME CC Latest Version when exporting from Premiere Pro CC Latest Version?

    Just wondering if anyone has for download or can share some templates or settings that I can use to create a One Stop Encode that will suit both AVCHD HD DVD Disc and be good as a Computer MP4 File for PC and Android Mobile Playback and maybe even good enough for Full Bluray Mastering.
    Currently I am using mostly HDV 50i Material with a bit of 1080 30p and Mobile phone type MP4 files thrown in.
    I typically Encode to for DVD SD and HD BD. However I would like to be able to take advantage of putting some of the short HD Video to AVCHD DVD-R Discs.
    I understand that the maximum bit rate is gonna be 18mbs? for AVCHD on DVD but am unsure what Profile settings I need to be compliant and as I say if create a good one MP4 that will be good for all formats
    whether it be AVCHD DVD, Blu-ray Disc and good for YouTube uploading with possibility of compatibility with some of the Android Mobile Phones and Tablets.
    Thanks in Advance
    Phil

    shooternz wrote:
    Here is the solution:  Slow down. Give your project some love. Smell the roses.
    Agreed about the roses but alas my next project always calls. Actually, I think what happens is I give each project SO much love that when it comes to exporting, I've run out of time.
    shooternz wrote:
    Then it would not be a default...it would be an option and you already have that option.
    Semantics aside, I would love to be able to have it at least default to whatever option was last chosen. Or, perhaps I shouldn't use the word default again...I'd love it to simply remember my preferred setting. That's all.

  • Any more suggestions for spotty Flash in Firefox?

    Have tried all the combinations, but there are some videos that are black screen and will not load, while others are fine. It is frustrating, to say the least. Is there anything new on the front besides updating or downgrading the various programs, such as Flash and RealPlayer? Using Firefox 16.02 and Windows 7, 64 bit.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Did you already tries these as a test?
    *disable protected mode in Flash 11.3 and later
    *disable hardware acceleration in the Flash plugin
    *http://kb.mozillazine.org/Flash#Troubleshooting

  • Is there any transaction code for Report Designer,Query Designer and WAD

    HI Gurus,
    please tell me s there any transaction code for
    1 Report Designer
    2 Query Designer
    3 WAD
    Thanks in advance
    Prashant

    Hi Prashant,
    We don't have any Transaction Codes for these.
    Since these are installed along with the SAPLOGON BI components, it cannot be called using a standard transaction.
    You have to use only .
    Goto Start -> Programs -> Business Explorer -> Web Application Designer/Report Designer/Query Designer.
    Hope it helps.
    Reward with points if helpful.
    Regards
    Hemant Khemani
    Edited by: Hemant Khemani on May 16, 2008 5:39 PM

  • Seeburger BIC Mapping Designer Documentation

    Hi Seeburger users out there,
    Would you have any documentation on the BIC Mapping Designer?
    Rgds,
    Yves

    Hi,
    The thread gives details of where you can find them
    Document Seeburger Business Integration Converter Mapping Designer
    Regards
    Vijaya

Maybe you are looking for

  • Problem with serial number and downloading

    I bought a Mac Book Air (10.9.5) and I tried to install an Adobe Photoshop Elements 8 . I already bought it and I used it with may iMac (2008).  When I enter the serial number  written on the box I can no longer go on . Any solution to solve the prob

  • "Open-Box" MacBook. iMovie and iPhoto $14.99 each. Don't want to pay.

    So I just bought my MacBook and it was discounted as an "Open Box" which meant that someone had bought the computer and shortly (less than a week) decided that they did not want it. So because the person would have begun setting up the computer and u

  • Planning functions IRR, NPV in BI + SEM 6.0

    Hi everybody!, I'm looking for the older financial functions like IRR, NPV calculations. Somebody told me that they are not longuer in BI unless you install SEM 6.0. We've just install it this morning but the functions doesn't appear when I try to cr

  • How do I keep a previously list item colored?

    When I visited a web site that had a list of items to select, the selected item was colored. That prevented me from duplicating previous selections. I have lost this feature. How do I get it back? Thanks Frank G C FF 3.6.13 Win Vista Ultimate SP2

  • How do I upgrade from Lightroom 1 to 4 or 5?

    I have registered my Lightroom 1, but it doesn't show as being registered in Creative Cloud. When I go to add the serial number, it says it's already registered and I can't add it. It's not syncing, even though my email addresses are the same. I figu