Help needed converting 2 graphics

http://www.nexuspoint.ca/Graphics/prisma.ai
and
http://www.nexuspoint.ca/Graphics/star.eps
The only image editing software I have is Fireworks which
sees these files
as flattened bitmaps. Can anyone out there convert them for
me to a
FW-ready png with vectors etc.?
Hopefully,
Kathie

Thanks so much for this, Linda. My life just became a whole
lot easier!
I am having a very hard time explaining to my client what
format it is that
I need these images in. I'm getting the feeling that I should
really have
more than just 1 graphics app. in order to do web design.
Because I only do
this as a sideline, and usually pro bono for charities, it's
hard to justify
the expenditure.
Hopefully the client will agree to pay to have the starburst
recreated.
Regards
Kathie
"Linda Rathgeber" <[email protected]> wrote in
message
news:gn4ofg$31f$[email protected]..
> Kathie McLaughlin wrote:
>>
http://www.nexuspoint.ca/Graphics/prisma.ai
and
>>
http://www.nexuspoint.ca/Graphics/star.eps
>>
>> The only image editing software I have is Fireworks
which sees these
>> files as flattened bitmaps. Can anyone out there
convert them for me to
>> a FW-ready png with vectors etc.?
>
> The prisma.ai graphic can be converted to FW ones. I
find that the easiest
> way to get AI vectors into FW is to open it in AI, and
then copy and paste
> into a new FW document. Here's the result.
>
>
http://www.playingwithfire.com/prisma.png
>
> The star.eps image is a bitmap and, as Joey said, would
need to be
> recreated in vector format.
>
>
> --
> Linda Rathgeber - Adobe Community Expert
>
http://www.adobe.com/communities/experts/members/8.html
>

