Help Creating Starburst With Randomized Rays

Check out this background image below (or view larger size at this link:http://i3.campaignmonitor.com/themes/site_themes/default/img/bg_site-home.jpg) . I would like to know how they created the "randomized" effect of the rays behind the gray box.   I already know how to make your standard starburst using Abealls auto shape extension, but that creates uniform rays.  The rays of light in the below example are seemingly random.  I know this can be easily done in Photoshop using filters, but can it not be easily done in Fireworks?

Here's my try ( btw, welcome to the forums! ) and even if it is not random, it is close to the desired effect.
Save the file to your computer and de-construct. I have added a Noise filter effect, a bit of Gaussian blur and there is a half-transparent rectangle on top of the rays, with gradient (rays use gradient, too).
Now, I suppose you could combine two Sunrays autoshapes, slightly shift one of them, make both half-transparent, and apply a bit different effects to both. You could also create a complex vector mask on top of the sunrays, with a complex gradient with varaible areas of half-transparency, and this could help create this "random effect" that you are going after...
I hope that some wiser than me Fireworks guru will be able to help you more...
Message was edited by: Michel (two more variants added)

Similar Messages

  • Need tech help creating project with PE11, Windows 7

    I still need help creating a slideshow set to music for DVD playback at my 50th high school reunion. 
    Video Media = 700 still images in .jpg or .tff format.  Pixel sizes range from 200x200 to over 3000x4000.
    I first created this project using PE's presets and original image sizes.  Images added to PE were more blurred than originals & images burned to DVD were even more blurred so I asked for advice.
    Last week several people in the forum tried to help.  I really appreciate everyone's suggestions but would still appreciate further advice. 
    Forum experts said to restart my project with project settings changed to DV 720x480...and to resize my images to 1000x750 pixels.  Then today in a PE11 chat session, I was told something different: use project settings changed to DVD 720p 30 and resize only larger images down to 1280 x 720 (leave smaller images alone). 
    So what project settings and resizing should I use for better image clarity?  How do I change project settings?  By clicking on "new" under "file" >change project settings >DVD 720p 30 or something else?

    Up-rezzing small Still Images, regardless of the program and the Scaling algorithm used, can lead to a diminished quality. As Steve says, pixels are created, where none existed. I try to stay away from up-rezzing, whenever possible, due to that diminished qualtiy.
    If I have to work with very small Images, I often use another workflow, and a different asethetic choice. When faced with the prospect of using small Images, I will create a background of some sort (many options here), and then use that small Image at its original size, "framed" within that background - no Scaling involved, but obviously, that small Image will not fill the screen. The viewer usually has fewer problems with the small Image, than one that is larger, but has started to fall apart, due to the up-rezzing.
    One "trick" that I use is to use that small Image AS the background, but alter it greatly, probably dropping its contrast and upping its brightness, and even adding a Blur to it, then do a PiP (Picture in Picture) of the Image at its original size. I might even create a "picture frame" in Photoshop, to really set that small Image apart from the background. That is but one of dozens of such possible treatments, and one is only limited by their imagination.
    Another possible treatment would be to do a "photo wall" with several of the small Images in say a 3 x 2 matrix of PiP's. Sort of like a Contact Sheet.
    Good luck,
    Hunt

  • I need help creating documents with framemaker 9

    I have been using Words for all the manuals that i have created and i need to transfer them into framemaker and then be able to rewrite them directly into framemaker. I need some help with that please

    Anna,
    You might want to have a peak at some of these tutorials and papers:
    http://www.adobe.com/devnet/framemaker/articles/word_conversion.html
    http://www.techknowledgecorp.com/public/word2frame.pdf
    http://www.io.com/~tcm/etwr2472/guides/frame/frame6/frame_conversion6.html
    http://www.ivanwalsh.com/2009/10/how-to-convert-microsoft-word-documents-into-adobe-framem aker/
    There's also an online webinar [nominal fee] coming up on Feb.10th presented by Shlomo Perets that will be covering this topic. [Highly recommend]
    See: http://www.microtype.com/training.html#ImproveFM

  • Help creating tables with multi line cells (variable height cells)

    Hi -
    I am trying to create a table where the row height of various rows might not
    be one unit (i.e. there would be wrap around text) but I DO NOT want every cell
    to be the same height. i.e. I only want rows with wrap around to be taller.
    What I have done already is
    - Create a new text renderer and set it as default table renderer.
    - played around with the table.serRowHeight method.
    what I noticed is this. If i call
    table.setRowHeight (32);
    All the rows will be a height of 32 which is expected.
    However, if I do something like:
    table.setRowHeight (0,16);
    table.setRowHeight (1,32);
    All the rows render as height 16.
    I am trying to do this on the fly so to speak. I am setting the table model
    fully and then listening to the tableModelChanged event and then want to
    adjust the rows accordingly.
    I have below listed the code snippit and what i WANT to do and what only seems
    to work:
    public void tableChanged(TableModelEvent e) {
    int rows = table.getRowCount();
    //// Using the api i would expect this to make each row taller
    for (int i = 0; i < rows; ++i) {
    table.setRowHeight(i,16+16*i);
    //// However this one alone makes then all the same height.
    //// I do not want this but want the snippit of code above to work
    //// if possible
    table.setRowHeight(32);
    Thanks in advance....
    matt

    Hi bbrita
    Sorry for the confusion. But basically yes the code below in my system does NOT
    work. In my model i have
    public class ApplicationTableModel extends AbstractTableModel {
    //// other stuff here
    public void setApplicationData(SimpleApplication[] appData) {
    //// set the new data here
    this.fireTableDataChanged();
    and then it does call :
    tableChanged(TableModelEvent e)
    and in there i DO change the heights of the cells but they still all render the same height.
    The basic code snippits I am useing are:
    //// in my table model
    public class ApplicationTableModel extends AbstractTableModel {
    //// other stuff here
    public void setApplicationData(SimpleApplication[] appData) {
    //// set the new data here
    this.fireTableDataChanged();
    //// in the panel i create the table
    public class ApplicationDataTablePanel extends JPanel
    implements ListSelectionListener, TableModelListener {
    //// other stuff here...
    public ApplicationDataTablePanel() {
    appModel = new ApplicationTableModel();
    table = new JTable(appModel);
    table.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
    table.getSelectionModel().addListSelectionListener(this);
    table.getModel().addTableModelListener(this);
    // not used at the moment
    // table.setDefaultRenderer(Object.class, new MultiLineCellRenderer());
    this.add(new JScrollPane(table));
    public void tableChanged(TableModelEvent e) {
    System.err.println("GET Row count="+table.getRowCount());
    for (int i=0; i<table.getRowCount(); i++) table.setRowHeight(i,i*3+10);
    /// not used
    // table.invalidate();
    for (int i=0; i<table.getRowCount(); i++)
    System.err.println("HEIGHT="+table.getRowHeight(i));
    This does dump to the screen the following (i have triggered something in the
    system to update the model):
    GET Row count=5
    HEIGHT=10
    HEIGHT=13
    HEIGHT=16
    HEIGHT=19
    HEIGHT=22
    Which is what I expect BUT the cells do not change in height (they are all the
    standard size). This is what is baffling me because it seems to be the thing
    you suggested below but does not work. Which seems like exactly what
    should work.
    I was wondering if there was somewhere else in the event flow that I should be
    making these modifications or if I needed to for force any refresh or anything on
    the graph cells. ???
    Thanks so much for the help and any more you might have.
    matt

  • Help creating DB with multiple Control/Log files

    I just installed 10.0.2.0 and tried to create a database and ran into the following issue. In my 9.2 install I have the following directory setup:
    E:\oracle\oradata\(instance name)
    F:\oracle\oradata\(instance name)
    G:\oracle\oradata\(instance name)
    I have three control files and three log files (1 in each directory). When I use the Database Creation Assistant and specify locations in the Multiplex Redo Log and Controlfiles dialog and then finish the assistant I get an error stating Oracle could not create the folder. I am using the following lines in the dialog.
    {ORACLE_BASE}\oradata\{DB_UNIQUE_NAME}\
    E:\oracle\product\10.2.0\oradata\{DB_UNIQUE_NAME}\
    F:\oracle\product\10.2.0\oradata\{DB_UNIQUE_NAME}\
    When I explore to F:\oracle\product\10.2.0\oradata\ there is a directory called {DB_UNIQUE_NAME} and not the database name I want (for example if I want an instance called RICK the control file would be in E:\oracle\product\10.2.0\oradata\RICK.
    In Oracle 9.2 I specify the locations as follows: E:\oracle\oradata\{DB_NAME}\ and it works just fine. Can someone help me through the exact steps I need to take to set up my new database with control/log files in different drives.
    Thanks
    Richard Anderson

    Hi Richard,
    normally I don't use DBCA to create DBs so I cannot tell how to solve it in DBCA.
    A workaround can be:
    At the end of configuration process in DBCA, instead to have the tool to generate Your DB, configure it to generate only the scripts (if I remeber they are created in $ORACLE_HOME/assistants/dbca dir) and generate them.
    Using a text editor, check the generated scripts and change the wrong strings.
    Hope this helps
    Max

  • Urgent: iMovie creating movies with random sounds throughout

    When exporting my iMovie project - which I put together clips from various documentaries, muted them, and put my voice over in mp3 files... random sounds appear at various points - these are the sounds from one video that I've muted.
    The sounds do not even appear during the playing of this video - but others way before it.
    None of this shows up in the preview, and I've tried saving it as both as the highest definition - 1080p, as well as the 'tiny' movie (but even this takes 10 minutes to compile).
    The stange sounds appear at exactly the same place in both versions... I even changed a few things before the second 'tiny' export, but it was still the same.
    The original movie files were high quality, of various formats - mp4, avi, .mov, etc.
    The particular file that the audio is coming from is an mp4 file (1920x1080 originally)- it has been muted in the video, and in the Events browser.
    I downloaded this video from YouTube, via www.keepvid.com - it's called: Coral reefs and climate change- A message for Copenhagen, and can be found here: http://www.youtube.com/watch?v=8SdDiHbG1tY&hd=1
    I have restarted my computer, iMovie, everything...
    ...this video is due ASAP, and I'm not sure how to solve this irritating issue.
    I hope to hear from you!!

    There have been numerous posts about audio issues. In almost all cases, the user has used speeds other than the presets. Changing to the presets fixed the problem. It's possibly a bug in iMovie, or a less than stellar design with the slider - maybe a pop-up box would have been better.
    If you don't want to mess with your project, then duplicate it (File>Duplicate Project). Then make the changes in the duplicate.
    John

  • Need Help creating form with checkboxes

    I am using Acrobat Standar 9, and I am trying to create a form that has a bunch of checkboxes on it.  First off, the PDF that I am workin with (before I try to input form stuff) is a check list that has spots for marking (if it was printed out).  Acrobat will recognize all of those places as spots for a form tool, but it always inserts textboxes.  I want it to insert check boxes.  So far all I can do is delete all of the textboxes that were inserted and manually, one by one, insert check boxes in all of the locations.
    Is there a way to make the wizard input checkboxes instead of text boxes?  If not with the wizard, is there any way to do that?  (I am not familier with programming languages.. fyi)
    thanks

    Thanks for getting back to me. What I have is a pricing page. The feedback form is so we can see who views or is interested in services. We want only people who fill out this form to be able to view it. I have created simple contact forms that are sent to an email and directed to another page. The problem I am having is trying to figure a way to where hopefully if the same person comes back they won't have to fill out the form again. I know if they fill out the form and create a user name/login it could be a possible fix but I am trying to make it simple. I am just starting to learn PHP/XML (which I have copied from another sources) and haven't written my own. Maybe creating a cookie that is checked once the page is loaded? I have no idea how to do that either though... I am a front end "designer" and a lot of this is greek to me.

  • Newbie needs help creating folder with different date buckets

    A simplification my scenario, I have a table, Invoice, which contains invoice amounts and invoice dates. I want to break up the invoices amounts into date buckets, such that my target report should look something like this:
    Invoices<30 Invoices<60 Invoices<90 Invoices>90
    $100 $250 $500 $1000
    I have created a folder from the Invoice table, and would like to know if it is possible to create new items within this folder to allow me to sum invoice amounts over the 0-30, 30-60, 60-90, 90+ invoice date ranges. In other words, can I create new items that each have their own condition?
    I have seen other solutions that use a custom folder backed by a SQL query using case statements to break a table down into its date range buckets. Is this considered the "right" approach to the problem?
    A simpler solution I've thought of is creating a folder for each date range (Invoices30, Invoices60, etc), and setting the condition of the folder to do the date filtering. The item "Invoice Amount" in each folder ends up being the bucket I want, and I would put them together in a complex folder, and build the report off the complex folder. Although inelegant and a bit redundant, would this solution work?
    Thanks everybody!

    Hi Newbie
    You can do this right inside Discoverer using a couple of calculations.
    Calc 1:
    =====
    Calculate the invoice date variance, let's say you will use TRUNC(SYSDATE) - TRUNC(INVOICE DATE). This gives you a number and let's call this new calculation VARIANCE.
    Calc 2:
    =====
    This second calculation created the buckets themself. Let's do it using a CASE statement and we'll call the calculation TIME BUCKET.
    CASE
    WHEN VARIANCE <= 30 THEN "0 to 30"
    WHEN VARIANCE <= 60 THEN "30 to 60"
    WHEN VARIANCE <= 90 THEN "60 to 90"
    ELSE "More than 90"
    END
    You now display only TIME BUCKET in your workbook. The other calculation, VARIANCE, will be used but not displayed on screen in the final answer.
    If you don't like CASE, here's the same answer using DECODE:
    DECODE(VARIANCE,
    LEAST(VARIANCE,30), "0 to 30",
    LEAST(VARIANCE,60), "30 to 60",
    LEAST(VARIANCE,90), "60 to 90","More than 90")
    By the way, when you do this you will find that Discoverer runs your report very fast. This is because it can handle these types of queries exceptionally well.
    I hope this helps
    Regards
    Michael

  • Need help creating component with 'application.createComponent'

    I am trying to create a button component by doing the following
    application.createcomponent("javax.faces.command") ;
    However it does not seem to work. I can create pretty much any other component by this method but for some reason I am unable to do this with the 'javax.faces.command' component family. Shouldn't this work?

    I think that the component type of the commandButton is "javax.faces.HtmlCommandButton"

  • Help creating .dll with c using JNI

    Hi. I have created a JNI application that uses C to call Java. Now, I am trying to create the .dll for windows. I am using VS C++ compiler. My program compiles; however, it doesn't seem to start the JVM. I am not sure how to pass the arguments in VS C++ while builiding and running. Please let me know. Thanks.

    Hey,
    Thanks. I apologize for not being clear. I have created the dll file and an application that links to that dll and executes the code. It creates the .exe file and when I execute it, it goes through the sample() function that just prints "Hello", and then it goes through the startJVM() function where the JVM is intended to start; however, the status of JVM is returning -1. It's not able to start JVM. I have included the path for the jvm.dll and jvm.lib. But, still won't work. Please reply with suggestions/comments. Thanks again.

  • Help creating password with router

    hi. just got my new macbook pro!! please forgive me if this question has been asked...tried searching but can't find anything.'
    so i have a netgear wgt624 router. i had no problems connecting to the internet, but i'd like to add a password to the router so only i can use my wireless network. how do i go about doing that? when i first plugged in the router, there were numerous connections to choose from...all had passwords, but not mine...all i do is click it and i'm online. i'm figuring thats not a good thing. so any help would be appreciated. thanks alot.

    It'll probably support a number of different security methods. Look through your user manual and do a few things:
    1. change the default settings! Whatever they are, change them, so anyone who can identify your hardware cannot just grab a manual form online and know what the defaults are - that leave them a step behind if they want to try and break in.
    2. set at least 128bit WEP security, and set a secure password - don't use a word; don't use numbers, don't use a word with a number at the end - use upper and lower characters, symbols and numbers.
    3. hide the SSID, or set it as something that isn't in your face (ie don't use your name or address for the network!). this isn't something that would deter those who are intent on trying to break into your network, but if there are other visible networks then they'll be the first targets.
    4. set MAC address security. This will allow only the specified hardware devices to connect. Yes, people can spoof (fake) a hardware address if they want to. Once again though, only the determined will sniff the packets enough and then try to spoof your address.
    Get through as many of those things as you're comfortable doing and then come back and ask for more help on what you don't understand or can't work out how to do.
    Good luck,
    Justin

  • Help creating buttons with actions

    I am looking for a way to program buttons with actions and conditional outputs. As an example: After populating a set number of cells, I would like to be able to program a button to copy the contents of those cellsto another set of cells. Also, a button programmed to clear the contents of the cellswould be nice.
    anyone?

    Buttons are typically associated to macros (VBA or other). As Numbers 1.0 does not support any macros, I am afraid that you are out of look.
    To copy values is very simple with formulas of course (=a1 and so on), but you probably know that, and need something more powerful.

  • Need help creating trigger with delete capabilities

    I have two tables:
    create table person(userid integer,
    lname varchar(20),
    fname varchar (20),
    phone_number varchar(12),
    email_address varchar(35),
    city varchar(20),
    zip_code varchar(20),
    department varchar(20),
    major_street varchar(20),
    cross_street varchar(20),
    notes varchar(100),
    Primary Key (userid));
    create table vehicle(car_id integer,
    make varchar(15),
    model varchar(20),
    year integer,
    gas_mileage integer,
    capacity integer,
    owner integer,
    primary key (car_id),
    foreign key (owner) references person (userid));
    I am trying to create a trigger that would delete all those records in vehicle whenever someone deletes a record in the person table. Here is the code that I run but it get a compilation error. Here is the the trigger text followed by the error:
    CREATE OR REPLACE TRIGGER ON_DELETE_PERSON
    AFTER DELETE ON person FOR EACH ROW
    BEGIN
    DELETE from vehicle
    where owner=userId;
    END;
    2/4 PL/SQL: SQL Statement ignored
    3/19 PL/SQL: ORA-00904: "USERID": invalid identifier
    Any suggestions?

    CREATE OR REPLACE TRIGGER ON_DELETE_PERSON
    BEFORE DELETE ON person FOR EACH ROW
    BEGIN
    DELETE from vehicle
    where owner=:old.userId;
    END;

  • Help creating code with running time proportional to N! (factorial)

    I'm guessing that n! is something like n^n, but am not sure how to create for loops for that. I know n^2 requires two for loops; one inside the other. Some hints or guides would be greatly appreciated. Thanks.

    WootGui wrote:
    Thanks for backing up my idea. O(n^2) has two nested loops, that means O(n^n) should have n nested loops, but how is it possible to create n nested loops when n is large. ThanksYou're welcome.
    An algorithm does not have to have n-nested loops (which all run upto n) to be in O(n^n). An example of something in O(n^n) (or O(n!)) is solving the famous [travelling salesman problem|http://en.wikipedia.org/wiki/Traveling_salesman_problem] brute force.

  • Help Creating A Link

    Ok I need help creating links with my banner. It's a take off
    of Macromedia's tutorial banner for the Coffee Shop.
    What it is, is a banner. You have the "Front page" of the
    banner. And it has a next button. The User clicks the next button
    and it displays the next "page" of the banner. I WANT the user to
    then click THAT page (or somewhere) on that "page" to be directed
    to a whole new page IN the current browser window. Can ANYONE
    please tell me how to change the script below so it will do that?
    /* 0 */
    var image0title:String = "Click Next To View:";
    var image0desc:String = "Photos, Videos, Forums,
    Screen-Shots, Stories And Much, Much More";
    var image0uri:String = "images/Ban1.jpg";
    /* 1 */
    var image1title:String = "Video Section";
    var image1desc:String = "Click Here to view a multitude of
    videos we've made ourselves.";
    var image1uri:String = "images/Ban2.jpg";
    The image1title:String is my title text on my banner.
    The image1desc:String is the description text on my banner.
    The images/ban2.jpg is my background image on my banner.
    I don't care of some of that TEXT is the link....or what I
    really want is the background img to be the link. Either works for
    me can anyone please fix this? I've only spent 2 hours on
    ActionScripting and trying to learn. I couldn't figure out how to
    do it through the tutorials. Thanks. IM or email me!
    [email protected]

    To accomplish this I would build the link as part of the value. So if Yes the Yes itself would be a link, if No is simply text as today.
    It would look something like this:
    SELECT
          ,CASE WHEN ft.feature_id IN (SELECT cc.feature_id
                                       FROM customer_commitments cc
                                       WHERE ft.feature_id = cc.feature_id
           THEN
            '<a href="f?p=&APP_ID.:NEW_PAGE:&SESSION.::::Pn_FEATURE_ID:' || ft.feature_id || '">Yes</a>'
           ELSE
            'No'
           END "Commitment Exists"
              ,ft.feature_id
    FROM ....One problem with this approach is when you export the report (as a CSV for example). There are a few ways to handle this, one is to simply duplicate the column with clear text yes and no and set this column to be included on export and only visible on export. The other column, with the link, set it to no export.
    The other option is to add another condition on the REQUEST value.
    SELECT
          ,CASE WHEN ft.feature_id IN (SELECT cc.feature_id
                                       FROM customer_commitments cc
                                       WHERE ft.feature_id = cc.feature_id
           THEN
                  decode(:REQUEST, 'CSV', 'Yes'
                , '<a href="f?p=&APP_ID.:NEW_PAGE:&SESSION.::::Pn_FEATURE_ID:' || ft.feature_id || '">Yes</a>'
           ELSE
            'No'
           END "Commitment Exists"
              ,ft.feature_id
    FROM ....It seems that the link itself is getting replaced with a #. The link would look something like this:
    'f?p=&APP_ID.:NEW_PAGE:&SESSION.::::Pn_FEATURE_ID:' || ft.feature_id
    Hope this helps.
    Oh and of course, in order for the link to display you need to change the Display Type to "Standard Report Column" otherwise the HTML will be escaped.
    Thanks
    -Jorge

Maybe you are looking for

  • How do I move music from my computer to my Ipod?

    I have music that isn't on my Ipod, and I want to move it to my Ipod so that I can listen to it without having to get on my computer. The only problem is, I don't know how. Is there a way that I could move these songs to my Ipod?

  • HP Color LaserJet Pro MFP M177 Series Fax sends but won't receive faxes

    I can send faxes using HP Color LaserJet Pro MFP M177 Series Fax but I cannot receive them. I have faxed test pages and the setup is correct. Any suggestions?

  • How to read values from the following XML?

    I have been using "extractValue" to get the values from a xmltype field and no problems until now. The xmltype now is like: <a>1</a> <b>2</b> <c>1221</c> <c>1412</c> <d>11111</d> <e>3333</e> I'm able to read values from 'a,b,d,e' but not from 'c'. Qu

  • Regarding: How to get the Tax Breakup  Amount using SDK

    Hai Friends,                I created one saled order . I have given Tax code (Service) then it show total  amout of tax is 370.80. when i click the link button of Tax Amount field  from sales order then it show  the  Tax Breakup Details in Separate

  • JCOP tools plugin is unable to upload the applet

    Greetings. I have installed Eclipse 3.3 and JCOP tools (activated). We got ready Java Card applet and my task is to upload it into the Java Card. Firstly I want test it on a simulator. The applet compiled successfully and the .CAP file is created. Bu