How to create a pseudo 3D border like this?

Hello Everybody,
whats your suggestion of creating a border like the one of the blue circle at the picture below in Illustrator:
This on is made in PS:
Thanks for any advice!

1. Make circle, choose fill color.
2. Make Swatch of fill color.
3. Copy circle, paste in front
4. Make stroke of several points, align stroke to inside, fill of none.
5. Expand appearance.
6. Apply gradient to ring, color of filled circle (from swatches), +black on one end, –black on the other, rotated –45° or whatever you like.
7. Apply blur to ring as desired.
8. Paste circle in front again, select all, make clipping mask.
Peter

Similar Messages

  • How to create a revolving website list, like this...

    Hi there, Im new to flash, but the main reason I got it was so I could create an object to put on a webpage. I want to be able to create a revolving website list, with pictures of the sites in the list, like on the main page of this site:  http://www.tamberlow.com/
    Please can somebody help me? Or point me in the right direction
    Thanks for your time,
    Jackie xxx

    that's a (not very well-done) carousel.  you can search for:  flash <your actionscript version> carousel.
    most are horizontal but it's not much different to make one like the site you referenced.

  • How to create a COOL entrance page like this using action Script 3

    Hey dudes!
    so i have a project where i will be making a website.
    I will be using flash to make it interactive and visually appealing. I found a website with a really cool entrance page, please view it here:http://www.dvf.com/dvf/
    i don't really know much about the action script language so be as precise and clear please
    anyways whenever the mouse moves, the background looks like its moving.
    can someone please tell me how you could do this in flash???
    PLEEASSEEE i reallly reallly needd this. thanks so muchh

    Why don't you use several layers with appropriate alpha properties, and move these layers according to the mouse events?

  • How to create a TEST form just like in workshop

    Hello
    I am using WL Workshop 7.0.2. and Java 1.4. Could anyone pls tell me how to create
    my own test form like in Workshop.
    Is it possible to have a HTML client without any java class or JSP in between
    the HTML form and the webservices(jws). In workshop I know that knexServlet is
    somehow resposible for creating the test form in work shop.
    Any example which has used webservices created by workshop and has a HTML form
    has a client.
    Any HELP will be greatly appreciated.
    Thanks
    madhu

    Thanks Anurag,
    Could you point me to some rich JSP client example, (not the HelloWorld or MazeDisplay).
    preferably which takes a XML as request.
    Thanks
    madhu
    "Anurag Pareek" <[email protected]> wrote:
    Madhu,
    To call a webservice, a client using HTTP should be able to send a SOAP
    request to the server hosting the webservice. Generally, it is complicated
    to code the SOAP request manually and hence clients use a proxy on their
    side to do the job for them. For a Java client, this job is taken care
    of by
    the client proxy JAR file which can either be downloaded from the Test
    View
    web page or generated using the <clientgen> ant task.
    Requests from the Test View page are given special treatment, and there
    is
    special functionality provided in the server to help in iterative
    development using the Test View.
    For any client other than the Test View such special wiring is not
    available. Hence you need to use a JSP or a Java class on the client
    side.
    Regards,
    Anurag
    "madhu" <[email protected]> wrote in message
    news:3ee8cca3$[email protected]..
    Hello
    I am using WL Workshop 7.0.2. and Java 1.4. Could anyone pls tell mehow
    to create
    my own test form like in Workshop.
    Is it possible to have a HTML client without any java class or JSPin
    between
    the HTML form and the webservices(jws). In workshop I know thatknexServlet is
    somehow resposible for creating the test form in work shop.
    Any example which has used webservices created by workshop and hasa HTML
    form
    has a client.
    Any HELP will be greatly appreciated.
    Thanks
    madhu

  • How to create a content profile and Why this need

    how to create a content profile and Why this need

    Hi,
    You will need profiles to control the following behavior:
    - Which metadata to be shown in the checkin form and search form
    - Define default values to certain metadata
    - Make metadata editable, hidden, info only etc
    - Allow the user to see only relevant metadata, for example you could have 50 metadata defined, but all you need for the user to input is 10 for say HR documents, you can show only these 10 metadata for the user to contribute
    HTH
    Regards,
    - Anand

  • How Can I Speed Up My Video Like This? (Example Included)

    iMovie is currently optimizing my video so figured i'd ask this now rather than when i'm editing.
    I recorded video of myself getting a haircut and would like to speed the video up and add some music to it; similar to this video i found on youtube.
    How can I speed up the film like this and slow it down as done in this video?
    http://www.youtube.com/watch?v=-OmFShCpXSU

    Quite easy to do.
    Watch the tutorial here:
    http://www.apple.com/ilife/tutorials/#imovie-timing
    You can access these tutorials and ask questions from within iMovie Help.
    Regards,
    Z

  • How do I create a rule that scales like this?

    Hello,
    I'm creating a page where I want a solid white horizontal rule. 4 pixels high, fixed distance from the top of the page, fixed distance from the left, and always attached to the right edge of the screen. Something like this:
    Is this possible? Thanks.

    Insert a horizontal rule styled with the following CSS:
    hr {
    color: #fff;
    background-color:#fff;
    margin-top: 40px;
    margin-left: 80px;
    height: 4px;
    width: 100%;

  • How to Create a ADF Form same like in Oracle Forms

    Hi,
    I need to create a Form in ADF where in on the top I have two text fields with LOV and one Text with out LOV and a button. Selecting values from the first two should populate the value of thid text
    and pressing the button should actually populate the fields below.
    Below I have several other fileds of which few are queried from the database and other are calculated fields (aka like control fields in Oracle Forms).
    Now I am a Forms Developer and know quite a few things in ADF as well, like creating Master Details Forms and some of the work flows. Some basic functionaliy.
    I want to make an attempt to create something like this which is created in Oracle Forms.
    What I have tried as of now is create a query and added LOV to first Text. Displayed all the fields as ADF form and on top I have put a ADF Query panel , using this I am able to populate few of the columns.
    Can someone tell me what is the best way to do the things which I have mentioned.
    TIA

    Hi,
    If your need is to auto populate other employee fields of the page based on previous 2/3 fields like deptno, empno, loc, then you can achieve this with button action listener. You can add runtime bind variables to your view object and set them with user input values and execute query.
    for e.g, you can add below code in your AMImpl class and expose it to UI and invoke it from UI (from page, create a managed bean and call AM method)
    /***** Sample code only*****/
    public void refreshVO(Integer EmployeeNo, Integer DeptNo, Integer locNo)
    ViewObject vo = this.getEmployeeVO();
    vo.setWhereClause(null);
    vo.setWhereClauseParams(null);
    //Adding empNO where clause
    vo.setWhereClause("employeeno = :empNum);
    vo.defineNamedWhereClauseParam("empNum", null, null);
    vo.setNamedWhereClauseParam("empNum", EmployeeNo);
    // similarly add logic for DeptNo, LocNo and you can additional check if they are null or not null
    vo.executeQuery();
    Regards,
    Ravi Nuka

  • How to design a dashboard to look like this link

    Hi all
    i have been trying to search for links/ papers or documents to help me to design my dashboard to look like this
    https://www.google.com/search?biw=1600&bih=775&q=oracle+bi+dashboard+examples+11g&bav=on.2,or.r_cp.r_qf.&bvm=bv.51495398,d.cGE,pv.xjs.s.en_US.M4-36_38X9A.O&um=1&ie=UTF-8&hl=en&tbm=isch&source=og&sa=N&tab=wi&ei=ShImUsXtFqr3iwLe8YHgCg#facrc=_&imgdii=_&imgrc=O-rJev3XQgdMQM%3A%3BQC-E1G4bmJozeM%3Bhttp%253A%252F%252Fshivabizint.files.wordpress.com%252F2013%252F06%252Fsample_app_v305.jpg%3Bhttp%253A%252F%252Fshivabizint.wordpress.com%252Fcategory%252Fobi-ee%252Fobiee-11g%252F%3B1109%3B542
    can anyone who has it or has a document share it or share his knowledge how to do it please ?
    thanks

    The Oracle By Example has a series of tutorials that will get you a very basic understanding.  Designing dashboards is a process that requires you to understand both Data Visualization practices and knowledge of the tool you are working with.
    Please review the following
    http://www.oracle.com/technetwork/middleware/bi-enterprise-edition/tutorials/obiee11g-453435.html
    Oracle BI Analytics and Dashboards 11g
    Oracle BI EE (11.1.1.7): New Features - (New)
    Creating Analyses and Building Dashboards 11g  (OBI EE 11.1.1.6.2BP1)
    Creating Analyses and Dashboards 11g
    Creating and Using Action Links and Actions
    Creating and Deploying Custom Styles, Skin, and Messages in Oracle BI 11g 
    Sending Alerts in Oracle BI EE 11g by Using Oracle BI Delivers 

  • How can I do a Background image like this (example inside)

    Check this out:
    Click Here
    Notice if you view the background image by itself, its much bigger than what is appearing on the website in the browser.  Is it set to automatically adjust to your monitor size?  How can I achieve this through CSS?
    Also, how can I setup a transparent background (like in the middle of the page?)
    Thanks

    "Is it set to automatically adjust to your monitor size?  How can I achieve this through CSS?"
    It's an illusion.  The body background image is defined with a fixed position, so the image is actually floating off to the left when viewport width is decreased.  Another example of this can be seen here along with the CSS code used to create it.
    http://alt-web.com/DEMOS/fixed-background.shtml. 
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics |  Print | Media Specialists
    www.alt-web.com/
    HTML Validator -  http://validator.w3.org
    CSS Validator - http://jigsaw.w3.org/css-validator/
    Tutorials - http://w3schools.com/

  • How do I make my terminal look like this?

    Hello, I'm trying to figure out how this guy made so his terminal look the way it does.
    I've searched around some sites but I can't really figure out what to look for as I don't know the name of the application or what it really is, just that it looks like that.
    http://sites.google.com/site/gotmor/dze … xmonad.png

    Rob (the dzen dev, IIRC and BTW) is probably using urxvt as a terminal. The prompt is a two-line prompt like this one, you'll need zsh for it. Also, he uses XMonad, a tiling window manager, which doesn't draw any window decorations, so there's no close/maximize/minimize buttons or title bar. Good luck getting into them all, you're in for quite a journey.

  • How to add button on heading just like this page in template?

    Hi,
    I'd like to create template that have many buttons on heading
    just like this page. But in the wizard to create template, it
    can only add three button: one for application,another for
    home,and the other for help. What should I do? Do I create
    template by coding? Please tell me.
    Thanks,
    Sirin

    You need to use an unstructured UI template. Structured UI
    templates are not supported with Portal pages.
    Regards,
    Jerry

  • How to do pop-up text box like this?

    On 1-800-Flowers website home page if you hover over the thumbnails a text box pops up in the the bottom right corner, is there an action in GoLive that can do something like this? It's nice how they have everything in one cell and when doing a onmouseover it does the "shadowOver(event,this)".
    http://ww22.1800flowers.com/
    Thanks,
    Wesley

    Is it possible to just have a text message pop up in a box (table) onmouseover? Such as:
    http://www.dynamicdrive.com/dynamicindex5/popinfo2.htm
    I've been working with this script but it is required to have this javascript within the head.
    Thanks,
    Wesley

  • How can I export the same quality like this video ?

    I found this video and upload here :
    http://www.mediafire.com/?4uoygmlvfm5uccu
    HD 720p
    and the file size is very small : 3.87 MB with length : 38s but has very good quality.
    Does anyone know how to render like this ?

    I can only guess what you want exactly.
    To make the top menu item move left when the cursor overs above it tou could do something like:
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible {
       margin-left: -3em;
        width: 8em;
    I hope this helps.
    Ben

  • How can I implement a check constraint like this

    A column can have this values: first 3 letters can be �ing� �fig� �erd� then it can either have �1,2,4,5� and then 3 more numbers.
    Like this: ing1003 or fig2432 etc.
    I have tried this:
    columnName LIKE �[ing-fig-erd][1-2-4-5][0-9][0-9][0-9]�
    But it doesn�t work. I have been looking around and haven�t found anything that can help me with this.
    Anyone got any suggesting?
    Cheers
    envida

    CHECK(code LIKE '[ing,fig,erd,][1,2,3,4,5][0-9][0-9][0-9]'))This is a regular expression. Oracle database does not yet support regular expressoions (10g will). So what it is actually doing is apllying the whole string as a literal. Because there are no wild cards, any row where code literally does not equal '[ing,fig,erd,][1,2,3,4,5][0-9][0-9][0-9]' will fail i.e. all of them.
    If you really want to use regular expressions either have a look at the PL/SQL package OWA_PATTERN or consider importing the Java Regexp package and implementing some Java Stored Procedures. Alternatively you can could cook up something using translate or replace.
    Cheers, APC

Maybe you are looking for

  • OSD to Dell Venue 11 pro 5130 tablet

    Hi, I am setting up a deployment of Windows 8.1 x64 to Dell Venue 11 pro 5130 tablets from SCCM 2012 R2. I am docking the tablet and using the dock USB port to boot from a USB stick into the SCCM Boot Image. the image loads and allows me to select th

  • How to send a mail to the approver for leave approval(infotype 2001)

    Hi In my client place, The requirement is that While an employee is trying to maintaining its Absence i.e 2001 infotype then an email by default has been sent to the concern person who is going to approve that leave. Can I configure the scenario with

  • Hi i just updated to 8.3 on my 6 but i cant find carplay in settings

    I just updated the 8.3 on my iphone 6 but i cant see carplay in my settings plz help me with this

  • Oracle 10g Reports Server - problem authenticating against DB

    I have a problem with Oracle 10g Reports server authenticating against an Oracle RDBMS. When I try to run reports, an authentication form screen is presented, with the password field empty (the URL in explorer that loads this page contains the userna

  • Time sheet, rates, date dependent

    I am trying to figure out the best database design for the following; I have individuals (stored in Agents table) that enter their billing or time worked each day for different projects. Now we have different rates that we pay based on the person and