Similar Messages

  • Help needed converting 2 Captivate projects...

    Hi,
    I have troubles with Captivate (another post on this forum) and was wondering whether someone would be willing to help in converting 2 captivate projects to .swf?
    I can provide a link to the files.
    Help wpuld be appreciated.

    Hi there
    I'll try to help.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Urgent Help Needed: ATI Graphics Card install

    Hello All.... I am in need of some urgent help..
    I am trying to install a new graphics card - the ATI Radeon 9600 SE. I currently have a Voodoo3 card. I followed all of the instructions step by step, but when I plug the monitor to the Radeon card and boot up, I do not get any display. I have tried everything I can think of, and yet - I am sure the card is secured in place and the monitor is plug into the card.
    Can anyone help me on this one.. ATI's support is, well - lacking..
    Here is some info on my pc:
    MCI motherboard
    AMD Athlon(tm) XP 2000+ 1.7 GHz
    768 MB
    AMIINT - 10 Version 1.00, 07/10/02
    Could the problem be with switching from a regular PCI card to an AGP card???

    Quote
    Originally posted by southmike
    okay i'll bite what are omega drivers,
    how are they different from cat4.2 drivers
    i was suprised that the voodoo 3 would work in a AMD64 mobo...
    whoops....just read the rest of the post :lol:
    BTW is there an external power connector that needs to be plugged in?

  • Help needed Converting MSSQL function to PL/SQL

    Hello,
    I have the following MSSQL code which I need to migrate to Oracle 10g. The problem I am having is the MSSQL code creates a temp table as the return type and I am unsure how to get the same functionality in PL/SQL.
    MSSQL CODE_
    CREATE FUNCTION [dbo].[QueryCurrentWhy]
    @ColumnID INT,
    @GroupID INT,
    @Parents VARCHAR(8000)
    RETURNS @R TABLE(ID1 int IDENTITY (1, 1) NOT NULL, ID2 int, ColID int, [Name] VARCHAR(255), Tlevel int, ParentID int, Processed BIT)
    AS
    BEGIN
    RETURN
    END
    The code I have currently written in PL/SQL is below. I firstly create a global temp table and then a sequence and trigger for it. I then create the Function in the hope I can specify the temp table as the return type. Problem is I get the error "PLS-00201: identifier 'TEMPR' must be declared". Im guessing this is because the temp table is declared outside the function declaration?
    ORACLE CODE_
    CREATE GLOBAL TEMPORARY TABLE tempR
    ID1 INT NOT NULL,
    ID2 INT,
    ColID INT,
    Name VARCHAR2(255),
    Tlevel INT,
    ParentID INT,
    Processed CHAR(1)
    CREATE SEQUENCE gCounter
         START WITH 1
         INCREMENT BY 1
    CREATE OR REPLACE TRIGGER gTrigger
    BEFORE INSERT ON tempR
    FOR EACH ROW
    DECLARE TEMP_NO INT;
    BEGIN
         SELECT gCounter.NEXTVAL INTO TEMP_NO FROM DUAL;
    :NEW.ID1 := TEMP_NO;
    END;
    CREATE OR REPLACE FUNCTION TSORADB.QueryCurrentWhy
    aColumnID INT,
    aGroupID INT,
    aParents VARCHAR2(8000)
    RETURN tempR
    AS
    BEGIN
    RETURN;
    EXCEPTION when NO_DATA_FOUND then null;
    END;
    Basically is it possible for me to declare the temp table in the return statement, if not then what is the best way to go about this?
    Thanks in advance
    Toby
    Edited by: redeye on Jul 27, 2009 3:26 PM

    Unfortunately I didnt write the original function or stored procedure and the person who did is no longer with the company, so apologies for any confusion with what I am saying.
    Maybe it'll be more helpful if i paste the contents of the function?
    CREATE OR REPLACE FUNCTION TSORADB.QueryCurrentWhy
    aColumnID INT,
    aGroupID INT,
    aParents VARCHAR2(8000)
    RETURN tempR
    AS
    --BEGIN
    aPKColTypeID INT;
    aFKDColTypeID INT;
    aFKDSColTypeID INT;
    aFKIColTypeID INT;
    aColType VARCHAR2(30);
    aTableID INT;
    aName VARCHAR2(255);
    aNameWhyMost VARCHAR2(255);
    aNameWhyMost2 VARCHAR2(255);
    aLongNameStr VARCHAR2(1000);
    aConnectStr VARCHAR2(1000);
    aColID INT;
    aColIDWhyMost INT;
    aColIDWhyMost2 INT;
    aColIDWhyMostLast INT;
    aCount INT;
    aID1 INT;
    aID2 INT;
    aPreID2 INT;
    aMaxID2 INT;
    aCurrentID2 INT;
    aTLevel INT;
    aTLevel2 INT;
    aTlevelLast INT;
    aNewLevel INT;
    aMaxTLevel INT;
    aMaxTLevel2 INT;
    aParentID INT;
    aParentID2 INT;
    aNewParentID INT;
    aProcessed number (1);
    --aCurVar1 CURSOR;
    aParent INT; aStrEntityIDSet varchar(2000); aStrPipeSepValsInput varchar(2000); aEndPointInput int; aSeperatorIndex int;
    aNumTempDoc INTEGER := 0;
    --aColumnID INT DEFAULT(0);
    --aGroupID INT DEFAULT(0);
    --aParents VARCHAR(8000) DEFAULT('');
    BEGIN
    SELECT ColumnTypeID INTO aPKColTypeID FROM TSORADB.HKColumnType WHERE ColumnTypeName = 'PK';
    SELECT ColumnTypeID INTO aFKDColTypeID FROM TSORADB.HKColumnType WHERE ColumnTypeName = 'FKD';
    SELECT ColumnTypeID INTO aFKDSColTypeID FROM TSORADB.HKColumnType WHERE ColumnTypeName = 'FKDS';
    SELECT ColumnTypeID INTO aFKIColTypeID FROM TSORADB.HKColumnType WHERE ColumnTypeName = 'FKI';
    IF (aGroupID is null)
    THEN
         aGroupID := -1;
    END IF;
    --Tokenize the parent array and get back a set of values.
    IF(aParents is not null)
    THEN
    BEGIN
         aStrEntityIDSet := aParents;
         aStrPipeSepValsInput := '|' + ltrim(rtrim(aStrEntityIDSet)) + '|';
         --print aStrPipeSepValsInput
         aEndPointInput := INSTR(aStrPipeSepValsInput, '|');
         aStrPipeSepValsInput := INSTR (aStrPipeSepValsInput, LENGTH (aStrPipeSepValsInput) - aEndPointInput); -- take out the '|' pattern
         WHILE (LENGTH (aStrPipeSepValsInput) > 0)
         LOOP
         BEGIN
              aEndPointInput := INSTR(aStrPipeSepValsInput, '|'); -- get the next '|' pattern
              aParent := SUBSTR(aStrPipeSepValsInput, 1, aEndPointInput - 1);
              --PRINT 'aParent is ' + CONVERT (NVARCHAR, aParent)
              aStrPipeSepValsInput := INSTR (aStrPipeSepValsInput, LENGTH (aStrPipeSepValsInput) - aEndPointInput);
              INSERT INTO TmpParent (ColID) VALUES (aParent);
         END;
         END LOOP;
    END;
    END IF;
    SELECT hkc.TableID, hkc.Name, hkct.ColumnTypeName
    INTO aTableID, aName, aColType
    FROM TSORADB.HKColumns hkc
    INNER JOIN TSORADB.HKColumnType hkct on hkc.ColTypeID = hkct.ColumnTypeID
    WHERE hkc.ColumnID = aColumnID;
    IF aColType in ('PK','PKD')
    THEN
         -- Generate Unique Path Table Start
         SELECT
         CASE WHEN FKIs3.Name is null
         THEN PKs3.Name
         ELSE FKIs3.Name
         END Name
         INTO aName
         FROM TSORADB.HKColumns PKs3
         INNER JOIN
         SELECT hkc3.TableID FROM TSORADB.HKColumns hkc3
         WHERE hkc3.ColumnID = aColumnID
         ) HKC3 ON PKs3.TableID = HKC3.TableID
         LEFT OUTER JOIN
         SELECT TableID, Name
         FROM TSORADB.HKColumns
         WHERE ColTypeID = aFKIColTypeID
         ) FKIs3 ON PKs3.TableID = FKIs3.TableID
         WHERE PKs3.ColTypeID = aPKColTypeID AND ((aGroupID=-1 AND PKs3.GroupID IS NULL) OR PKs3.GroupID=aGroupID);     
    END IF;
    -- Insert query column itself
    aTlevel := 0;
    aParentID := 0;
    aID2 := 1;
    IF (aColType = 'ATT')
    THEN
    BEGIN
    INSERT INTO tempR(ID2, ColID, Name, Tlevel, ParentID, Processed)
    SELECT distinct aID2, TopHKCs.ColumnID as ColID, aName as Name,aTlevel as Tlevel, aParentID as ParentID, 1 as Processed
         FROM TSORADB.HKColumns TopHKCs
    WHERE TopHKCs.ColumnID = aColumnID;
    aID2 := aID2 + 1;
    aTlevel := 1;
         aParentID := aColumnID;
         -- Get the non-compound name for the parent
         SELECT
         CASE WHEN FKIs3.Name is null
         THEN PKs3.Name
         ELSE FKIs3.Name
         END Name
         INTO aName
         FROM TSORADB.HKColumns PKs3
         INNER JOIN
         SELECT hkc3.TableID FROM TSORADB.HKColumns hkc3
         WHERE hkc3.ColumnID = (SELECT ColumnID FROM TSORADB.HKColumns WHERE TableID = aTableID AND ColTypeID = aPKColTypeID)
         ) HKC3 ON PKs3.TableID = HKC3.TableID
         LEFT OUTER JOIN
         SELECT TableID, Name
         FROM TSORADB.HKColumns
         WHERE ColTypeID = aFKIColTypeID
         ) FKIs3 ON PKs3.TableID = FKIs3.TableID
         WHERE PKs3.ColTypeID = aPKColTypeID AND ((aGroupID=-1 AND PKs3.GroupID IS NULL) OR PKs3.GroupID=aGroupID);
         INSERT INTO tempR(ID2, ColID, Name, Tlevel, ParentID, Processed)
    SELECT aID2, ColumnID, aName, aTlevel, aParentID, 0
    FROM TSORADB.HKColumns
         WHERE TableID = aTableID
         AND ColTypeID = aPKColTypeID;
    aID2 := aID2 + 1;
    END;
    ELSE
    BEGIN
         INSERT INTO TmpR1(ColID, Name, Tlevel, ParentID, Processed)
         SELECT nonCompoundHks.ColumnID as ColID, aName as Name,aTlevel as Tlevel, aParentID as ParentID, 0 as Processed
         FROM TSORADB.HKColumns nonCompoundHks
         WHERE nonCompoundHks.Name = aName --lower(nonCompoundHks.Name) = lower(aName)
         AND ((aGroupID=-1 AND nonCompoundHks.GroupID IS NULL) OR nonCompoundHks.GroupID=aGroupID)
         AND nonCompoundHks.ColTypeID = aPKColTypeID
         AND EXISTS
              select ColumnID
              From TSORADB.HKColumns hkc4
              WHERE hkc4.TableID = nonCompoundHks.TableID
              AND (hkc4.ColTypeID = aFKDColTypeID OR hkc4.ColTypeID = aFKDSColTypeID)
         AND NOT EXISTS
              select ColumnID
              From TSORADB.HKColumns hkc5
              WHERE hkc5.TableID = nonCompoundHks.TableID
              AND hkc5.ColTypeID = aFKIColTypeID
              AND ((aGroupID=-1 AND hkc5.GroupID IS NULL) OR hkc5.GroupID=aGroupID)
         INSERT INTO TmpR1(ColID, Name, Tlevel, ParentID, Processed)
         SELECT compoundPk.ColumnID as ColID, aName as Name,aTlevel as Tlevel, aParentID as ParentID, 0 as Processed
         FROM TSORADB.HKColumns compoundPk
         INNER JOIN TSORADB.HKColumns compoundHkc on compoundHkc.TableID = compoundPk.TableID AND compoundHkc.ColTypeID = aFKIColTypeID
    INNER JOIN (
              SELECT hkc.ColumnID
              FROM TSORADB.HKColumns hkc
              WHERE hkc.ColTypeID = aPKColTypeID
              AND hkc.Name = aName --lower(hkc.Name) = lower(aName)
              AND ((aGroupID=-1 AND hkc.GroupID IS NULL) OR hkc.GroupID=aGroupID)
              AND NOT EXISTS
              select ColumnID
              From TSORADB.HKColumns hkc2
              WHERE hkc2.TableID = hkc.TableID
              AND (hkc2.ColTypeID = aFKDColTypeID OR hkc2.ColTypeID = aFKDSColTypeID)
              AND ((aGroupID=-1 AND hkc2.GroupID IS NULL) OR hkc2.GroupID=aGroupID)
    ) Indys ON Indys.ColumnID = compoundHkc.ForeignKey
         WHERE compoundPk.ColTypeID = aPKColTypeID;
         INSERT INTO tempR(ID2, ColID, Name, Tlevel, ParentID, Processed)
         SELECT ID2, ColID, Name, Tlevel, ParentID, Processed FROM TmpR1;
         FETCH FROM aCurVar1 INTO aColID, aName, aTlevel, aParentID, aProcessed
         WHILE aafetch_status = 0
         BEGIN     
              IF(aParents is null or EXISTS (SElECT ColID FROM aTmpParent WHERE ColID = aColID) )
              BEGIN
                   INSERT INTO tempR(ID2, ColID, [Name], Tlevel, ParentID, Processed) VALUES(aID2, aColID, aName, aTlevel, aParentID, aProcessed)
                   SET aID2 = aID2 + 1
              END
              FETCH NEXT FROM aCurVar1 INTO aColID, aName, aTlevel, aParentID, aProcessed
         END
         CLOSE aCurVar1 */
    END;
    END IF;
         begin
         SELECT COUNT(*) INTO aNumTempDoc FROM tempR WHERE Processed = 0 and Tlevel < 1;
         end;
    WHILE aNumTempDoc > 0
    LOOP
    BEGIN
    -- Get current row
         SELECT ID1, ID2, ColID, Name, Tlevel, ParentID
         INTO aID1, aID2, aColID, aName, aTlevel, aParentID
         FROM tempR
         WHERE Processed = 0 AND ROWNUM = 1
         ORDER BY ID1;
    UPDATE tempR SET processed = 1 WHERE ID1 = aID1;
    aPreID2 := aID2;
    -- Get why parents
    declare CURSOR aCurVar1 IS --SELECT * FROM TSORADB.HKColumns;
         SELECT distinct FKDPKs.ColumnID as ColID,
              CASE WHEN FKDFKI.NAME is null
              THEN FKDPKs.Name
              ELSE FKDFKI.Name
              END Name,
         (aTlevel+1) as Tlevel,
         PREHKCs.ColID AS ParentID,
         0 as Processed
         FROM TSORADB.HKColumns FKDPKs
         INNER JOIN
         TSORADB.HKColumns FKDFKs ON FKDPKs.ColumnID = FKDFKs.ForeignKey
    INNER JOIN
         TSORADB.HKColumns FKDFKs2 ON FKDFKs2.TableID = FKDFKs.TableID
         INNER JOIN
         tempR PREHKCs ON PREHKCs.ColID=aColID AND PREHKCs.ColID = FKDFKs2.ColumnID AND PREHKCs.Tlevel=aTlevel
         LEFT OUTER JOIN
         SELECT TableID, Name, GroupID
         FROM TSORADB.HKColumns
         WHERE ColTypeID = aFKIColTypeID
         ) FKDFKI ON FKDFKI.TableID = FKDPKs.TableID
         INNER JOIN TSORADB.HKColumnType ON FKDPKs.ColTypeID=HKcolumnType.ColumnTypeID
         WHERE FKDPKs.ColTypeID=aPKColTypeID AND FKDPKs.ColumnID <> aColumnID
         AND FKDFKs.ColTypeID=aFKDColTypeID
    AND ((aGroupID=-1 AND FKDPKs.GroupID IS NULL) OR FKDPKs.GroupID=aGroupID);
         BEGIN
    OPEN aCurVar1;
    aCount := 1;
    SELECT MAX(ID2) INTO aID2 FROM tempR;
    LOOP
         FETCH aCurVar1 INTO aColID, aName, aTlevel, aParentID, aProcessed;
         Exit when aCurVar1%NOTFOUND; -- Exit the loop when no more rows are found.
    --WHILE aafetch_status = 0
    BEGIN
    IF (aCount = 1) -- The first Why Parent
              THEN
                   INSERT INTO tempR(ID2, ColID, Name, Tlevel, ParentID, Processed) VALUES(aPreID2, aColID, aName, aTlevel, aParentID, 0);
    ELSE -- The multiple Why Parents
    BEGIN
                   aID2 := aID2 + 1;
    -- Copy the previous parent with increased ID2
    INSERT INTO tempR(ID2, ColID, Name, Tlevel, ParentID, Processed) SELECT aID2 as ID2, ColID, Name, Tlevel, ParentID, 1 AS Processed FROM tempR WHERE ID1 <= aID1 AND ID2 = aPreID2;
    -- Insert the new why parent
    INSERT INTO tempR(ID2, ColID, Name, Tlevel, ParentID, Processed) VALUES(aID2, aColID, aName, aTlevel, aParentID, 0);
    END;
    END IF;          
    aCount := aCount + 1;
              --FETCH NEXT FROM aCurVar1 INTO aColID, aName, aTlevel, aParentID, aProcessed;
    END;
         END LOOP;
    CLOSE aCurVar1;
         END;
         SELECT COUNT(*) INTO aNumTempDoc FROM tempR WHERE Processed = 0 and Tlevel < 1;
    END;
    END LOOP;
    -- Generate Unique Path Table End
    RETURN;
    EXCEPTION when NO_DATA_FOUND then null;
    END;
    The table which is returned to the SProc is used in the following way, (MSSQL code, as am yet to migrate). Basically using some of the returned column values along with DB values to populate a second temp table
    INSERT INTO #TmpR1 SELECT * FROM QueryCurrentWhy(@ColumnID, @GroupID, @Parents)
    SET @Tlevel = 1
    INSERT INTO @R
    SELECT HKColumns.Columnid as ColID, HKColumns.Tableid as TblID, R1.Name as [Name], HKColumns.NounID AS KeyCompA, R1.ParentID AS KeyCompB, HKColumns.ColTypeID as ColTypeID, ColumnTypeName as ColType, 0 as HasWhats,
    CASE WHEN R2.ColID is null
    THEN 0
    ELSE 1
    END HasWhyParent,
    0 as IsSelected
    FROM HKColumns
    INNER JOIN #TmpR1 AS R1
    ON HKColumns.ColumnID = R1.ColID AND R1.Tlevel=@Tlevel
    INNER JOIN HKColumnType
    ON HKColumns.ColTypeID=HKcolumnType.ColumnTypeID AND HKColumns.ColTypeID=@PKColTypeID
    LEFT JOIN #TmpR1 AS R2
    ON R2.ID2 = R1.ID2 AND R2.Tlevel=@Tlevel+1 AND R2.ParentID=R1.ColID

  • Newbie help needed w/Graphics class!

    Hi everyone,
    I'm stuck on something I know is very simple to do, but I can't seem to find the right combination. I have a derived class that draws a circle using the graphics class. I'm getting compilation errors when I try to set the color and draw the circle. I have looked thru these forums as well as the API. Below is my code. Any pointers would be highly appreciated!
    import java.awt.Graphics;
    public class SmartCircle extends SmartShape
    SmartCircle(int first, int second, int third, Color c)
    super(first, second, third, c);
    public void draw(Graphics g)
    setColor(Color c);
    fillOval(first, second, size, size);
    }

    Here is SmartShape. It is located in the same directory as SmartCircle, so therefore doesn't need to be imported, correct?
    public abstract class SmartShape
    //define instance variables
    protected int positionX, positionY, size;
    protected Color theColor;
    public SmartShape()
         //initialize variables
         positionX = 20;
         positionY = 20;
         theColor = Color.white;
    public SmartShape(int first, int second, int third, Color c)
         if (first >= 0)
         positionX = first;
         else
         positionX = 0;
         if (second >= 0)
         positionY = second;
         else
         positionY = 0;
         if (third >= 0)
         size = third;
         else
         size = 0;
         theColor = c;
    public abstract void draw(Graphics g);
    Hope that helps!
    Melissa

  • Help Needed - 2 graphics cards

    I just bought a Radeon ATI 1900 G5 edition online for my PowerMac G5. I already have a GeForce 7800GT as the primary card but I thought the new card would double the performance. I also thought installation would be as simple as popping in the new card. Obviously I should've done my homework a little better.
    Each card seems to need the extra power connection from the motherboard, but as far as I can tell, there is only one power cord.
    What to do?
    I run FCP5, Photoshop, and AfterEffects and I want as much graphics horse-power as the G5 will give me.
    Is it possible to have both of these cards installed?
    Advisable?
    If so, how do I do it? Can one of them run without the external power cord? I assume I would use slots 1 and 3?
    Please shed some light for me. I feel silly for having bought the card as it seems it may not help my situation. The customer service guy gave me the impression it was going to work fine.
    Anyway, please give me some feedback soon if possible as I'm anxious to try out the new set-up.
    Many thanks
    S

    So you're saying that two graphics cards would in no
    way boost performance in graphics apps like PS, AE,
    or FCP?
    Some PCs use multiple graphics cards with SLI to increase performance, but Macs do not support this.
    That the only reason people use multiple
    cards is to have many monitors?
    Correct (at least for a Mac).
    I thought the extra VRAM would help with my rendering
    and real-time effects, no?
    The extra VRAM is on a different card, and without SLI to connect the cards, there is no way it can be used.
    Ever heard of anyone somehow using two cards?
    Not two high power cards,
    Do they make a splitter for the power connection?
    No. You would have to make your own. It wouldn't be too hard to splice two power cables.
    Or is it risky to have two cards running for power reasons?
    The total power consumption would probably be OK, but only slot 1 is rated for high power cards, and the auxiliary power was only planned for one card
    Or could the NVIDIA run without the power connection from slot 3?
    No. It can't even do that in slot 1, which provides a lot more power than slot 3.
    I have no other PCI cards in there so I would run two
    if there was any benefit to be had.
    With no other cards, there is probably enough power, but it is spread over the low power slots 2, 3, and 4.
    But I am only using two 23" monitors so maybe there isn't.
    The extra card would just be using power and producing heat.

  • Your help needed converting video to digital

    How do I convert video to digital using a G4 Powerbook, Canopus 300 & Imovie HD 6.0.4.
    Steps needed, please.
    I have VCR, G4 Powerbook, Canopus ADVC 300 and Ilife 08 and/or Imovie HD6.0.4.
    Another poster said I needed to purchase Ilife 08 to make it work, but after the software arrived, it required G5 hardware to fully install. Not happy with that.
    Is there a workaround? Please advise.

    Assuming that you have VHS tapes that you want to convert to digital to use in iMovie? Is that correct? If so, you can find helpful information in these threads:
    http://discussions.apple.com/thread.jspa?messageID=7138598&#7138598
    An older MacWorld article with step by step instructions:
    http://www.macworld.com/article/30972/2004/05/fromvhstodvd.html
    If you are trying to do something else, please post back.

  • Help needed, corrupted graphics all system

    Hello
    I need help, I have a mac pro 2008, and since some time I am experiencing corrupted graphics all over the system. The computer starts operating properly, suddenly, and looks like when I start using graphics intensice application, such as after effects, I get graphics corrupted on finder, pictures, the programs etc to a point where not even thumbnails show up properly. Restarting solves the problem however not for long.
    Now I now this theoretically and the most obvious answer "is the graphic card" however I have changed the whole computer, different mac, different and new graphics card and I get the same problem. Even the RAM is different however the problem persist. The only thing that was carried from the older mac was the hard drives. The OS is the latest version of 10.10 and this problem was also with the earlier 2 versions, mountain lion and Mavericks.
    Please look at the screenshots I am providing, evidently this is a software issue otherwise it would have been fixed after I changed mac.
    Anybody has any idea what the problem could be?
    Any help would be appreciated.

    Yes, but the thing is that those corrupter graphics also make it onto a video that I do, for example. so its not a screen issue, you see what I mean? like 2 days ago I was making a video in after effects and premiere and those corrupted issues made it onto the rendered video, the pixelated things.

  • Help need Convert SWF to AVI Video

    Hi plz help
    I have made presentation in flash cs4. I have one main file Index & loading rest all the files through LoadMovie.
    I  want to convert my presentation into AVI for video but when i export it  in avi so it converts in AVI but its not taking the file which m  loading externally & not even converting the movie clip.
    so please help me i want to convert my presentation SWF files to AVI.
    If anyone knows the free converter tool so plz tell me.
    Thanx

    I found a utility the other day that captures SWF playing.
    My flash pieces were to complex to use the Export too.
    Here's just one utility out there.
    iWisoft Flash SWF to Video Converter

  • Re-post - Help needed converting .ai file to Fireworks png

    My client's printer has taken another stab at sending me a
    starburst graphic
    in a full vector format.
    Iit's (allegedly) in Adobe Illustrator format, the same as
    the prism that
    Linda R was kind enough to convert
    for me last week.
    Can anyone spare a few minutes to look at
    http://www.nexuspoint.ca/Graphics/star.ai
    ? If it is in AI format, would you
    be kind enough convert it for me to a FW-readable png?
    Thanks in advance,
    Kathie

    Linda has fixed me up!
    K
    "Kathie McLaughlin" <[email protected]>
    wrote in message
    news:gnf5fk$61g$[email protected]..
    > My client's printer has taken another stab at sending me
    a starburst
    > graphic in a full vector format.
    > Iit's (allegedly) in Adobe Illustrator format, the same
    as the prism that
    > Linda R was kind enough to convert
    > for me last week.
    >
    > Can anyone spare a few minutes to look at
    >
    http://www.nexuspoint.ca/Graphics/star.ai
    ? If it is in AI format, would
    > you be kind enough convert it for me to a FW-readable
    png?
    >
    > Thanks in advance,
    > Kathie
    >

  • Help Need in Graphical Mapping.

    Hi
    Can you do help for mapping between my file structure to BAPI structure..this is auctully  file would call BAPI for 1: N(file having various headers and line items, each header and associated line items would able to call BAPI in target side).
    Now i am just trying to do test using following map...but following error came when i am checking in IM. But when i am doing test this map in MM editor using Duplicate subtree it is working fine.
    <b>ERROR: Mapping program Message Mapping MM_request | urn:testing does not match the interface mapping. The number or frequencies of source or target messages for the message mapping are not identical to the number or frequencies of source or target interfaces.</b>
    I thought some where i made wrong..!but it is difficult to find out for me! i dint find any wrong in my mapping.
    map like this:
    Sourcefilestructure:       TargetBAPI
    Messages (1:1)            Message(1:1)
    Message1(1:1)             Message1(1:1)
      MT_Request(1:1)  
       Recordset(0:U) -->     BAPI_INCOMINGINVOICE(0:U)
        HDR   (0:1)            HeaderData(1:1)
         Filed(0:1)   -->       filed1(0:1)
         Field(0:1)   -->       field2(0:2)  
                    HDR--->   GLACCOUNTDATA(0:1)
         LINEITEM(0:U)--->      item(0:U)    
           field1(0:1) --->       field(0:1)
           field2(0:1) --->       field2(0:1)
    Thanks,
    Regards
    Sankar!
    Message was edited by: Sankar

    Hi,
    You have this error message when inside your Interface Mapping you uses occurences which are NOT these one defined in your Message Mapping.
    In your Message Mapping, look at tab "Message" and keep in mind the occurence.
    Then in your Interface Mapping, do the same action and compare both occurence.
    Mickael
    Message was edited by: Mickael Huchet

  • Help needed for Graphical mapping.Tag only once produces

    Hello experts,
    I have a problem in my graphical mapping.This is the example:
    from each segment A in IDOC has to be made Tag A or Tag B in output XML.
    Segment A has a field USER_STATUS and if it is X than Tag B has to be made otherwise Tag A.
    Segment A is 0..9999999. occurence
    Tag A  0..unbounded
    Tag B 0..unbounded.
    I made a mapping
    mapping for Tag A:
    USER_STATUS -> mapwith default(empty)->length->EqualsA (with Constant =0)-> createif->Tag A
    for Tag B as following:
    USER_STATUS -> mapwith default(empty)->EqualsS (with Constant =X)-> createif->Tag B
    The problem is that in output XML, I have only one Tag A or B (depending on field USER_STATUS in first occurence of the segment) while in inbound IDOC 5 segments are with different value of the field: USER_STATUS.
    Does anyone idea to solve this problem!
    Thank you very much for your effort.
    King regards,
    Danijela Zivanovic

    HI,
    CAn you try this way,
    Use Maping Node UseOneAsMany for Tag B
    and pass 3 inputs as
    Constant[]----
    >
    USER_STATUS -> mapwith default(empty)->EqualsS (with Constant =X)----
    >
    USER_STATUS -> mapwith default(empty)->EqualsS (with Constant =X)----
    >
    Same way try for Tag A also.
    Thanks
    Swarup

  • HELP NEEDED ON GRAPHICS

    Hi Friends,
    My requirement is craete a screen identical to abap query (SQ01) where we can add tables e.g MARA,MBEW and the graphical screen shows you the table with their links to the key field. I will have certain tables with me at runtine and then i have to show all these tables on graphical screen with their key fields(check fields) linked.
    Looking fwd for your replies
    Thanks
    Arpit

    Hi Friends,
    My requirement is craete a screen identical to abap query (SQ01) where we can add tables e.g MARA,MBEW and the graphical screen shows you the table with their links to the key field. I will have certain tables with me at runtine and then i have to show all these tables on graphical screen with their key fields(check fields) linked.
    Looking fwd for your replies
    Thanks
    Arpit

  • Help needed (converting string to double)

    keep getting an error someone give me a hint
    public class q1d
        public static void main(String [] args)
            String whats;
            double x;
            x = (String)whats;
            System.out.println(+x);
    }

    Then study this tutorial
    http://java.sun.com/docs/books/tutorial/
    Specifically, this part
    http://java.sun.com/docs/books/tutorial/java/data/index.html
    You need some basic knowledge. These forums are not suitable for teaching Java. The tutorial is.

  • Help needed with graphics cards....

    I'm looking to buy final cut studio 2 for my G5 Dual 1.8, i was recommended the AGP X800 Radeon graphics card, which is great!.... but. Getting hold of one is another story, as from what I've been told the company has been out of stock for 8 months, and it's really the only option in upgrading my machine.
    So... I'm guessing I only have one option in terms of being able to use final cut studio, and that's to buy a more up to date machine, a mac pro. Which i don't mind doing. But will the graphics card supplied, ie a 256MB NVIDIA GeForce 7300 GT, be enough for video work? i wouldnt be running any games, nor would I be dealing with colour, as i only shoot in black and white, it's more for motion. If it wouldn't suffice, can you recommend a decent graphics card for a Dual Core Intel Xeon 2.66GHz mac pro, which is probably what i'd go for.
    Thanks!
    Phil

    For Final Cut Studio yu'd be mad not to upgrade to the ATi X1900 XT. The standard Nvidia 7300 GT just won't cut it.

