Does anyone want to learn how to create 3D cartoon images/Plus advanced Editing Techniques???PM Me.

i can show anyone how to create jaw dropping 3D cartoon images,Zombie Character/Etc.Plus a ton of other editing tips and trick.Just PM me.

i can show anyone how to create jaw dropping 3D cartoon images,Zombie Character/Etc.Plus a ton of other editing tips and trick.Just PM me.

Similar Messages

  • I want to learn how to create an app.  Where do I begin?

    I want to learn how to create an app.  Where do I begin?

    Have a look at these pages:
    https://developer.apple.com/ipad/sdk/
    https://developer.apple.com/library/ios/#DOCUMENTATION/iPhone/Conceptual/iPhone1 01/Articles/00_Introduction.html

  • I have installed a trial of Adobe illustrator on my macbook pro. I want to trace an image using the custom trace button but can't. Does anyone have any ideas how I could custom trace?

    I have installed a trial of Adobe illustrator on my macbook pro. It is the 2014 release of adobe illustrator. I want to trace an image using the custom trace button.
    I start a new document. Then I place my scanned pencil/colored pencil drawing, in to the document. I have tried scanning and then placing it as a jpeg, bitmap, and tiff file. I have tried scanning and then placing it, in color and in black and white. The scan mode I use is flatbed. Adobe illustrator allows me to select the default button and one of eleven preset buttons (e.g high fidelity photo), but it does not allow me to click the custom trace button. The custom trace button is grey while all the other buttons are white.
    Does anyone have any ideas how I could custom trace?

    It seems pointless to adjust it afterwards because it is then only a couple a pencil lines rather then a full drawing. And how do I adjust it afterwards? Would I do this using the different buttons under the window button?

  • Need to learn how to create a slideshow in Flash

    Hello All,
    I'm new to Flash and I need to learn how to do a slideshow with exactly the same features as can be found in this link:
    http://www.esppromo.com/index.asp
    Just like at the link above, it needs to play through the slides automatically once the page is loaded, each slide needs to link to a specific URL, and I need controls similar to the boxes at the bottom so the viewer can click on any specific slide they wish to view (I'd like to have numbers in the boxes though). The transitions don't have to slide across like this. If a fade is easier, that would be fine.
    Since I've looked online, but can't find any tutorials for doing this in Flash Professional, I think I'll pick up a book on Flash. There are some online tutorials that are close but nothing that is exactly what I'm looking for.
    I'm just wondering if anyone can recommend a particular book that covers creating this type of slide show with the links and controls exactly as I need it to be. I see these types of slide shows on a lot of sites now, so I'm hoping that maybe someone else on this forum has had to learn how to do this and can recommend a book they used?
    I was looking at Adobe Flash Professional CS5 Classroom in a Book and it looked like it may be what I'm after, but I am rather cautious, as I don't want to end up with instructions that are close to what I am looking for, but not quite right.
    Actually, I thought I'd be able to do this fairly easily with Flash Catalyst, so I updated to Adobe CS5 Design Premium. I found that Flash Catalyst can be used to create a slide show like this, but unfortunately it won't play automatically when the page loads and the viewer has to manually click through the slides, which is not what I need. I could be wrong, but from what I've read, I need Flash Builder to add code so the slide show will play automatically if I create it in Flash Catalyst. Since it's not an option for me to buy more software at this time, I've decided to learn how to do this in Flash Professional.
    I really want to learn how to do this. I expect to go on and create more using Flash, but for now I just REALLY need to figure this slide show out.
    If anyone can help out, I'd really appreciate it!
    Thanks,
    William

    Edit:
    i'm sorry. it is a huge work to type this and will be confusing as hell. i'm already up to 1 full word page of explanation. Though i am able to do it, explaning it in full lengh is ... well.. very hard. Way harder than it is to make your flash itself.
    I can however point you to some element you should read about how to make them:
    - How to use timeline in flash cs4
    - how to create a button in flash cs4
    - How to make "CLASSIC TWEEN" in flash cs4
    - How to use ActionScript 2 ( AS2) basic command like : GetUrl, Gotoandplay, Stop and how to put those script in the right location. ( AS2 allow you to put script directly on the button itself. however it is best to put it in the Action Layer that you will have to build in the timeline.
    - How to import thing in library.
    keep in mind that what you want to make is mostly a Logic probleme...
    - Image 1 click = GetURL X,
    - After Y time, Switch image 1 to image 2 with animation. Do the same for the button.
    - If you click on button 1 while being on image 3, you have to set all the reverse animation in the timeline, and use a lot of Gotoandplay.
    Hope this help you a little.
    I'm sorry. i really wanted to help you do it, but it is just a monstruous job to write all this.

  • [Help] Learn How To Create InputDialog

    I still learn how to create a component.
    I want to create a simple input dialog which modeled after JOptionPane.showInputDialog, but i can't get the value, it's always show null. Anybody know where i doing wrong?
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    public class kotakPesan extends JFrame implements ActionListener {
         String jdlPesan;
         String isiPesan;
         JPanel p = new JPanel();
         JButton bOk = new JButton("Ok");
         JTextField tIsi = new JTextField();
         JLabel lIsi = new JLabel();
         String A;
         public String inputPesan (String Judul, String Isi) {
              this.jdlPesan = Judul;
              this.isiPesan = Isi;
              tampilInputPesan();
              return A;          
         public void tampilInputPesan () {
              setTitle(jdlPesan);
              lIsi.setText(isiPesan);
              p.setLayout(new GridLayout(3, 1));
              p.add(lIsi);
              p.add(tIsi);
              p.add(bOk);
              getContentPane().add(p);
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              pack();
              setVisible(true);
              bOk.addActionListener(this);
         public void actionPerformed (ActionEvent aE) {
              A = tIsi.getText();
    }Main Method:
    public class Sim {
         public static void main (String[] args) {
              kotakPesan p = new kotakPesan();
              String A = p.inputPesan("Masuk", "Angka");
              System.out.println(A);
    }

    I'm also learning java and I'm not quite sure what are you trying to do. Are you trying to read your pre-defined input in the text field?
    I've created a simple window with a text field, a button and the program will produce a sample output. I hope it will help you a bit.
    import javax.swing.*;
    import java.awt.event.*;
    public class TestWindow extends JFrame
         //Window attributes - references
         private JPanel panel;
         private JLabel inputLabel, outputLabel, resultLabel;
         private JTextField inputField;
         private JButton clickButton;
         //Window size - in pixels
         private final int WINDOW_WIDTH = 300;
         private final int WINDOW_HEIGHT = 450;
         //Constructor
         public TestWindow ()
              setTitle ("This is a simple window.");
              setSize (WINDOW_WIDTH, WINDOW_HEIGHT);
              setDefaultCloseOperation ( JFrame.EXIT_ON_CLOSE );
              createPanel ();
              add (panel);
              setVisible (true);
         private void createPanel ()
              inputLabel = new JLabel ("Enter an integer of your choice: ");
              outputLabel = new JLabel ("Your number is: ");
              resultLabel = new JLabel ("---------------");
              inputField = new JTextField (5);
              clickButton = new JButton (" dum dum dum ");
              clickButton.addActionListener (new TempListener ());
              panel = new JPanel();
              panel.add (inputLabel);
              panel.add (inputField);
              panel.add (outputLabel);
              panel.add (resultLabel);
              panel.add (clickButton);
         //Action listener for the button.
         private class TempListener implements ActionListener
              public void actionPerformed (ActionEvent event)
                   int textToInt;
                   String inputFieldTempOut = "";
                   String text = inputField.getText ();
                   textToInt = Integer.parseInt (text);
                   if (textToInt % 2 == 0)
                        if (textToInt == 0)
                             inputFieldTempOut = "Neither even nor odd.";
                        else
                             inputFieldTempOut = "An even number.";
                   else
                        inputFieldTempOut = "An odd number.";
                   resultLabel.setText (inputFieldTempOut);
    public class TestWindowDemo
       public static void main(String[] args)
          TestWindow tw = new TestWindow();
    }

  • Hi, I have purchased an audio book on iTunes from an iMac and it does not show up on the cloud so I can't download it on my iPhone. Does anyone know why and how I can proceed to transfer the audio book purchase?

    Hi
    I have purchased an audio book from iTunes with my iMac.
    Now I wanted to listen to it on my iPhone so I proceeded to transfer the purchase and looked for the book in the purchased section of the store in the iTunes on my iPhone but it did not show up.
    Does anyone know why and how I can transfer the audio book purchased on my iPhone so I can listen while away from the desk?
    Thank you,
    Sanya

    Can you find the audio book by using the Search feature on the iPod?
    Do you have the right boxes checked to sync the audio book to the iPod?
    iTunes: Syncing media content to iOS devices and iPod
    Note you have to check the boxes in Books pane for the iPod in iTunes to sync books in general and another box to sync Audio Books.

  • I cannot see my Iphone 4 in my device window in the finder anymore.  It use to appear so I could copy the camera pictures off of it and transfer them to other folders.  Does anyone have and idea how to get it back when you plug it in initially.  Thanks

    I cannot see my Iphone 4 in my device window in the finder anymore.  It use to appear so I could copy the camera pictures off of it and transfer them to other folders.  Does anyone have and idea how to get it back when you plug it in initially.  Thanks

    You will want to open iPhoto, go to the iPhoto menu and select Preferences. Under the General tab, next to Connecting camera opens: select iPhoto. Close the preferences and quit iPhoto. Reconnect your iPhone 4. iPhoto should open automatically and offer to import your pictures. Import them and then do what you want with them.
    Best of luck.

  • Does anyone know of somewhere I can create a photobook on an iPad please?

    Does anyone know of somewhere I can create a photobook on an iPad please

    P.s I want to be able to print it out too!

  • Can anyone please guide me how to create itunes u public site?

    Can anyone please guide me how to create itunes u public site?

    Greetings;
    If you've already gone through the application process and you're ready to create you site, all the info that you need can be found here:
    http://deimos.apple.com/rsrc/doc//iTunesUAdministrationGuide/Introduction/chapte r_1_section_1.html
    All the best...
    Syd Rodocker
    Apple iTunes U Administrator
    Tennessee State Department of Education    
    Tennessee's Electronic Learning Center

  • I recently bought, from the original website of Adobe, Photoshop elements 13. However, when I go with my mouse pointer over the menu, It hangs or he works very slow. Does anyone have an idea how I can fix it? I have already downloaded updates, both from A

    I recently bought, from the original website of Adobe, Photoshop elements 13. However, when I go with my mouse pointer over the menu, It hangs or he works very slow. Does anyone have an idea how I can fix it? I have already downloaded updates, both from Adobe and Windows. I have a new pc with window 8.1.

    It could be a coincidence, but I rebooted the machine and (knock on wood) PSE13 seems to be working ok.

  • Hello, I just got an iPhone 4S and it seems that the bluetooth function in it doesn't work. I tried few times to pair it to other non Apple phones and it never worked. Does anyone has an idea how to solve the problem? Tks.

    Hello, I just got an iPhone 4S and it seems that the bluetooth function in it doesn't work. I tried few times to pair it to other non Apple phones but it never worked. Does anyone has an idea how to solve the problem? Tks.

    This is not a feature of iPhone, iPad or iOS.
    Bluetooth is supported for stereo headsets/speakers, handsfree telephone
    devices/headsets, some keyboards, some peer-to-peer apps from the
    app store and internet tethering where provided by the carrier.
    Other than this it will not connect to a phone/computer/device.  (thanks to ckuan for the wording)

  • Error msg when syncing ipad "The disk could not be read from or written to" when loading photos. Does anyone have any idea how to fix?

    ? I get an Error msg when syncing ipad "The disk could not be read from or written to" when loading photos. Does anyone have any idea how to fix?

    You have posted in the Mac forum for problems & questions usting the iTunes store. You will probably find more help in the following forum.
    http://discussions.apple.com/forum.jspa?forumID=800

  • My apple tv main menu no longer displays the "movies" section, just internet, computers, and settings. Does anyone know why or how to get it back up? Recently rented a movie directly through apple tv but can't see the movies section in main menu now.

    My apple tv main menu no longer displays the "movies" section, just internet, computers, and settings. Does anyone know why or how to get it to show again? Recently rented a movie directly through apple tv but can't see the "movies" section in main menu now. WiFi and home sharing are working.

    Welcome to the Apple Community.
    Check the location setting for the iTunes Store is correct.
    You might also try restarting the Apple TV by removing ALL the cables for 30 seconds.
    Restart your router.
    If you are still having problems try a restore.

  • I want to know how to create a new script that can be run in batch proces in Photoshop Element 11 ?

    I want to know how to create a new script that can be run in batch proces in Photoshop Element 11 ?

    Have a look at the menu file/process multiple files. You can choose to add your signature (or the caption) to the image and export the new files.
    If that solution is not flexible enough, consider using the very affordable (12$)  Elements+ add-on which offers a 'meta stamp' script :
    http://elementsplus.net/v5/en/meta-stamp.htm
    Otherwise, have a look at other free and good solutions like Faststone Photoresizer, Xnview...

  • Hi, my facebook app on my Ipad3 has stopped allowing me to put comments on. Does anyone have any ideas how to correct this? Don't know if it is a problem with the Ipad or just the facebook app. Thanks.

    Hi, my facebook app on my Ipad3 has stopped allowing me to put comments on. Does anyone have any ideas how to correct this? Don't know if it is a problem with the Ipad or just the facebook app. Thanks.

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime: Set-up, Use, and Troubleshooting Problems
    http://tinyurl.com/32drz3d
    I saw one post where a user said dust got inside the small microphone hole. Using a vacuum cleaner removed the dust and restored the audio.
     Cheers, Tom

Maybe you are looking for

  • Variable Substitution in Receiver File Channel

    Hi All, Could you kindly help me with this? Mine is File to File Scenario. ECC drops a XML file in AL11 directory and i send that file using FTP to a third party system. There is no mapping involved and i use ICO. I need to get a value from the paylo

  • How can I increase the font size (Macbook)?

    I just bought the MacAir 13.3" migrating from a Tosh 13.3" - I researched the font size issue online and called Apple Support. Funny, you must supply them with the serial number to log the call, but I couldn't read it. There doesn't seem to be a sati

  • BPM: incoming messages disappear during send step

    Hi, I want to implement a message aggregation with the bpm tool. For this reason incoming asynchronous messages should be collected and at the expiration of a time limit bundled and send synchronous. This synchronous phase takes ~40 sec. Incoming (as

  • How to get purchased Apps

    I am sure you have seen similiar threads before but I couldn't see any during my search. OK. I bought many applications over the years. I recently deleted all my application after restoring my IPhone 4. Now I can see my purchased application on ITune

  • How can i reduce the size of Images  in MIDlet

    Hi all, How can i reduce the size of Images in Form,bcoz they are covering lots of spaces in form due to that other items are not displaying in specific order. Best regrads karan