Help with output to 2 CSV files

I created a script to parse through AD and output a list of computers that have certain info in the description field and it is working (wouldn't mind some critique if things could be done a better/faster way).  Now, what I am trying to do is split
the output into 2 CSV files based on what is in the $descwho variable.  But I am not sure where to start (not looking for someone to rewrite the script but point me in the right direction).  I have tried a couple things but so far I have not gotten
anywhere.
Function Get-ScriptDirectory {
if($hostinvocation -ne $null) {
Split-Path $hostinvocation.MyCommand.path
} else {
Split-Path $script:MyInvocation.MyCommand.Path
#Variable that provides the location of the script
[string]$ScriptDirectory = Get-ScriptDirectory
Function Clean-OU {
#clean OU removes FQDN/RootOU from the start and $computername from the end of the OU string
Param (
$OriginalOU,
$computer
$ouArray = $OriginalOU.split("/")
$newOU = $null
Foreach ($OU in $ouArray) {
If (($ou -ne "FQDN") -and ($ou -ne "RootOU") -and ($ou -ne $computer)){
If (!$newOu) {
$newOU = ".../$ou"
} Else {
$newOU += "/$ou"
return $newOU
$path = "$ScriptDirectory\ad_report_2.csv" #path to where report is saved
Get-ADComputer -Filter * -Properties Description,Enabled,MemberOf,CanonicalName | % {
$computer = $_.Name #name of computer
$desc = $_.Description #description field associated with computer
$DistinguishedName = Clean-OU -OriginalOU $_.CanonicalName -Computer $computer #FQDN/RootOU/PROD/WIN7/64bit/LT/PF-123456
# is PC in the SpecialGroup security group?
If ($_.memberof -match "SpecialGroup"){[string]$memberOf = "SpecialGroup"}else{$memberOf = "N/A"}
If ($desc){#if Desc = true
If (($desc.StartsWith("AEHT")) -or ($desc.StartsWith("VF-")) -or ($desc.StartsWith("Disabeled:"))) {
$descArr = $desc.Split(":").Trim()
$descWho = $descArr[0]
$description = $descArr[1]
$dwTemp = $descArr[2]
If ($dwTemp -match "\[IT Support\]"){$dwPrefix = "IT Support"}
elseif($dwTemp -match "\[App Dev\]"){$dwPrefix = "App Dev"}
elseIf($dwTemp -match "\[Business\]"){$dwPrefix = "Business"}
$dwTemp = $dwTemp -replace "\[IT Support\]" -replace "\[App Dev\]" -replace"\[Business\]"
$descWhen = "$dwPrefix - $dwTemp"
Write-Host $Computer -NoNewline
#Write-Host - $memberOf -NoNewline
#Write-Host - $enabled -NoNewline
Write-Host - $descWho -NoNewline
Write-Host - $description -NoNewline
Write-Host - $descWhen -NoNewline
Write-Host
$Record = @{"Computer" = $Computer}
$record.add("DescByWho",$descWho)
$record.add("Description",$description)
$record.add("DescWhen",$descWhen)
$record.add("OU",$DistinguishedName)
$record.add("MemberOf",$memberof)
New-Object PSObject -Property $record |Sort-Object -Property DescByWho | Select Computer, DescByWho, Description, DescWhen, MemberOf, OU
} | export-csv -path $path -NoTypeInformation

Hi Mike,
If you want to divide the output to two csv files based on the variable $descWho, please refer to this script, please also note I havn't tested:
#modify
$path1 = "$ScriptDirectory\ad_report_1.csv" #path to where report is saved
$path2 = "$ScriptDirectory\ad_report_2.csv" #path to where report is saved
$output1=@()
$output2=@()
#modify
Get-ADComputer -Filter * -Properties Description,Enabled,MemberOf,CanonicalName | % {
$computer = $_.Name #name of computer
$desc = $_.Description #description field associated with computer
$DistinguishedName = Clean-OU -OriginalOU $_.CanonicalName -Computer $computer #FQDN/RootOU/PROD/WIN7/64bit/LT/PF-123456
# is PC in the SpecialGroup security group?
If ($_.memberof -match "SpecialGroup"){[string]$memberOf = "SpecialGroup"}else{$memberOf = "N/A"}
If ($desc){#if Desc = true
If (($desc.StartsWith("AEHT")) -or ($desc.StartsWith("VF-")) -or ($desc.StartsWith("Disabeled:"))) {
$descArr = $desc.Split(":").Trim()
$descWho = $descArr[0]
$description = $descArr[1]
$dwTemp = $descArr[2]
If ($dwTemp -match "\[IT Support\]"){$dwPrefix = "IT Support"}
elseif($dwTemp -match "\[App Dev\]"){$dwPrefix = "App Dev"}
elseIf($dwTemp -match "\[Business\]"){$dwPrefix = "Business"}
$dwTemp = $dwTemp -replace "\[IT Support\]" -replace "\[App Dev\]" -replace"\[Business\]"
$descWhen = "$dwPrefix - $dwTemp"
Write-Host $Computer -NoNewline
#Write-Host - $memberOf -NoNewline
#Write-Host - $enabled -NoNewline
Write-Host - $descWho -NoNewline
Write-Host - $description -NoNewline
Write-Host - $descWhen -NoNewline
Write-Host
$Record = @{"Computer" = $Computer}
$record.add("DescByWho",$descWho)
$record.add("Description",$description)
$record.add("DescWhen",$descWhen)
$record.add("OU",$DistinguishedName)
$record.add("MemberOf",$memberof)
#modify
New-Object PSObject -Property $record
if($descWho -like "a*"){ #use if statement to filter the $descwho begin with "a" character
$output1+=New-Object PSObject -Property $record}
else{
$output2+=New-Object PSObject -Property $record}
$output1|Sort-Object -Property DescByWho | Select Computer, DescByWho, Description, DescWhen, MemberOf, OU|export-csv -path $path1 -NoTypeInformation
$output2|Sort-Object -Property DescByWho | Select Computer, DescByWho, Description, DescWhen, MemberOf, OU|export-csv -path $path2 -NoTypeInformation
Best Regards,
Anna Wang

Similar Messages

  • Elements 8 -help with outputting slide shows to File?

    Can anyone help with saving a slide show in created in Elements to a file on my laptop? I know a WMV file is created, which option should I select to save in UK widescreen format 16:9?

    Bob, thanks for prompt answer.
    I am ultimately going to write the file to a DVD using Windows DVD Maker. Is the 16:9 format the DVD-PAL 720x576 option, or the High 1024x768 option?

  • How get output generated as csv file  by reading  by buffered reader and wr

    how get output generated as csv file by reading by buffered reader and writer

    String file_location = "C\temp\csv.txt");
    try {
         URL fileURL = getClass().getResource(file_location);
         if (fileURL != null){
              BufferedReader br = new BufferedReader(new InputStreamReader(fileURL.openStream()));
              String s = br.readLine();
              while (s != null)  {
                   if (!s.equals ("")) {
                        System.out.println(s);
                   s = br.readLine();
              br.close();
         else {
              // error
    catch (IOException ex){ex.printStackTrace();}rykk
    Message was edited by: a dummy
    rykk.

  • // Code Help need .. in Reading CSV file and display the Output.

    Hi All,
    I am a new Bee in code and started learning code, I have stared with Console application and need your advice and suggestion.
    I want to write a code which read the input from the CSV file and display the output in console application combination of first name and lastname append with the name of the collage in village
    The example of CSV file is 
    Firstname,LastName
    Happy,Coding
    Learn,C#
    I want to display the output as
    HappyCodingXYZCollage
    LearnC#XYXCollage
    The below is the code I have tried so far.
     // .Reading a CSV
                var reader = new StreamReader(File.OpenRead(@"D:\Users\RajaVill\Desktop\C#\input.csv"));
                List<string> listA = new List<string>();
                            while (!reader.EndOfStream)
                    var line = reader.ReadLine();
                    string[] values = line.Split(',');
                    listA.Add(values[0]);
                    listA.Add(values[1]);
                    listA.Add(values[2]);          
                    // listB.Add(values[1]);
                foreach (string str in listA)
                    //StreamWriter writer = new StreamWriter(File.OpenWrite(@"D:\\suman.txt"));
                    Console.WriteLine("the value is {0}", str);
                    Console.ReadLine();
    Kindly advice and let me know, How to read the column header of the CSV file. so I can apply my logic the display combination of firstname,lastname and name of the collage
    Best Regards,
    Raja Village Sync
    Beginer Coder

    Very simple example:
    var column1 = new List<string>();
    var column2 = new List<string>();
    using (var rd = new StreamReader("filename.csv"))
    while (!rd.EndOfStream)
    var splits = rd.ReadLine().Split(';');
    column1.Add(splits[0]);
    column2.Add(splits[1]);
    // print column1
    Console.WriteLine("Column 1:");
    foreach (var element in column1)
    Console.WriteLine(element);
    // print column2
    Console.WriteLine("Column 2:");
    foreach (var element in column2)
    Console.WriteLine(element);
    Mark as answer or vote as helpful if you find it useful | Ammar Zaied [MCP]

  • Output Data to CSV File with headers

    So I'm trying to create a powershell script that outputs a list of computers with their default printers. Here's what I have to far:
    cls
    $obj = New-Object PSObject
    $ComputerList = Import-CSV C:\test\PCList.csv
    ForEach ($Computer in $ComputerList)
        $DefaultPrinter = Get-WmiObject -Query "select * from Win32_Printer where Default=True"
        $DefaultPrinterName = $DefaultPrinter.ShareName
            $obj | Add-Member WorkstationName $Computer.Name -Force
            $obj | Add-Member DefaultPrinter $DefaultPrinterName -Force
        Write-Output -InputObject $obj | Out-File -FilePath C:\test\PCList_defaultprinter.csv -Append
    It's not formatting the CSV in a workable format. What I'd like is to have 2 columns (Workstation Name and Default Printer Name) but it's not exactly doing that.
    Any help would be greatly appreciated!!!

    Use Export-CSV instead of Out-File, as in:
    cls
    $obj = New-Object PSObject
    $ComputerList = Import-CSV C:\test\PCList.csv
    ForEach ($Computer in $ComputerList)
    $DefaultPrinter = Get-WmiObject -Query "select * from Win32_Printer where Default=True"
    $DefaultPrinterName = $DefaultPrinter.ShareName
    $obj | Add-Member WorkstationName $Computer.Name -Force
    $obj | Add-Member DefaultPrinter $DefaultPrinterName -Force
    $obj | Export-Csv -Path C:\test\PCList_defaultprinter.csv -NoTypeInformation -Append
    Sam Boutros, Senior Consultant, Software Logic, KOP, PA http://superwidgets.wordpress.com (Please take a moment to Vote as Helpful and/or Mark as Answer, where applicable) _________________________________________________________________________________
    Powershell: Learn it before it's an emergency http://technet.microsoft.com/en-us/scriptcenter/powershell.aspx http://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx

  • Help with carrage return in csv output

    Hey guys,
    Running Oracle rep 6i. Running a report through developer with the following sys param values set:
    desformat=DELIMITED
    desname=c:\mydev\test.csv
    destype=file
    When I open the .csv file in excel I have a carrage return('box') at the end of of the last cell on each line. Any work arounds for this? Here is my code:
    SELECT 'Jurisdiction,Entry Updated,Entry By,Regulator,Cite,Project Manager,Priority,Effective DATE,Item,DATE OF INTO,Legislative Status,Applicable NASD RULES,Summary,Impact' cl_rec,
    ' 'jurisdiction, to_date('01-JAN-1980','DD-MON-YYYY') entry_upd
    FROM DUAL
    UNION
    SELECT
    cl.JURISDICTION||','||
    cl.ENTRY_UPD||','||
    cl.ENTRY_BY||','||
    cl.REGULATOR||','||
    cl.CITE||','||
    cl.PROJ_MJR||','||
    cl.PRIORITY||','||
    cl.EFF_DATE||','||
    cl.ITEM||','||
    cl.DT_OF_INTRO||','||
    cl.LEG_STATUS||','||
    cl.NASD_RULES||','||
    cl.SUMMARY||','||
    cl.IMPACT,cl.jurisdiction,cl.entry_upd
    FROM
    comp_legmon cl WHERE TO_CHAR(entry_upd,'mmyyyy')=TO_CHAR(SYSDATE,'mmyyyy')
    ORDER BY jurisdiction, entry_upd

    Please help any ideas?

  • Output in a *.csv-File via text_io writes some lines twice

    Hello
    I wrote a report which returns the result in the previewer and in a *.csv-File. Now I have a problem with the datas in the *.csv-file: The first datarow on the second page (in the previewer) is in the *.csv-file listed twice.
    The putfile-statement is in the format-trigger at the repeating-frame. I think the trigger is executed in the first page before the page break. Then the report notice that there is no more place. The page break will be done and after that the trigger is executed again.
    How can I get a right listing? Could anybody help me?
    Thanks
    Inge

    hello,
    you might want to check out the enhancement introduced with the latest patch. we have introduced a new output format DELIMITEDDATA that allows you to create "real" csv output (header on top, regular data, ...)
    regards,
    philipp

  • Subquery results need help with output

    Requirements:
    There is request to dump every day’s data from one table into text file.
    Tables:INSPECTION_RESULTS
    NJAS
    Primary Key: RES_SYS_NO
    Parent table: INSPECTION_RESULTS
    Child table: NJAS
    Purpose:
    1. obtain output results for the MIN and MAX RES_SYS_NO from INSPECTION_RESULTS table for yesterday’s date.
    2. Create comma delimited file for following columns using above table data output.
    Script thus far:
    SELECT NJA_RES_SYS_NO||','||NJA_TEST_REC_NO||','||NJA_LIC_ST_ID||','||NJA_ETS_ID||','||NJA_SW_VER||','||NJA_TECH_ID||','||NJA_VIN||','||NJA_LIC_NO||','
    ||NJA_LIC_JUR||','||NJA_LIC_SRC||','||NJA_MODEL_YR||','||NJA_MAKE||','||NJA_MODEL||','||NJA_VHCL_TYPE||','||NJA_BODY_STYLE||','||NJA_CERT_CLASS||','||
    NJA_GVWR||','||NJA_ASM_ETW||','||NJA_ETW_SRC||','||NJA_NO_OF_CYL||','||NJA_ENG_SIZE||','||NJA_TRANS_TYPE||','||NJA_DUAL_EXH||','||NJA_FUEL_CD||','
    || NJA_VID_SYS_NO||','|| NJA_VRT_REC_NO||','|| NJA_ARMSTDS_REC_NO||','|| NJA_RSN_F_N_TESTABLE||','|| NJA_DYNO_TESTABLE||','||
    NJA_CURR_ODO_RDNG||','|| NJA_PREV_ODO_RDNG||','|| NJA_PREV_TEST_DT||','|| NJA_TEST_TYPE||','||
    NJA_TEST_START_DT||','|| NJA_TEST_END_TIME||','|| NJA_EMISS_TEST_TYPE||','|| NJA_TEST_SEQ_NO||','
    ||NJA_LOW_MILE_EXEMP||','||NJA_TIRE_DRY||','|| NJA_REL_HUMID||','|| NJA_AMB_TEMP||','||NJA_BAR_PRESS||','|| NJA_HCF||','||
    NJA_GAS_CAP_ADAP_AVL||','|| NJA_GAS_CAP_REPL||','|| NJA_OVERALL_GAS_CAP_RES
    FROM NJAS
    WHERE NJA_RES_SYS_NO IN (SELECT MIN(NJA_RES_SYS_NO) FROM INSPECTION_RESULTS WHERE NJA_RES_SYS_NO IN
    (SELECT MAX(NJA_RES_SYS_NO) FROM INSPECTION_RESULTS, (SELECT SYSDATE-1 FROM DUAL))
    It works but not sure if I am getting accurate results. Can anyone help me fine tune this subquery script? Thanks!
    Scott

    Duplicate post
    See my answer in your other posting here Re: need help with script

  • Issue with spooling data to csv file

    Hi,
    I am trying to spool a table data to csv file using spool command in command prompt. and its spooling around thousand records.
    I am able to see all the thousnad records on dos prompt while spooling happening.
    Instwead of that, is there any other way that will stop printing output on dosprompt rather it will spool directly to csv file?
    Please help me...
    Thanks,
    Ravi.

    user10403630 wrote:
    Thanks for all your suggestions...
    I have tried a sample script which does have only set termout off and its working fine...
    but my script is having some thing like below
    SET ESCAPE ON
    SET SERVEROUTPUT ON
    SET ECHO OFF
    SET HEADING ON
    SET COLSEP ','
    SET FEEDBACK OFF
    SET PAGESIZE 0
    SET LINESIZE 5000
    SET TRIMSPOOL OFF
    SET TERMOUT OFF
    This is not working...
    I believe something is trying to overwrite the functionalilty of set termout off in this case
    Please help me,....So go to the SQL*Plus reference manual and read up on each of the SET options you listed above . . .

  • Help with exporting Deski to text file via Web Intelligence

    We are currently converting from BO version 5 to BO XI rev2. I have a report that must be scheduled to a flie in plain text format. I am using a deski report. When I save as to text, the file is fine. When I schedule it in webi, the file seems to be missing the end of line character for each row in the table, so it cannot be used for an import to another program. Can anybody help with this?-

    well, in that case you need to determine if this issue only happens with a perticular report or all of them, if it happens only with reports imported from 5.x or with newly created reports as well.
    Looks like it is happening only when report is exported from Infoview, not in the Deski client. This might indicate a problem at the Web Apllication server (tomcat or one you use).
    If this issue is happening with any report - it might be a bug. In that case you have no options as there are no more patches for XIR2.
    On the other hand - if all you need is to extract data for consumption in another tool , why not use Data integrator instead ?
    Also, if this desn't work in Deski - does it work if you convert your reports to webi and export from those ?

  • Is there a way to name the .indd files created by a data merge with values in the CSV file

    I have a data merge document that is set to single Record per Document page and 1 page per document.  In my CSV file I have a field for Part Number.  If I run a data merge with 10 records I end up with 10 .indd files.  I need a way so that the resulting .indd files are named the same value that is in the Part Number field.

    Loic has provided a link for my original piece, and I've written up some follow-up pieces for indesignsecrets.com:
    http://indesignsecrets.com/data-merging-individual-records-separate-pdfs.php
    http://indesignsecrets.com/data-merging-individual-records-separate-pdfs-part-2-scripting. php
    So there are several ways to get unique name PDFs from an indesign Data Merge. However, none of these 3 articles will truly answer your question of how to get unique indesign filenames using the database. I can see a practical purpose for this as merging business cards directly to PDFs is great, but I can be guaranteed that while on proof, there will be alts to the business cards that need to be done outside the merge, meaning specific records need to be exported to indesign files for further manipulation.

  • Help with Photo Gallery using XML file

    I am creating a photo gallery using Spry.  I used the Photo Gallery Demo (Photo Gallery Version 2) on the labs.adobe.com website.  I was successful in creating my site, and having the layout I want.  However I would like to display a caption with each photo that is in the large view.
    As this example uses XML, I updated my file to look like this:
    <photos id="images">
                <photo path="aff2010_01.jpg" width="263" height="350" thumbpath="aff2010_01.jpg" thumbwidth="56"
                   thumbheight="75" pcaption="CaptionHere01"></photo>
                <photo path="aff2010_02.jpg" width="350" height="263" thumbpath="aff2010_02.jpg" thumbwidth="75"
                   thumbheight="56" pcaption="CaptionHere02"></photo>
                <photo path="aff2010_03.jpg" width="350" height="263" thumbpath="aff2010_03.jpg" thumbwidth="75"
                   thumbheight="56" pcaption="CaptionHere03"></photo>
    </photos>
    The images when read into the main file (index.asp) show the images in the thumbnail area and display the correct image in the picture pain.  Since I added the pcaption field to the XML file, how do I get it to display?  The code in my index.html file looks like this:

    rest of the code here:
            <div id="previews">
                <div id="controls">
                    <ul id="transport">
                        <li><a href="#" class="previousBtn" title="Previous">Previous</a></li>
                        <li><a href="#" class="playBtn" title="Play/Pause" id="playLabel"><span class="playLabel">Play</span><span class="pauseLabel">Pause</span></a></li>
                        <li><a href="#" class="nextBtn" title="Next">Next</a></li>
                    </ul>
                </div>
                <div id="thumbnails" spry:region="dsPhotos" class="SpryHiddenRegion">
                    <div class="thumbnail" spry:repeat="dsPhotos"><a href="{path}"><img alt="" src="{thumbpath}"/></a><br /></div>
                    <p class="ClearAll"></p>
                </div>
            </div>
            <div id="picture">
                <div id="mainImageOutline"><img id="mainImage" alt="main image" src=""/><br /> Caption:  {pcaption}</div>
            </div>
            <p class="clear"></p>
        </div>
    Any help with getting the caption to display would be greatly appreciated.  The Caption {pcaption} does not work,

  • Exporting Numbers file with leading zeros as csv file

    When I export a list of mobile phone numbers with leading zeros (086* etc.) from Numbers as a csv file, the leading zeros are stripped out, although the cells are previously formatted as text. What can I do about this?

    "When I export a list of mobile phone numbers with leading zeros (086* etc.) from Numbers as a csv file, the leading zeros are stripped out, although the cells are previously formatted as text. What can I do about this?"
    Well, the first thing you could do would be to post your question in one of the forums for Numbers.
    Click Discussions to get to the Discussions index page, then the section for the version of iWork you're using, then the Numbers forum in that section.
    In AppleWorks (which doesn't offer an opportunity to Save as or Export as csv) I'd force the application to see the phone numbers as text by inserting some non-numeric characters into the string of digits.
    Examples: 000-123-4567, 000 123 4567
    It may also be a function of the application you are using to open the csv file.
    When I did a brief test of the suggestion above with Numbers '09, I got this result on opening the file in Text Edit:
    ,1234567890,num
    ,123-456-7890,tex
    ,0123456789,num
    ,012-345-6789,tex
    ,0001234567,num
    ,000-123-4567,tex
    Note that both the examples entered as a string of digits only (num) and those entered with inserted hyphens (tex) kept the leading zeroes. Cell format for the column containing the phone numbers was set to Text.
    Regards,
    Barry

  • Ideas of how to deal with a non-conforming CSV file?!

    Hi there folks,
    I've been given a CSV file of which I now wish to import into
    VizionDB --
    unfortunately all of the text fields are not surrounded by
    quotation marks
    and there's some 9,000 records in total!
    Other than going back to my client, is there anything I can
    do with said CSV
    file to correct the situation?
    Many thanks in advance, Mark ;-)

    If you want quotes around all the fields, and you currently
    have quotes around
    none of the fields, you could probably do this using
    find-and-replace in a word processor.
    Open up the CSV file with 'word' or a similar word processor.
    The important thing is that the word processor must be able to do a
    find and replace on 'special' characters, like 'return'.
    Use find and replace to:
    Replace all 'comma' characters with the sequence: quote comma
    quote
    Replace all 'return' characters with the sequence: quote
    return quote
    You should then find that your CSV text has quotes around
    every record, but you'll have an extra quote character at the very
    start and very end of the file (on separate lines), which you'll
    need to delete by hand.
    Of course, make a backup of your data first - and this won't
    work if some of your columns already have quotes, or if some of
    your fields actually use the 'comma' character inside the field
    data.
    - Ben

  • Help with editing a template flash file..

    FIRST OFF..please don't shoot the noobee..I know some folks
    don't like the templates and I appreciate that.
    I have done some reading but not a whole lot about Flash. I
    certainly don't want to BUILD a flash (not yet), but want to edit
    one that is included in a template. I only want to edit the header
    that drops down. It says The Web STudio. I, for example, want it to
    say Marks Studio.
    Ok..the temp comes with Flash/non flash.
    I open w/flash and have a 3 folders: flash, psd and html.
    -flash folder has Images, fla doc and one flash html file
    -PSD folder has 3 psd files
    -html folder has flash folder, images folder, css file and
    one single index.html file.
    I opened the flash folder and found the image.jpg I wanted to
    change to Marks studio.
    I opend the PSD and found the slice that is the same as that,
    then edited it like I want it in PSD, then saved to replace the old
    image. top1. jpg
    Still, it is the same ole one that came with the temp.
    as I said, please don't shoot the noobe. I just wanna edit
    the flash file.
    Thanks for any help.
    Mark

    You'd need Flash to edit the FLA file.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "snipingkid" <[email protected]> wrote in
    message
    news:enev5r$p8l$[email protected]..
    > Hey guys,
    >
    > I need some help with editing a flash template, I have
    the .swf, .fla, and
    > .html file of this thing, I would like however to edit
    something on it....
    > Ive
    > tried everything, I have access to photoshop and
    dreamweaver 8... Im not
    > any
    > good at it but with decent help I could get something
    done. What I would
    > like
    > to edit is just text that flies in.... I would like to
    edit the text, how
    > do I
    > do it.... Thanksj
    >

Maybe you are looking for