Maybe you are looking for

  • How to set up multiple monitors on a MacBook Pro

    Does anyone know how I might be able to set up more than one monitor to my MBP? Is there a splitter available, or some other means of connecting additional monitors? Any advice would be appreciated. Thanks!

  • Tag transfer from Adobe Photoshop Album Starter Edition 3.2 to new elements

    Ok my wife has been using Adobe Photoshop Album Starter Edition 3.2 for als long as I can remember and I have manage to transfer the tags and everything else once before but I dont think I can do it again. I am about to buy and new computer, I am pre

  • CreativeCloud.exe doesn't work anymore. It seens to be not activated in the system tray.

    Hello and sorry for my english. My name is Jean-Pierre BRETHES and I have a problem with the creativecloud.exe program which doesn't want anymore to start. (since a while now) The icon in the system tray doesn't appear and it still to be gray (not re

  • Paying too much?

    Does anyone else feel like they are paying too much? I have been with Verizon for 3 years now and my bill for 5 people is about $300 a month. I called to see if I could get any sort of lower rate for being a customer for so long and I was given the o

  • Form: Expand/Contract Sections - My AS3 Code is running wild.. need advice

    This question is related to: CS5 FLASH + AS3 Hello,  I am simply trying to mimic the collapse/expand functionality in the following link: http://static.geewax.org/checktree/index.html The form itself does not need to be functional.  This is my first