Creating Effects with C++

Hey guys,
I don't know what to do anymore, maybe you can help me.
A few hours ago I downloaded "dev-C++" from bludshed.
Now I tried to load effects from the SDK into the programm, but I don't know how to set the preferences for the project. If there are tips in the SDK-help just post the page number. Just in case I didn't found them.
PS: If you know an other good and free compliler for c++ just let me know. The big problem is just to set up the project and export it as an effect.
EDIT: I'm running Windows, so XCode won't work.

Try posting here instead:
i http://www.adobeforums.com/webx/.3bbf11c8/
Also, here's a quick start:
i http://blogs.adobe.com/ae_api/2006/07/stepbystep_xcode_project_creat.html
- Jonas Hummelstrand
http://generalspecialist.com/

Similar Messages

  • Creating effects with a logo..

    I don't know if this can be done in Motion or not and some may say I would need AE or Shake but I thought I'd ask. Is there a way I could take my company logo and alter the look to make it into a globe and have it rotate? The last part I definitely know I can do in Motion but just not sure if I can somehow make it into a globe. My logo looks like a strip of film.

    Short answer, yes.
    Longer answer, the results are probably not going to be what you want or expect.
    You can distort your image with a sphere filter but that only creates a 2D image that looks like a sphere. You can eve layer sphere filters and get an illusion of depth. If you can break out your logotypes individual characters, you can place them on a path that actually curves in 3D space. There are many ways to convey this illusion with Motion's abilities but modeling a true 3D primitive requires a true 3D application or a plugin for Motion.
    bogiesan

  • Looking to create effects with documents

    I'm working on a video that uses a lot of documents. I already successfully edited in several documents and used various effects like motion, masks, image mattes etc...
    Now my supervisor wants to add more since it turned out so well. I'm trying to avoid the same effects that I've already used, so I'm looking for ideas/links to see what else I can do.
    The documents are basically jpegs, so I have a lot of control. Does anyone recommend a good site or link that I can visit to get more ideas on what to do with the documents?
    I've used most of my tricks and I'm looking for a few new ones.

    Jim points out most of the well known ways of presenting documents . . .
    Others ideas to impart the origin of text on screen are
    Shoot a pile of docs on a desk after someone dumps more on the pile, gaussian blur and overlay paraphrased excerpts.
    Shoot someone thumbing through docs and repeat the above.
    Shoot blank paper coming out of the photocopier and super the text onto it.
    Have the actual doc with text highlighted on screen and scroll bigger versions of the text across the frame at varying sizes and transparency.
    There are many variations on the theme . . . .
    HTH's

  • How to create "Fisheye Effect" with Photoshop 10, on a Mac computer

    How to create "Fisheye effect" with Photoshop 10 on a Mac computer?

    One way : use the filter : correct camera distortion. Move the remove distortion slider towards left (barrel distortion)
    Or, first increase the canvas size to a square format bigger than the larger dimension of the image and play with the filter : distort, spherize.

  • Motion how to create 3d effect with a background and one primary object

    motion how to create 3d effect with a background and one primary object

    … like that?
    http://youtu.be/yOht1GJpEm4

  • Im trying to create a "wobbling" effect with a bitmap

    im trying to create a "wobbling" effect with a bitmap
    any idea how to go with this with director?

    It somewhat depends on what the effect is intended to acheive.
    Here is a simple behavior script that can be applied to any bitmap. It wobbles, in the sense that it has a radom movement about its axis.
    That is acheived with the random() statements. The amount of wobble can be controlled by changing the value added to each parameter on each iteration.
    The last three statements keep the wobble from randomly walking off the frame. Again, wobble can be changed by setting the corrective value at which point the bitmap returns to its original state.
    Hope this helps.
    property spritenum
    global glocH, gLocV, gRotation
    On beginsprite
      gloch = sprite(spritenum).loch
      gloch = sprite(spritenum).locv
      gRotation = integer(sprite(spritenum).Rotation)
    end
    On enterframe
    b = random(2)
      if b=1 then
        sprite(spritenum).loch = sprite(spritenum).loch + random(2)
      else
        sprite(spritenum).loch = sprite(spritenum).loch - random(2)
      end if
      c= random(2)
      if c=1 then
        sprite(spritenum).locv = sprite(spritenum).locV + random(2)
      else
        sprite(spritenum).locv = sprite(spritenum).locV - random(2)
      end if
      d= random(2)
      if d=1 then
        Sprite(spritenum).rotation = sprite(spritenum).rotation + random(4)
      else
        Sprite(spritenum).rotation = sprite(spritenum).rotation - random(4)
      end if
    if abs(gloch + sprite(spritenum).loch) <= 8  then sprite(spritenum).loch = gloch
    if abs(glocv + sprite(spritenum).locv) <= 8 then sprite(spritenum).locv = glocv
    if abs(Integer(gRotation - sprite(spritenum).Rotation)) >=8 then sprite(spritenum).rotation = gRotation
    end

  • How create water with specially good effect

    hi everyone,
    I want create a river or a lakes .
    how can I create water with some specially good effect in shockwave.like Wave,Reflection etc
    unity3d may do it easily,Look this water effect from unity3d

    Someone tell me "rendertotexture" can do it,
    But I don't know how to do
    I want to learn more on this water effect using Director
    anybody have demo(source file) or Other methods ,please tell me
    thank you.

  • Can i pan or create a ken burns effect with TEXT in imovie 11

    fotomagico allows  amazing movements of text
    i movie i see works with the actual text but
    how can i use the KEN BURN effect with TEXT
    so it doesnt stay stagnant on the screen
    aside from scrolling and drifting
    gl

    Hi
    Or if You want to elaborate a bit more You can first
    • make a project where You set text
    • Then Export this as full quality QuickTime .mov
    • Import this new clip and start a new project where You apply Ken-Burns
    OR MAY BE doing it the other way around will work better - don't think that Ken-Burns can be applied last
    AnyHow - by Export and Import as a part of process one can make extreamly complex sceens.
    Yours Bengt W

  • Creating animations with transparent backgrounds?

    I'm running into some problems when using After Effects to create animations with transparent backgrounds for Keynote...
    I use animated gifs and short quicktime movies with uniform backgrounds as source files, use color keying to take out the backgrounds, preview them to see if they look OK, render the results as RGB+alpha, and... they don't show up as transparent in Keynote. They work in Powerpoint, however. I've tried outputting as .mov, as .gif, as premultiplied vs straight alpha... no joy. Can someone explain (or point me to an explanation) of how Keynote differs from other programs in its handling of transparency? What am I missing?

    Using a TYPE_INT_ARGB BufferedImage worked beautifully. I had played around with Image for hours, but it never occurred to me that BufferedImage would be needed. :)
    many, many thanks,
    Steven

  • How do I achieve this effect with a drop cap letter?

    How do I achieve this effect with a drop cap letter as shown in the picture below in indesign?:
    Thanks.

    Apply drop caps then select the letter and create outline from type menu. Select the outline letter and apply drop shadow

  • Created effect on clip in timeline. Want to save it for use later..

         I realize I can't drag a clip from the Timeline into the Event Library. So frustrating. So how do I go about setting that clip aside with the effects I have applied so I can use it later in various places in my timeline. I don't want it in the timeline now. I want to use it later with the effects I have created, or is that not possible?

       I can't seem to do any of that in the event library. As far as I can tell, I can only add effects to clips in the timeline.  I have the clip in the timeline and I have created effects. Now I want to remove it from the timeline and not lose the time I have spent creating those effects. I don't want it cluttering up my timeline and I don't want to have to redo all the effects. Is there no way to do this? I'm assuming not.  I did find that I could create another event and copy/paste a clip into the event and "save" for later use that way, which seems a really lousy kludge.
       If I'm correct that there is no way to save a clip from the timeline for later use, do you think this is just a temporary failing or just part of the way FCPx will always work. I am continuing to explore how FCPX deals with editing and playing with unimportant footage and keep hitting walls like this. I try to figure out if it's just a paradigm shift I need to make but things like this and the inability to copy/paste attributes and such just make me crazy. I'm working hard to move from the unsupported FCPStudio and I know that Premiere will have its own "make me crazy" issues but these limitations as compared to FCP Studio are really frustrating and I just can't tell when I run into problems that will be addressed in a .X release vs problems that are simply "how it's always going to work in FCPX".

  • Spry effects with MenuBar

    I have been trying to create a horizontal menu bar with a
    slide effect to it.
    1st try: using Spry slide effect, create my menu with divs,
    and unordered lists: STRIKE 1
    2nd try: using "Multiple elements sliding sample", change
    code to include unordered list and correct position. Problem: can't
    get a mouseover event to occur for main menu or sub-menu items:
    STRIKE 2
    Next, If anyone knows how to incorporate slide effects with a
    menubar, I would be eternally grateful.
    My last attempt is at
    http://www.spicergroup.com/multiSlide.html
    Thanks
    JMcLeod

    Hi,
    Just an FYI, in most browsers, JavaScript executes on the
    main UI thread which is the same thread that is responsible for
    painting/updating the screen. If you have JS on the page that is
    doing some long operation in a tight loop, or if you dynamically
    insert lots of HTML content into the document, causing the browser
    to recalculate/layout/re-render a lot of content in the page, then
    you might see this situation.
    I can't tell what your situation is without seeing what you
    are actually doing.
    --== Kin ==--

  • Vintage effect with FINAL CUT EXPRESS 4

    Hello, I want to create a vintage effect with FC4.
    Can you tell me how?

    ........or half a can of Tennents Lager
    [CGM aged film look|http://www.cgm-online.com/eiperle/cgmaged_film_lee.html]

  • Create SO with reference

    Recently I get a requirement to create new sale order reference from old sale order.
    VA01 have a button to do this work,but abap develop have no FM to get the same effect.
    Is there have the only way by bdc to resovle,  3q!

    you can use the Bapi BAPI_SALESORDER_CREATEFROMDAT2 for creating SO with reference. Pass ref_doc in header data.
    Regards,
    sivaganesh

  • Effect with Chain row

    Hi All,
    what is the problem is my tables are effected with chain rows
    How to solve the problem?
    what is the solution?
    Regards.....

    Chained rows mean your table has had a lot of updated rows, and the space at PCTFREE is not enough to hold all the updated fragments within the same oracle block, so Oracle decides to place the updated row at the "nearest" possible block, leaving behing just a pointer to the new location.
    When you try to access the row, the old block is searched, and when trying to retreive the row, just a pointer to the new location is retreived, causing the system to look for the updated row at the next location.
    Result double IO operation = performance degradation.
    In order to avoid chained rows, increase the value of PCTFREE, so that from now on the new Oracle blocks have more space to handle updates within the same row.
    On the other hand, to fix the already chained rows, use:
    1. export/import
    2. CTAS - create table as select ...
    3. analyze table ... list chained rows (the utlchain.sql script is required) and fix only the affected rows.

Maybe you are looking for

  • Content Conversion when each field is in a new line

    Hi, I have file format denoted with .SIF or .CIF. This file is organised like - AB=asdas BC=qweqwe CD=lop;lk;lk YZ=sdfsdf In each line the data after the = is actually the value of the field. Few set of these fields could repeat. And a new record wou

  • QI stock batch assignment in Process order component

    I have stock of raw material in MMBE against different batch and stock type. Suppose I have 3 batches - B1, B2, B3 for raw material R1. Now in MMBE R1 RM has stock in unrestricted stock batch B1, B2 and QI stock B3. If I am creating a process order f

  • IPhone 4 sound issues (only out of one ear bud)

    I've tried multiple headphones/ear buds and I can only hear music out of one side. This is obviously an iPhone 4 issues considering the headphones don't work on it but work on other stuff. Any ideas on how to get this fixed? I got this phone less tha

  • Help!  Minecraft messed up my mac!

    So the kids were playing minecraft on full screen today and something happened.  They couldn't get out of it, so I did the control+option+escape and got out of it, but now my fonts are all messed up and the screen is too large.  How can I fix this? 

  • Compositing and no xorg.conf

    Two questions: 1) How do I check if compositing is enabled? 2) Is there a way to turn on compositing without using xorg.conf? Thanks. Edit: Hmm, I answered my first question with: > xdpyinfo | grep Composite Composite Last edited by fsckd (2009-11-11