I need to create a character just like character using photoshop

Hello,
I need to create a character like charecter on ekalayawebs.com
I found that character are really funny, and cute.
What tool I need to use in photoshop ?
Thanks before

Please post images on this Forum directly otherwise there might be the suspicion of trying to generate traffic on some other site.

Similar Messages

  • I need block a particular site, just like in IE when i goto Privacy option I can specify and site & say Block - where can i find thi s in firefox?

    I need block a particular site, just like in IE when i goto Privacy option I can specify and site & say Block - where can i find thi s in firefox?
    I've been getting some junk websites while I am working. I need to block them completely.
    Please advise. Thanks,

    There is no equivalent in Firefox. You can use the [https://addons.mozilla.org/en-US/firefox/addon/3145/ BlockSite] extension to add a similar feature.
    If the junk sites are coming up whilst you are browsing, this may be caused by malware. You should consider scanning your computer with some malware programs. It is best to run several as each will pick up things that the others miss. Some scanners you can try are:
    * [http://www.malwarebytes.org/mbam.php Malwarebytes]
    * [http://www.superantispyware.com/ SUPERAntiSpyware]
    * [http://www.lavasoft.com/products/ad_aware_free.php Ad-Aware]
    * [http://www.microsoft.com/windows/products/winfamily/defender/default.mspx Windows Defender]
    * [http://www.safer-networking.org/en/home/index.html Spybot S&D]

  • Order types, why do we need to create our order types and not use the stand

    HI
    Order types, why do we need to create our order types and not use the standard ones during implementation.

    Hi Raj,
    Well there is no hard and fast rule that you have to copy nad create a new order type. Its just to meet our own requirements that we copy the standard and make the changes if required to meet our business needs.
    And by this way we keep unchanged the standard order type for further use.
    If you are sure that the standard order type satisfies your need you can directly use that only.
    I hope this clarifies the issue.
    Do reward if find useful
    Regards,
    Abhi

  • Making a zoomer just like navigator in photoshop

    Hi all,
             I am stuck in last few days to make a zoomer application. I am not getting any help on google also.
             it is just like navigator in photoshop . example of this application Link given below.
             http://www.auktionsverket.se/dbk/rdbk_oversikt.asp?d=2010-06-04&at=k&sp=en&bm=E006&id=2855 &snr=0
             Click on any image, then one popup window will open, then click on "zoon in" buttton then flash application will open that is the exact example
             which I want to make.
             I am not getting any help from anywhere And I never made any application of this type But I have to do it.
             So please help me , any idea , any code, any concept, any example  any thing whatever you have.  please.
           THANK YOU .

    Thank You  Deepanjan for replying me. It is really very helpfull for me .
    I have done till getting current position of navigator in percent Because I wanted to do it on percent based calculation.
    Because size of the Big  image can be  resized at any time. I have placed both images without code (manually) and made the  navigator dragable within the small image boundary and scaling the Big image proportionately according to zooming
    I am also scalling down navigator according  to the Big image scaling UP AND getting current position of navigator in percent, percent is correct.
    Because it is showing 0-100, everything is correct    Now My problem in how to position Big  image based on percent (which is gotten from the navigator).
    Please Remember  Registration Point of ther Both (navigator and Big image) in center.
    I am pasting My code here since there is no attachment option present and there's no other way I can show you the code.
    ==========================================   CODE   ================================================================
    package com
        import flash.display.MovieClip;
        import fl.controls.Slider;
        import fl.events.SliderEvent;
        import flash.events.*;
        import flash.geom.Rectangle;
        public class main extends MovieClip
            private var slider:Slider;
            private var isMouseDown:Boolean = new Boolean();
            private var percentX:Number = new Number();
            private var percentY:Number = new Number();
            private var imagePercentX:Number = new Number();
            private var imagePercentY:Number = new Number();
            private var stageWidth:Number = new Number(800);
            private var stageHeight:Number = new Number(400);
            private var borderMCWidth:Number = new Number()
            private var borderMCHeight:Number = new Number();
            private var ration:Number = new Number();
            public function main ()
                trace(" it is main calss ");
                borderMCWidth = small_mc.border_mc.width;
                borderMCHeight = small_mc.border_mc.height;
                sp.source = big_mc;
                big_mc.x = stageWidth/2;
                big_mc.y = stageHeight/2;
                ration = stageHeight/stageWidth;
                addSlider();
                init();
                small_mc.border_mc.alpha = 0;
                stage.addEventListener(MouseEvent.MOUSE_MOVE,MouseMoveing);
                plush_btn.addEventListener(MouseEvent.CLICK,plushBtnClicked);
                minush_btn.addEventListener(MouseEvent.CLICK,minushBtnClicked);
            private function plushBtnClicked(e:MouseEvent)
                big_mc.scaleX += 0.1;
                big_mc.scaleY += 0.1;
                if(big_mc.width > stageWidth || big_mc.height > stageHeight)
                    small_mc.border_mc.alpha = 1;
                    imagePercentX = (stageWidth/big_mc.width)*100;
                    imagePercentY = (stageHeight/big_mc.height)*100;
                    small_mc.border_mc.width =  (borderMCWidth*(imagePercentX))/100;
                    small_mc.border_mc.height =  small_mc.border_mc.width*ration;
                    sp.update();
                    trace("imagePercentX :"+imagePercentX);
                    trace("imagePercentY :"+imagePercentY);
                else
                    small_mc.border_mc.alpha = 0;
            private function minushBtnClicked(e:MouseEvent)
                big_mc.scaleX -= 0.1;
                big_mc.scaleY -= 0.1;
                if(big_mc.width > stageWidth || big_mc.height > stageHeight)
                    small_mc.border_mc.alpha = 1;
                    imagePercentX = (stageWidth/big_mc.width)*100;
                    imagePercentY = (stageHeight/big_mc.height)*100;
                    trace("imagePercentX :"+imagePercentX);
                    trace("imagePercentY :"+imagePercentY);
                    small_mc.border_mc.width =  (borderMCWidth*(imagePercentX))/100;
                    small_mc.border_mc.height =  small_mc.border_mc.width*ration;
                else
                    small_mc.border_mc.alpha = 0;
            function MouseMoveing(e:MouseEvent)
                if(isMouseDown)
                    var numX:Number = new Number();
                    var numY:Number = new Number();
                    numX = small_mc.border_mc.x+((small_mc.width/2)-(small_mc.border_mc.width/2));
                    numY = small_mc.border_mc.y+((small_mc.height/2)-(small_mc.border_mc.height/2));
                    var diffX:Number = (small_mc.width-small_mc.border_mc.width);
                    var diffY:Number = (small_mc.height-small_mc.border_mc.height);
                    percentX = (numX/diffX)*100;
                    percentY = (numY/diffY)*100;
                    trace("percentX :"+percentX);
                    trace("percentY :"+percentY);
                    sp.horizontalScrollPosition = (sp.maxHorizontalScrollPosition*percentX)/100;
                    sp.verticalScrollPosition = (sp.maxVerticalScrollPosition*percentY)/100;
            private function addSlider()
                slider = new Slider();
                slider.liveDragging = true;
                trace("slider.height :"+slider.height);
                slider.move((stage.stageWidth/2),(stage.stageHeight-20));
                addChild(slider);
                //slider.addEventListener(SliderEvent.CHANGE,sliderCnaged);
                slider.addEventListener(SliderEvent.CHANGE, sliderCnaged);
            private function sliderCnaged(e:SliderEvent)
                trace("slider value :"+e.target.value);
            private function init()
                small_mc.border_mc.buttonMode = true;
                small_mc.border_mc.addEventListener(MouseEvent.MOUSE_DOWN,MouseDown)
                small_mc.border_mc.addEventListener(MouseEvent.MOUSE_UP,MouseUp);
            private function MouseDown(e:MouseEvent)
                isMouseDown = true;
                var rect:Rectangle = new Rectangle(((small_mc.border_mc.width/2)-(small_mc.width/2)),((small_mc.border_mc.height/2 )-(small_mc.height/2)),(small_mc.width-small_mc.border_mc.width),(small_mc.height-small_mc .border_mc.height));
                small_mc.border_mc.startDrag(true,rect);
            private function MouseUp(e:MouseEvent)
                isMouseDown = false;
                small_mc.border_mc.stopDrag();
    ========================================================================================== ========================
    Code is fired from the document calss .
    You can get percent in the Bold.
    just import a image convert to MovieClip name it "big_mc" (Ragistration point in the center)
    drag a scroll pane name it "sp"
    for navigator.....
    make a MovieClip name it "small_mc" (Ragistration point in the center)
    in the "small_mc"  make a ectangle and convert to movieClip name "border_mc" (Ragistration point in the center)
    in the "small_mc" in the lower layer keep  image in small size for navigator movement.
    My stsageWidth = 800, StageHeight = 400.
    In short I Want to position the Big image (in any scale) based on percent gotten from navigator (percentX ,percentY);
    Please provide hints to help me to solve .I think the problem is arising due to Registration point  but badly need the a solution.
    Thanks again for replying, have a great Day.

  • I have 2 apps that have been waiting to update for a week.  I don't really care about the update, I would just like to use them, but the are stuck waiting.  I have tried powering down, syncing with my computer...all fails.  Any ideas?

    I have 2 apps that have been waiting to update for a week.  I don't really care about the update, I would just like to use them, but the are stuck waiting.  I have tried powering down, syncing with my computer...all fails.  Any ideas?

    At this point you have no choice but to update the or delete them and reinstall them since you wont be able to use them until they update - or come out of the "waiting" loop.
    Make sure that you do not have a stalled download in iTunes - a song or podcast .... if you have a download in there that did not finish, complete that one first. Only one thing can download at a time on the iPad so that could be what is causing the problem.
    If that doesn't work - sign out of your account, restart the iPad and then sign in again.
    Settings>Store>Apple ID. Tap your ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Go back to Settings>Store>Sign in and then try to update again. Tap one waiting icon only if necessary to start the download stream.
    You can also try deleting the waiting icons - tap and hold down on an icon until it wiggles - the tap the X on the icon to delete it. Then try to download again.
    You can try resetting all settings. Settings>General>Reset>Reset All Settings. You will have to enter all of your app preferences and device settings again.

  • Need to create a report having 40 columns using XML Publisher

    Hi XML Report Gurus,
    I have a weird requirement. I need to create a XML Publisher Report having 40 columns. This report would be a CSV Report.
    How can i create a RTF(Template) in MS-Word having 40 columns ?? I just cannot accomodate the columns, they start wrapping down.
    Can i create a template in Excel and map the data columns to the Excel columns?
    I can create a Oracle PL/SQL package and generate the output, but I want to know if I can achieve the same thing using BI Reports.
    Appreciate your feedback
    Kiran Ramachandra
    [email protected] __.____._

    What I did, I had the column titles in the XML file as data, like
    <COL01>Employee Name</COL01>
    <COL02>Employee Number</COL02>
    etc.
    I did it this way because columns were variable, and up to the user to pick. If you have fixed set of columns, you still can include their names in the XML file, this way you will be able to display then as fields on the template.

  • Help needed to create Notification in IW21 tr code using BAPI

    <b>Hi Experts,
                      I am searching for some BAPI's of IW21 tr code, where I need to create Notification using the details of some legasy system/flat file. I dont wanna use BDC, I need to use BAPI so could anyone help me out.
    Thanks in advance,
    Sunil</b>

    <b>Hi Surya,
                   Thanx for your reply, if u have the program to create the notification could you please send me,,,, I need it urgently....I have a Z-table which has the datas like;
    CusomerName
    Customeraddress
    Work_order_type
    Work_order_priority.........and so on...
    Now I need to create notification using the same datas....
    Thanks in advance..
    Sunil</b>

  • Help needed to create a master-detail JSP page using OAF.

    I like to create a master-detail JSP page using OAF. If any help or guide will be appreciate.
    - Kausik

    A Master Detail Page is a basically a game between two VOs(Master and Detail mostly connected through a View Link). You can also have a look at the View Link section in the Dev guide. Page Layouts is one thing which you can take a call yourself.
    Regards
    Sumit

  • Is there any need to create schema in univese designer,when using sap data

    hi this is sridhar,  i have integraed sap bi with business objects,now i have all cube chars and keyigures in BO UNIVERSE DESIGNER,NOW is there any need to create schema in universe designer to get a report in web intelligence

    Hi Reetha,
    [BAPI create invoice;
    Try if this works out.
    Regards
    Abhii...

  • Need to create sales out of purchase order using idocs

    Hi All,
    I have a requirement to create sales order based on purchase order with in the same sap system and same client(using orders04 idoc type).I have some doubts below could you please some body clarify?
    I know the basic steps in ALE(theritical knowlege)but I need clarifications for below questions.
    1)Which tehnology I should use here ALE or EDI?
    2)With in the same client how can I create 2 logical systems.
    3)How the idoc will go the recevier I mean what all are the ways to trigger outbound idoc from sender side.
    4)Inbound side how the sales order will create based on the inbound idoc?Is it automatic from inbound settings or we have to do anyting for this?
    5)I need to check some conditions with the inbound purchase order data before creating sales order.I think this one we can do in the user exit of inbound function module .Can I control the type of document that it has to create(ex sales order based on some condition or quotation based on some other condition).
    Best regards
    Mahesh

    Hi Mahesh,
                     My suggetion is that develope program to do your scenario... Use BAPI to create Sales order. First confirm with the Functional team for the input for sales order about sales area, company code, conditions type to be used while creation a sales order against Purchaser order... If the details is same then. First get the details of the Purchase order from BAPI " 'BAPI_PO_GETDETAIL' or you can get details by select queries on EKKO & EKPO for header and details....
                    Then pass data to BAPI of sales order creation 'BAPI_PO_CREATE' . to create sales order and handle error with parameter         RETURN                           = IT_BAPIRETURN
    by giving loop on that....and display in the output.....
    This is the simplest way of doing your process...
    If any other help please let me know.....
    reward points..
    Cheers,
    Sagun Desai....

  • I need to create dock icons for application install using packagemaker

    Hi all,
    I am using Packagemarker to create an install for our corporate MS Office 2011 software but I need to be able to add the apps to the dock as well.  Could use applescript if packagemaker is not the right app for that! 
    Anyone know how to accomplish this pls.
    Thanks
    Bill

    Here is a suggestion: http://forums.macrumors.com/showthread.php?t=344100

  • Does Dreamweaver CC have an extension or add on to create a complete site like it used to?

    Is it possible to find a theme layout using Dreamweaver CC?
    In the CS4 you could buy/install an extension(s) / addon(s) which facilitated the design for a complete site layout from various themes. Does this condition still exist, please?

    Your are welcome.
    Browser not autofilling - same result using Safari or Firefox?
    Firefox
    Google Support
    You can also try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
    Isolating an issue by using another user account
    If the problem is still there, try booting into the Safe Mode.  Shut down the computer and then power it back up. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application unistaller. For each disable/delete, you will need to restart if you don't do them all at once.
    Safe Mode
    Safe Mode - About

  • How can I swap my just purchased (not used) Photoshop Elements Windows to a Mac license ?

    I ordered online Photoshop Elements.  But I selected the Windows version while I need the Mac version.  I received a mail with the serial number for the Windows version.  What do I need to do to swap to the Mac version ?

    Go here:
    http://helpx.adobe.com/x-productkb/policy-pricing/order-product-platform-language-swap.htm l

  • Automatically create Object, Character & Paragraphs style when you copy & paste the same item.

    InDesign could create styles automatically. If I am copying and paste an object or paragraph - that means I will be using it in multiple pages and consequently be making changes to it. I know I can always create a syle for all my elements, but having that feature build-in would be great. Especially for the designers like me who works on small documents. Great Forum!
    Thanks!

    InDesign make it really easy for you to create styles. I just believe that having it as an automatic feature (of course, an optional feature) would save time when working in small - mini publications, where there is really no need to create syles . Just my thought.

  • Need to create New pricing type - VA05

    Hi,
    I need to create a new pricing type like C (When u do update the pricing from VA05). i am doing trail and error method to the STEU table. can anybody through some light on this, to create the new pricing.
    I need to delete one condition and need to update new conditions type.i went through the note 24832.
    Thanks in advance.
    Sri

    Hi Madhu,
    I need to create new pricing type like C, going to use Customer reserve - Y(VA05->Edit->New pricing). and it should be able to delete the one condition and add new condition when user used it.
    I hope it is clear.
    Thanks,
    Srikanth

Maybe you are looking for