Make a Very Simple Shape a Bit 3D and repeat it.

I have a full page web illustration for a background made up of this shape:
I want to make it a little more interesting than just flat and you can see my attempts based on web 2 shiny button tutorials.  But that's not what I want.  In fact, I think I just want like a Photoshop bevel.
Trouble is, that my illustration has about 60 of these shapes of about 7 different colors, different sizes and rotate.  I have been looking at using shapes but that still doesn't feel particularly intuitive to me yet.
Anyway to summarise, I have a large, flat, web image with lots of flat colored shapes that I want to make a bit more solid looking.  I could do with a few pointers.
Thanks
Martin

Perhaps you just want a 3 D effect with a bevel you can control the height of the extrude as well as the bevel.
You can turn them into symbols and use the symbol tools to color them scale and transform as well or graphic styles to applied to various shapes.
If you use a graphic style you have to color them after applying the styles as you would  with a symbol.

Similar Messages

  • How do I make a very simple network?

    I have my macbook connected to the internet wirelessly using the Time Capsule. I have also plugged in an emac into the time capsule using and ethernet cable.
    My understanding is that I should be able to have access to the emac from the macbook or visa versa. But how?
    Thanks
    Waddo

    Firstly you've got to turn on file sharing on the computers you'd like to access, to do this, open System Preferences, click Sharing, then click the box next to File Sharing. Now if you open the Finder on the other computer, you should hopefully see the computer listed in the sidebar. Click it and you'll see the public folder(s) of different users, but if you want to access everything that your user account on that computer can access, click Connect As... then enter the username and password for your account on that computer.
    That should hopefully be it, though you might find screen sharing handy too, it's turned on in pretty much the same way as file sharing and as the name would suggest, allows you to control a computer remotely.

  • How to create  a very simple dyamic tree with rich faces

    hi i have spent more than 5 days trying to make a very simple rich faces tree but with no result
    i want to make a very simple dyamic tree
    for example i have a button when i click it.i want to add two nodes in my tree("node 1" and "node 2")
    i have also failed in making even a static tree with richfaces i think that some thing is wrong with them i checked the live demo website
    http://livedemo.exadel.com/richfaces-demo/richfaces/tree.jsf?c=tree
    i have tried the source code but with no result :(
    thank you

    You can try something like this
    <rich:tree switchType="server" >
    <rich:treeNodesAdaptor nodes="#{CB.calendarioHandler.organizacion.departamentos}"
    var="departamento">
    <rich:treeNode>
    <h:outputText value="#{departamento.nombre}"/>
    </rich:treeNode>
    <rich:treeNodesAdaptor nodes="#{departamento.empleados}"
    var="empleado">
    <rich:treeNode>
    <h:outputText value="#{empleado.nombre}"/>
    </rich:treeNode>
    <rich:treeNodesAdaptor nodes="#{empleado.calendarios}"
    var="calendario">
    <rich:treeNode>
    <h:outputText value="#{calendario.nombre}"/>
    </rich:treeNode>
    </rich:treeNodesAdaptor>
    </rich:treeNodesAdaptor>
    </rich:treeNodesAdaptor>
    </rich:tree>
    where departamentos, empleados and calendarios are just simple pojos lists.
    I hope to help.
    Edited by: sfdgd on Apr 1, 2009 6:40 PM

  • How can I make a DVD with a VERY simple menu

    I want to create a DVD that autostarts with an opening menu containing a title, a picture and a play button - nothing else. The DVD will contain only one video (created in i-Movie). I want to press "Play" from the opening menu and the video will play. I don't seem to be able to create anything less than a 2-level menu.

    Hi
    From iMovie - do not use Share to iDVD - but - Share to Media Browser and as Large (not HD or other res. as result will lose quality)
    In iDVD - I select a very simple Menu - Old themes -> Brushed Metal
    Then in iDVD click on Media button and on Movie and here select Your Movie and drop it into iDVD Menu window.
    Now You get a Play movie title/button - If You also get Play Scenes - then select this title and erase it if You don't want it.
    Yours Bengt W

  • VERY simple guide to MDT

    I am looking for a very simple guide to getting an MDT server online that duplicates Ghost's capabilities. I don't need 1,531 pages of planning and scripting documentation.
    I want to:
    Boot WinPE on a PC.
    Push whatever is on that computer up to the server.
    Boot WinPE on new PC.
    Pull whatever is on the server down to the PC.
    No pushing of applications post-install. Just. Really. Basic.
    Until we got some new PCs that don't have WinPE 2 friendly NIC drivers, unattend files, sysprep and Ghost were just fine.

    I understand simple, but I'll 'warn' you upfront that choices made without thinking them through may have consequences later.
    In your case: install MDT, configure a share, look for an example what to do with your bootstrap.ini and customsettings.ini (there are many examples around, I have written some also)
    Then build your reference PC (since you mention PC, I wouldn't dare to advise you building it in a VM like it's supposed to be done) then create a sysprep and capture task sequence, capture the image.
    Create a deployment task sequence and push the image to targetted computers.
    To automate things even a little bit more, you may want to consider:
    WDS for PXE boot
    DFS for replication to branche offices
    And Ghost btw is so 2006. You almost make it sound like a punishment working with a great tool such as MDT!
    If this post is helpful please click "Mark for answer", thanks! Kind regards

  • I want to  download Mavericks on my iMac.  I presently have 10.6.8. Sadly I am a total klux when downloading and need very simple advice please.

    I want to upgrade from O S 10.6.8 but am a total klux when downloading.  Instructions have to be very simple.  Thanks a lot.

    Check to make sure your applications are compatible. PowerPC applications are no longer supported after 10.6.      
    Application Compatibility
    Applications Compatibility (2)

  • Creating a very simple XML-driven gallery

    Hi, I'm learning XML in AS3 and I am having real trouble finding a resource that can help me learn how to build a very simple XML-driven picture gallery.
    I am working in an FLA file with AS3, with a dynamic text field with the instance name "textfield". I also have a UILoader Component with the instance name "UILoaderComponent" and an XML file called "rootdir.xml".
    I have an XML file in the following format.
    <images>
         <imagenames>
              <name>image1</name>
              <name>image2</name>
              <name>image3</name>
              <name>image4</name>
              <name>image5</name>
         </imagenames>
         <imagepaths>
              <path>image1.jpg</path>
              <path>image2.jpg</path>
              <path>image3.jpg</path>
              <path>image4.jpg</path>
              <path>image5.jpg</path>
         </imagepaths>
    </images>
    I am using the following as my actionscript.
    var xmlLoader:URLLoader = new URLLoader();
    var xmlData:XML = new XML();
    xmlLoader.addEventListener(Event.COMPLETE, LoadXML);
    xmlLoader.load(new URLRequest("rootdir.xml"));
    function LoadXML(e:Event):void {
    xmlData = new XML(e.target.data);
    parseImg(xmlData);
    function parseImg(imgLoad:XML):void {
    var imgChild:XMLList = imgLoad.images.children();
    for each (var imgTrace:XML in imgChild) {
    trace(imgTrace);
    No matter which way I experiment, I always have poor results with my dynamic text, and every tutorial I've followed does not reproduce anything like the same returned data in "textfield" that it does with the trace command.
    My objective is: I simply want to build a menu inside a textbox called "textfield" that lists images1-5, and when clicked, calls upon the relevant image. For instance: I load the file "rootdir.xml" into the file "index.fla". I call a function to parse the XML into a dynamic text box called "textfield". When image 2 is clicked on the textbox "textfield", it would call upon a function that would load into the UIComponent Loader "image2.jpg".
    Are there any tutorials for this? I'm so confused as to why dynamic text operates so differently from the trace command. I'm not interested in doing a fancy menu bar with thumbnails, scrollbars and animations, I just want to learn the basics.

    I don't really see how you are getting a valid trace out of that code (I get nothing if I try it as is), but as far as the textfield goes, you haven't shown any attempt in your code that might help to point to why you cannot get the text into a textfield.  It might be a problem with how you are trying to write to the textfield and not how your are manipulating the data.
    While you could make use of a textfield for the menu, doing so is not straightforward, as you would need to implement htmlText with special coding in order to have the text clickable.  You might consider using a List component or ComboBox instead.
    What I always do when I am working with xml is to store the data into a data structure, usually an array conatining objects, and then make use of that structure rather than dippng into the xml data itself when I utilize the data.
    Another thing, which rquigley demonstrated, is that your xml will serve its purpose better if the data for each image is collected under the same node.  If you have separate sections for each piece of data like you have, when it comes to editing it will be more prone to error as you have to be sure you are editing the correct entry of each separate group.
    I too am no expert in the world of xml, but I have not yet worked with parameters inside the tags, so I would usually structure it as...
    <images>
       <image>
           <imgName>image 1</imgName>
           <imgPath>image1.jpg</imgPath>
       </image>
       <image>
           <imgName>image 2</imgName>
           <imgPath>image2.jpg</imgPath>
       </image>
    </images>
    Now, back to what you have...  let's say you have a textField named imgText that you want to list the image names in.  The following should work, though I do not go my usual route of storing the data into an object array first...
    function parseImg(imgLoad:XML):void {
       var imgNames:XMLList = imgLoad.imagenames.name;
       var imgPaths:XMLList = imgLoad.imagepaths.path;
       // show name
       for each (var nameTrace:XML in imgNames) {
          trace(nameTrace);
          imgText.appendText(nameTrace +"\n");
       // show path
       for each (var pathTrace:XML in imgPaths) {
          trace(pathTrace);
          imgText.appendText(pathTrace +"\n");
       // show name and path
       for(var i:uint=0; i<imgNames.length(); i++){
          trace(imgNames[i].text()+"  "+imgPaths[i].text());
          imgText.appendText(imgNames[i].text()+"  "+imgPaths[i].text() +"\n");

  • Need help with a very simple example.  Trying to reference a value

    Im very new to Sql Load and have created this very simple example of what I need to do.
    I just want to reference the ID column from one table to be inserted into another table as DEV_ID.
    Below are my: 1) Control File, 2) Datafile, 3) Table Description, 4) Table Description
    1) CONTROL FILE:
    LOAD DATA
    INFILE 'test.dat'
    APPEND
    INTO TABLE p_ports
    FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
    DEV_id REF(CONSTANT 'P_DEVICES',NAME),
    NAME FILLER ,
    PORT_NO
    2) DATAFILE:
    COMM881-0326ES09,6
    3) TABLE DESCRIPTION:
    SQL> describe p_ports
    Name Null? Type
    ID NOT NULL NUMBER(10)
    DEV_ID NOT NULL NUMBER(10)
    PORT_NO     NUMBER(3)

    hi,
    i managed to do this for my app. (think i referred to viewTransitions sample code and modified quite a bit)
    i can't remember this well cos i did this quite a while back, but i will try to help as much as possible
    1) from the appdelegate i initialize a root controller (view controller class)
    2) this root controller actually contains two other view controllers, let's call it viewAController and viewBController, for the screens which u are going to toggle in between. and there's also a function, let's call it toggleMenu, which will set the menus to and fro. i copied this whole chunk from the sample code. it actually defines the code on what to do, i.e. if current view is A switch to B and vice versa.
    3) inside the controller files, you need to implement the toggleMenu function too, which basically calls the rootController's toggleMenu
    4) we also need viewA and viewB files(view class)
    5) need to add the .xib files for the respective views and link them up to the controller class. i did not use the .xib files for ui layout though, because of my app's needs. however, it will not work properly without the .xib files.
    5) inside the view class of both views, i.e. viewA.m and viewB.m, you need to create a button, that will call the toggleMenu function inside the respective controller class.
    it will look something like this:
    [Button addTarget:ViewAController action:@selector(toggleMenu:) forControlEvents:UIControlEventTouchUpInside];
    so the flow is really button (in view)-> toggleMenu(viewController) -> toggleMenu(rootController)
    i'm sorry it sounds pretty hazy, i did this part weeks before and can't really remember. i hope it helps.

  • Web pages content looks very "simple" but looks normal with IE/GC?

    Computer is running Windows 7.. with the latest firefox version. Not sure what is causing this but when I log onto Facebook, banking sites, craigslist - everything looks very simple as if there is no page layout or graphics. Some pages look more simple than others but no website seems to load properly. I've checked that the page style option isn't checked on "No style" already.
    I tried to take a screen shot of what FB looks like when I log on.
    *http://i84.photobucket.com/albums/k40/naughtykobra/fbpage.jpg
    Seemed to notice the change after a Java update - so I did a system restore to before that update with no luck.
    Loaded the same websites on Google chrome and everything works fine!?

    Hi,
    You may also have to make sure that '''Allow pages to choose their own colors, instead of my selections above''' is selected in '''Tools''' ('''Alt''' + '''T''') > '''Options''' > '''Content''' > '''Colors'''. [https://support.mozilla.org/en-US/kb/Options%20window%20-%20Content%20panel Options > Content]
    [https://support.mozilla.org/en-US/kb/Options%20window Options]
    If the problem persists, please also try a [https://support.mozilla.org/en-US/kb/Managing-profiles new profile]. You can later [https://support.mozilla.org/en-US/kb/Recovering%20important%20data%20from%20an%20old%20profile?s=profile&r=1&e=sph&as=s copy the personal data] from the previous profile to this. Firefox stores the personal settings and data separate from its [http://kb.mozillazine.org/Installation_directory installation and files].
    [https://support.mozilla.org/en-US/kb/Profiles?s=profile&r=2&e=sph&as=s Profiles Howto]
    [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder & Files]

  • Very simple question from a beginner

    I am currently doing a little exercise, but I ran into a problem. I have written a class that supports operations on rational number. The fields are two long variables, one each that stores the numerator and denominator.
    I have made add, subtract, multiply, and divide methods...
    1. what I need help in is: beingh able to store the rational number in reduced for, with the denominator always positive
    2. constructing a toString method, equals method, and compareTo method.
    3. it also says "make sure the toString method correctly handles the case in which the denominator is zero by throwing an exception.
    I have been working on this for a long time now, an I am stuck at this point.
    I know this will be very simple for you guys and gals, but I am a beginner. Please offer some input, advice, and/or some code to help me get past this problem.
    Thanks so much,
    Jason

    ok, here is what I have so far
    public class Rational {
         public long num, den;
         public Rational(long n,long d) {
              this.num = n;
              this.den = d;
         public static void main(String args[]) {
              Rational r = new Rational(1,2);
              Rational s = new Rational(3,4);
              Rational rmuls = r.multiply(s);
              Rational rdivs = r.divide(s);
              Rational radds = r.add(s);
              Rational rsubs = r.subtract(s);
              r.print();
              s.print();
              rmuls.print();
              rdivs.print();
              radds.print();
              rsubs.print();
         public void print(){
              System.out.println(this.num+ "/" +this.den);
         public Rational multiply(Rational t){
              long n;
              long d;
              n = this.num*t.num;
              d = this.den*t.den;
              Rational answer = new Rational(n,d);
              return answer;
         public Rational divide(Rational t){
              long n;
              long d;
              n = this.num*t.den;
              d = this.den*t.num;
              Rational answer = new Rational(n,d);
              return answer;
         public Rational add(Rational t){
              long n;
              long d;
              n = (t.den*this.num)+(t.num*this.den);
              d = t.den*this.den;
              Rational answer = new Rational(n,d);
              return answer;
         public Rational subtract(Rational t){
              long n;
              long d;
              n = (t.den*this.num)-(t.num*this.den);
              d = t.den*this.den;          
              Rational answer = new Rational(n,d);
              return answer;
         //public int compareTo (Rational t)??????

  • Very simple checklist iPhone app?

    Can anyone please recommend a VERY SIMPLE checklist app?  It's for my 11 year old to keep up with his things.. needs to be very, very simple.  Ideally:
    Baseball
    Snowboard
    Bedtime
    So if Baseball:
    [   ] Glove
    [   ] Bat
    [   ] Cap
    [   ] Helmet
    [   ] Batting gloves
    [   ] Water bottle
    So he could check each one as he gets ready to leave for practice or a game.  And then when all are checked, it simply resets to all being unchecked for next time.
    I.e. I don't want one for every practice, I don't want any advanced capabilities that just muddy it up/make it more complicated.
    Thanks for any suggestions.

    Hi Scott, and welcome to the Dev Forum!
    There are two likely causes for what you're observing. Firstly, make sure the view controller object in IB has been set to the subclass you coded. Some of the Xcode templates (e.g. "View-Based Application"), have already done this for you, but if you added the view controller yourself, you need to set the class of the controller object manually, using the Identity Inspector.
    Once you're sure the controller class has been set correctly (for example, any IBOutlet or IBAction connectors should now be visible when the view controller is examined in the Connections Inspector), we need to consider the difference between iOS 3 and iOS 4.
    With iOS 3, your application will always terminate when the user taps the Home button. But this isn't the case for iOS 4. When Home is tapped on iOS 4, the default behavior is to either deactivate your app or continue to run it in the background. In either case your app is kept in memory so whenever its icon is tapped it will return to the active, foreground state. This means viewDidUnload won't be called when the app is removed from the foreground, and viewDidLoad won't be called when the app returns to the foreground.
    So if you're developing for iOS 4, you might only see viewDidLoad run when your app is cold started (e.g. the first session after the system has been restarted). Follow this link for more details: [Re: viewWillAppear not being called|http://discussions.apple.com/thread.jspa?messageID=12000507&#12000507].
    \- Ray

  • Very simple

    What is a very simple lingo script to make boundaries in a 3D
    game? JUST ONE ONE SCRIPT!!!!! IS THIS IMPOSSIBLE? I JUST WANT ONE
    SCRIPT!

    tr wrote:
    > You definitely have a problem with boundries.
    If you look at Totherescue's post in the 3D forum, he
    mentions that he's
    only 11. So, while his ' HELP..... CUZ I
    AM EXTREMELY MAD' message was not suitable, he can be
    forgiven as he's
    only a kid.
    But, Totherescue - if you're reading this - writing in upper
    case comes
    across as angry. And saying you're mad won't win over people
    to help you
    as you've seen by the responses here. If you're nice and
    polite, you'll
    get a friendly reply. Avoid bad language no matter how
    frustrated you
    feel by your problems with the software or what other people
    say. This
    won't achieve anything.
    All the best with your Director and 3D learning.
    regards
    Dean
    Director Lecturer / Consultant
    http://www.fbe.unsw.edu.au/learning/director
    http://www.multimediacreative.com.au

  • Premiere Pro SLOW and laggy (with very simple project!)

    Hi all,
    So, I'm literally cutting together an animatic of jpeg images.  And using very simple animation to animate them.
    My timeline essentially is jpeg images, music, sound effects, etc.  Using Macbook Pro Retina 13 Inch.  2013.
    I've gotten very laggy performance across the board.  And I can't even view jpegs with limited animation in real time.  Have to render everything.
    Attaching my system info below via screenshots.  When I tried exporting I sent it to encoder and took a screenshot of the CPU usage.
    At some point when I tried to render I would get errors (see attachments).
    Any idea what this is about?

    What size are your jpegs? Very large still images don't perform well in video applications. Try not to make them a lot bigger than the resolution of your timeline.
    Also, make sure they are RGB, not CMYK.
    If these things don't make sense to you, let us know and me or someone else will help you optimize your stills for video.

  • "Minus Front" a simple shape on top of a complex clipping mask

    I have a clipping path that is made up of:
    1. a complex assortment of vector shapes (a pattern) and
    2. a simple shape on top.
    My pattern appears to be inside the simple shape, because of the clipping mask.
    Now, I'd like to "punch-out" a shape in the middle of my clipping path, and have that punch-out be transparent. After creating my punch-out shape, I drag it to the same layer that has the clipping mask, select both (the clipping mask is below the punch-out shape), and slect "minus front" from the pathfinder window.
    It's not working.
    Any advice is much appreciated.

    bovine wrote:
    ... it's almost completly gone.
    It is hard to imagine how an almost completely gone object looks like in the Layer's panel
    See the little blue squares highlighted in the image, they indicate selected objects . This is called the Selection Column in the Layers panel. You can select any object with equal ease by clicking on the selection column - the red arrow points to the spot you can click to select that path.
    Also, another alternative method to make what you want is to make the punch out shape with 0 opacity, put it above and in the same group as the clipping path and in the Transparency panel click in the box in front of the Knockout Group until a checkmark appears.

  • What does 'kernel bug in process suhelperd' mean in very simple terms please

    what does 'kernel bug in process suhelperd' mean in very simple terms please

    Hi,
    Any that ends in a "d" tends to be a dameon process used by the System as a whole.
    As in launchd is the process that make sure all the Extensions and Kexts that run the OS are started.
    helper would refer to a specific thing  (the info you posted offers no reference to that and I don't know off the top of my head)
    The su would probably refer to the permissions this item has at that moment in time (su is normally a Terminal Instruction allowing temporary but high level access).
    Without more info about a possible link to an action within the OS or an app it would be hard to say if it is a real concern.
    It seems to refer to a conflict.  It could be that the item is not written for the current OS, is outdated via Upgrades for instance, or written in a way that is now Protected by the way the current OS works.
    Console Messages can be helpful when you can attribute them to specific events such as a Crash Log or the Action in an App matching a Time in the Log (you generally have to be watching).
    9:18 pm      Tuesday; January 6, 2015
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

Maybe you are looking for

  • Sales information system-customer report

    Hi!,SAP gurus, Brief description about the project:I am in a support project,and facing the issue that the standard sis reports are not running properly. Analysis:On analysing the problem i found that the reports based on sales organisation-transacti

  • Visual basic 6.0

    Hi, I am getting a small application developed in visual basic 6.0, this application is taking screenshots and saving them in as gif images, but the size of the file is too big upto 2-3 mb which takes time to send them thru email in real time. please

  • Connect Pc to Thunderbolt Display

    I have a windows pc and I am looking to buy the apple Thunderbolt Display I wanna connect my pc to the thunder bolt display is it possible in any way like buying a Hdmi To thunderbolt Cable ?

  • Migration just not working

    from one Macbook Pro to another -- both Intel-based. 1) Try to do the transfer during setup of the new mac. Connect machines with firewire cable, new mac says "waiting for disks to appear", then "There is no OS X installed on the other machine." Balo

  • HOW TO CUSTOMIZED REPORT

    hi all how to cusomized report,, could you tell me procedure,, very urgent pls tell me one example . thnks