Help with adding music to flash file

I'm working on designing a flash file that I will upload to a
web site I'm designing. I have original music that I want to upload
to it, but the sound is coming across as garbled. I ripped the
music off a CD so the file I am importing into Flash is .wav file.
The sound is fine when run my compueter, but it sounds aweful when
I import it into Flash. Can I add a .wav file to flash, or would I
be better off using an mpeg or mp3 file? Does it matter which type
of file I use to get the best sound quality?
Once I get the correct file imported to the library, how
should I go about applying it to the flash document? Should I
simply drop it into a new group of frames like I would any other
file, or is there a better way to implement it? I am not worried
about the user having control of it, in fact, I don't want them to
be able to turn off the sound.
Any suggestions and comments would be helpful, thanks

TDW1181 wrote:
> I'm working on designing a flash file that I will upload
to a web site I'm
> designing. I have original music that I want to upload
to it, but the sound is
> coming across as garbled. I ripped the music off a CD so
the file I am
> importing into Flash is .wav file. The sound is fine
when run my compueter, but
> it sounds aweful when I import it into Flash. Can I add
a .wav file to flash,
> or would I be better off using an mpeg or mp3 file? Does
it matter which type
> of file I use to get the best sound quality?
You can add wav file to flash, even preferred over mp3 file.
> Once I get the correct file imported to the library, how
should I go about
> applying it to the flash document? Should I simply drop
it into a new group of
> frames like I would any other file, or is there a better
way to implement it? I
> am not worried about the user having control of it, in
fact, I don't want them
> to be able to turn off the sound.
The bad quality is a result of compression you use for that
sound upon export.
After import, open the library CTRL L , right click the sound
and go to properties.
Try to change the mp3 export quality, use the TEST button for
immediate try, also monitor
the increase in file size at the bottom of the screen. The
better the quality, the
larger the file will be.
Best Regards
Urami
<urami>
If you want to mail me - DO NOT LAUGH AT MY ADDRESS
</urami>

Similar Messages

  • 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
    >

  • Issues adding my Adobe Flash file into Adobe Muse

    I am having trouble with adding my Adobe Flash video into Muse. I have also tried exporting my flash file to SWF format but no success. I am not sure what other options I may have in order to incorporate flash with Muse.

    Hello Validus,
    Check these related links:
    http://forums.adobe.com/thread/1063599
    http://forums.adobe.com/thread/1168960
    Cheers
    Parikshit

  • Help with adding image onclick

    Hey everyone,
    I am making a simple game in AS3 and need help with adding an image once they have click on something.
    On the left of the screen are sentences and on the right an image of a form. When they click each sentence on the left, writing appears on the form. Its very simple. With this said, what I would like to do is once the user click one of the sentences on the left, I would like a checkmark image to appear over the sentence so they know they have already clicked on it.
    How would I go about adding this to my code?
    var fields:Array = new Array();
    one_btn.addEventListener(MouseEvent.CLICK, onClick1a);
    one_btn.buttonMode = true;
    function onClick1a(event:MouseEvent):void
        fields.push(new one_form());
        fields[fields.length-1].x = 141;
        fields[fields.length-1].y = -85;
        this.addChild(fields[fields.length-1]);   
        one_btn.removeEventListener(MouseEvent.CLICK, onClick1a);
        one_btn.buttonMode = false;
        //gotoAndStop("one")
    two_btn.addEventListener(MouseEvent.CLICK, onClick2a);
    two_btn.buttonMode = true;
    function onClick2a(event:MouseEvent):void
        fields.push(new two_form());
        fields[fields.length-1].x = 343.25;
        fields[fields.length-1].y = -85;
        this.addChild(fields[fields.length-1]);
        two_btn.removeEventListener(MouseEvent.CLICK, onClick2a);
        two_btn.buttonMode = false;
        //gotoAndStop("two")

    I don't know where you're positioning the button that should enable/disable the checkbox but for "one_btn" let's just say it's at position: x=100, y=200. Say you'd want the checkbox to be to the left of it, so the checkbox would be displayed at: x=50, y=200. Also say you have a checkbox graphic in your library, exported for actionscript with the name "CheckBoxGraphic".
    Using your code with some sprinkles:
    // I'd turn this into a sprite but we'll use the default, MovieClip
    var _checkBox:MovieClip = new CheckBoxGraphic();
    // add to display list but hide
    _checkBox.visible = false;
    // just for optimization
    _checkBox.mouseEnabled = false;
    _checkBox.cacheAsBitmap = true;
    // adding it early so make sure the forms loaded don't overlap the
    // checkbox or it will cover it, otherwise swapping of depths is needed
    addChild(_checkBox);
    // I'll use a flag (a reference for this) to know what button is currently pushed
    var _currentButton:Object;
    one_btn.addEventListener(MouseEvent.CLICK, onClick1a);
    one_btn.buttonMode = true;
    function onClick1a(event:MouseEvent):void
         // Check if this button is currently the pressed button
         if (_currentButton == one_btn)
              // disable checkbox, remove form
              _checkBox.visible = false;
              // form should be last added to fields array, remove
              removeChild(fields[fields.length - 1]);
              fields.pop();
              // clear any reference to this button
              _currentButton = null;
         else
              // enable checkbox
              _checkBox.visible = true;
              _checkBox.x = 50;
              _checkBox.y = 200;
              // add form
              fields.push(new one_form());
              fields[fields.length-1].x = 141;
              fields[fields.length-1].y = -85;
              this.addChild(fields[fields.length-1]);
              // save this button as last clicked
              _currentButton = one_btn;
         // not sure what this is
        //gotoAndStop("one")
    I'd also centralize all the click handlers into a single handler and use the buttons name to branch on what to do, but that's a different discussion. Just see if this makes sense to you.
    The jist is a graphic of a checkbox that is a MovieClip symbol in your library exported to actionscript with the class name CheckBoxGraphic() is created and added to the display list.
    I made a variable that points itself to the last clicked button, when the "on" state is desired. If I detect the last clicked button was this button, I remove the form I added and the checkbox. If the last clicked button is not this button, I enable and position the checkbox as well as add the form.
    What is left to do is handle the sitation where multiple buttons are on the screen. When a new button is pushed it should remove anything the previous button added. This code simply demonstrates clicking the same button multiple times to toggle it "on and off".

  • Help with adding a hyperlink to a button?

    We have a simple little site we built in Catalyst and everything works great. The only problem is that we cannot figure out how to add a hyperlink to one of the buttons in the animation. We simply want to be able to click on the button and go to another site (the client's Facebook page specifically). Can anyone provide some insight? Thanks!

    The message you sent requires that you verify that you
    are a real live human being and not a spam source.
    To complete this verification, simply reply to this message and leave
    the subject line intact.
    The headers of the message sent from your address are shown below:
    From [email protected] Tue Nov 03 19:08:07 2009
    Received: from mail.sgaur.hosted.jivesoftware.com (209.46.39.252:45105)
    by host.pdgcreative.com with esmtp (Exim 4.69)
    (envelope-from <[email protected]>)
    id 1N5TPy-0001Sp-J1
    for [email protected]; Tue, 03 Nov 2009 19:08:07 -0500
    Received: from sgaurwa43p (unknown 10.137.24.44)
         by mail.sgaur.hosted.jivesoftware.com (Postfix) with ESMTP id 946C5E3018D
         for <[email protected]>; Tue,  3 Nov 2009 17:08:03 -0700 (MST)
    Date: Tue, 03 Nov 2009 17:07:49 -0700
    From: Tvoliter <[email protected]>
    Reply-To: [email protected]
    To: Matthew Pendergraff <[email protected]>
    Message-ID: <299830586.358941257293283616.JavaMail.jive@sgaurwa43p>
    Subject: Help with adding a hyperlink to a button?
    MIME-Version: 1.0
    Content-Type: multipart/mixed;
         boundary="----=_Part_36702_1132901390.1257293269030"
    Content-Disposition: inline
    X-Spam-Status: No, score=-3.4
    X-Spam-Score: -33
    X-Spam-Bar: ---
    X-Spam-Flag: NO

  • Need help with adding emoji to my hubby's phone don't see it when I click on the keyboard tab

    I need help with adding emoji to my hubby's iPhone when I go to settings then the keyboard tab it's not there

    I did that bad it's not there and doesn't give me to option to click on it

  • Archive applet. Help with adding files to archive, then show.

    I need help with this applet: http://pastebin.com/589064
    The user is supposed to add, remove and open archives with text in it.
    My problem is now the highlited area in the code (the lines with the @@'s).
    This button should list all files i have added to the archive, however when i press the button, i only get a numberlisting. eg, if i have added 4 files to the archive I get: 0123
    However I want the Joptionpane to show a listing of the files in the archive.
    When I press "open" i can choose a file, press add, then open a new file, press add, and then when i click show archive, the filenames of the two files i added, should list through a Joptionpane..as you can see, i've tried, but i'm very unfamiliar with this.

    OK..i've done it
    check out http://pastebin.com/589268
    however, now i'd like to change the code, so that if i try to add to files with the same filename, the applet should show an error message..
    How do i do that, please? :-)

  • Help with adding filename to my 400 pdf files

    Hi everyone,
    Now i have 400 pdf files in my hands and i want to print them all with the filename of each files on the page. Is there anyway i can do it in one go?]
    thanks,

    Creating a Batch Sequence using Acrobat Pro -
    --| Select, from the menu bar, Advanced > Document Processing > Batch Processing
    The Batch Sequence dialog presents itself.
    --| Click the 'New Sequence' button.
    The Name Sequence dialog presents itself.
    --| Enter a name for the new sequence (e.g., "Add Watermark").
    The Edit Batch Sequence - Add Watermark dialog presents itself.
    --| Click the 'Select Commands' button.
    The Edit Batch Sequence dialog presents itself.
    The left side column lists commands; under the 'Document' folder -
    --| Select 'Add Watermark' and then click the 'Add >>' button.
    --| Click the 'Edit' button.
    The Add Watermark dialog presents itself.
    Configure as desired. Note the links "Page Range Options" (upper right) and "Appearance Options" (left side, just below center).
    You may want to use these options as part of the Watermark's configuration.
    When configuration within the Add Watermark dialog is complete, click OK.
    OK out of the Edit Sequence dialog.
    Back in the Edit Batch Sequence - Add Watermark dialog continue with configuration options as desired.
    Note: There is a square adjacent to the "Add Watermark" command that was selected.
    For unattended operation, leave this box NOT ticked.
    Clicking the 'Output Options' button provides access to a dialog from which you can choose to utilize PDF Optimizer.
    The 'Settings' button provides access to PDF Optimizer's configuration dialog.
    With all desired configuration complete, OK out of the Edit Batch Sequence - Add Watermark dialog.
    Click the 'Run Sequence' button to run a selected Batch Sequence.
    The configuration selection made for "2. Run commands on:" (in the Edit Batch Sequence - <name of sequence>) determines what you will observe next.
    It may be that Acrobat JavaScript will be needed to pull each PDF's document file name (?).
    So - Some other information associated with PDF document's file name -
    (thomp) posts at AUC:
    http://acrobatusers.com/forums/aucbb/viewtopic.php?id=7428
    http://acrobatusers.com/forums/aucbb/viewtopic.php?id=2908
    (try67) posts at AUC:
    http://acrobatusers.com/forums/aucbb/viewtopic.php?id=20725
    "Print File Name with pdf Document" thread from this Forum (an older thread, but informative).
    http://forums.adobe.com/thread/302996
    Be well...

  • Help Needed!  I have created a 13 Min Slide Show in iPhoto (iMac Mavericks) but am having problem with adding music.

    I created a 13 min Slide Show in iPhoto but have a question on adding music.  I would like to add music clips that are set to change at the beginning of certian slides so that there is a varity of music during the show rather than a continuous theme clip.  I know you can add multiple clips but can you pin them to change at a particular point in the program?  Right now the music clips just run to their time limit and the next one starts.  Isn't there a way to edit them the way it can be done in iMovie? Its frustrating to be able to create a nice slide show and not be able to manage the music background.  Any suggestions would be greatly appreciated.  Thanks.

    No, you don't have that fine grained control of the soundtrack in iPhoto. It's designed for a quick job, not a complex one.
    Alternatives to iPhoto's slideshow include:
    iMovie is on every Mac sold.
    Others, in order of price:
    PhotoPresenter  $29
    PhotoToMovie  $49.95
    PulpMotion  $129
    FotoMagico $29 (Home version) ($149 Pro version, which includes PhotoPresenter)
    Final Cut Pro X $299
    It's difficult to compare these apps. They have differences in capability - some are driven off templates. some aren't. Some have a wider variety of transitions. Others will have excellent audio controls. It's worth checking them out to see what meets your needs. However, there is no doubt that Final Cut Pro X is the most capable app of them all. You get what you pay for.

  • Help With Adding Back Up of Songs & Lists on Re-Installed iTunes v 7.0.2

    I have a portable hard drive with a back up of my 10,000 songs. I have to get my Gateway PC laptop serviced as it continues to crash, and so I will need to re-install iTunes v 7.0.2 and then add back my songs from the portable hard drive.
    I need help with a couple of questions:
    1) Is there a quicker way to add the songs back on to iTunes rather than adding individual files (for songs) and individual folders (for albums)?
    2) I have several song lists (some used to make CD's). How can these lists be backed up as well so that I do not have to re-create these lists?
    Any advice very much appreciated.

    There is a good article on backup here:
    http://discussions.apple.com/thread.jspa?messageID=1522195&#1522195
    If all your music is in the iTunes Music folder and you have room, just copy the iTunes folder to your external drive.
    This will include both your music files and the iTunes library files.
    If you music is stored in other places, you need to backup those too. When you restore you need to ensure the full path name is the same.
    Life is also much easier if you can keep exactly the same account name if you reinsall windows as the account name is part of the path to My Documents.

  • Problems with added music sound tracks

    Please Help. My music sound files added to iMovie 09 are stuck on full volume and when I close and re-open my project the sound has slightly shifted and is out of sync with the video. The project is over 1 hour long with many varied added sound effects.
    I would really appreciate any help
    Thanks
    Joe

    If you go to page 8 of this forum, you'll see that over 1,200 of us have experienced basic audio problems with iMovie 09. I guess you should pick and choose your solution from those who responded on that post...(?)

  • Need Help To Extract Logo from Flash File .swf

    I have an attached Flash file that is in
    .swf format. There is a N64 logo within this file that I'm
    trying to extract as a
    .png with a transparent background. I've been able to open
    it in a program called
    Flash Decompiler Trillix and in the sub-menus it has the
    logo listed as a frame.
    This is about as far as I have gotten and I'm stuck. Perhaps
    someone else knows how to do this a little easier. I just need to
    find a way to extra the logo that already has a transparent
    background and save it in
    .png format.
    Any help here would be hot." ;)
    Logo Flash
    File .swf

    Hello,
    I ran into a similar problem a few months ago. I have the
    Sothink Flash Decompiler and what I did was turn the SWF back into
    a FLA. I then opened it in Flash and then exported what I wanted as
    a PNG image.
    Decompilers can extract the actual image whether it be jpeg,
    gif, png, etc. But when it's listed as a frame(as you mentioned
    above) then the method above is probably the best way to get it.
    Good luck

  • 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,

  • Help with importing items into flash

    OK, I have modified a flash site to accomplish everything I
    would like except one item and this has me stumped. I have several
    "more" buttons on my site that all go to the same frame, but insert
    differnent text dependent on which "more" button is clicked
    (reference
    www.tlcbuildersllc.com).
    Everything is imported from xml functions and files.
    Here is the xml function script from one file
    (xmlFunctions.as) for the "more" buttons
    function more_click_func(number) {
    num=_root.pagesReadMoreFrame;
    currentPage=_root.link-_root.firstPageFrame;
    if(_root.link<>num and _root.animation==1) {
    _root.animation=0;
    _root.link_prev=_root.link;
    _root.menu["item" +
    getMenuPreviousLink(_root.link)].gotoAndPlay("s2");
    _root.menu2["item" +
    getMenuPreviousLink(_root.link)].gotoAndPlay("s2");
    if (number==999999) {
    sectionNum=getXmlSection(mainObj, "section",
    "privacyPolicy");
    titleNum=getXmlSection(mainObj.section[sectionNum], "item",
    "pageTitle");
    textNum=getXmlSection(mainObj.section[sectionNum], "item",
    "pageText");
    _root.readMoreTitle=mainObj.section[sectionNum]["item"][titleNum].value;
    _root.readMoreText=mainObj.section[sectionNum]["item"][textNum].value;
    else {
    sectionNum=getXmlSection(mainObj, "section", "pages");
    linkCount=checkLinkType("readMoreLink", number);
    i=0;
    linkTitleNum=getXmlSection(mainObj["section"][sectionNum]["page"][currentPage]["link"][li nkCount],
    "item", "title");
    linkTextNum=getXmlSection(mainObj["section"][sectionNum]["page"][currentPage]["link"][lin kCount],
    "item", "linkText");
    _root.readMoreTitle=mainObj["section"][sectionNum]["page"][currentPage]["link"][linkCount ]["item"][linkTitleNum].value;
    _root.readMoreText=mainObj["section"][sectionNum]["page"][currentPage]["link"][linkCount] ["item"][linkTextNum].value;
    _root.link=num;
    _root.play();
    which calls items out of another file (tfile_main.xml) with
    script like this
    <pageText><![CDATA[
    LATEST PROJECTS?
    ]]></pageText>
    <pageText><![CDATA[
    <font color="#FFFFFF">12.15.2007</font>
    text omitted to shorten post <u><font
    color="#FFFFFF"><a
    href="asfunction:_root.more_click_func,0">more</a></font></u>
    <link linkType="readMoreLink">
    <item name="title"><![CDATA[
    Latest Project
    ]]></item>
    <item name="linkText"><![CDATA[
    text omitted to shorten post]]></item>
    </link>
    Then, in the flash file (main.fla), on a layer of the read
    more frame, I have this script
    thisTitle.htmlText=_root.readMoreTitle;
    thisText.htmlText=_root.readMoreText;
    _root.textSelectable(thisText);
    _root.textSelectable(thisTitle);
    Now I know the above script is for text boxes, but I figure a
    similar layer or MC script will be needed to add unique avi files
    and pics for each individual "more" button that is selected. Any
    help would be appreciated, I have tried many different things and
    have not been able to accomplish this task.

    Hi Andy,
    Please put this posting into the appropriate SAP Netweaver group.
    SAP TM is about transportation of physical goods from one location to another.
    Regards, Thomas

  • Need help converting quicktime movies into Flash files

    I need to convert a QT, PhotoJPEG compressed, movie file into a .flv format. I have AE 6.5 Standard and it keeps quitting on exporting a SWV file which would could probably get me by with my client. But, again, it errors out saying something like a JPG is busy, or a file is busy.
    I have FlipforMac,a purchased version. But I'm not sure if converting it into a .wmv and then a Flash file is the best route or is even possible.
    Any suggestions or ideas of software that I could purchase??
    ~reicko

    i don't think you have read up on the use of flash video
    (FLV). there's nothing you need that you do
    not already have (except maybe quicktime pro or some other
    video editing program). the FLV exporter
    comes FREE with flash 8. You should be able to open your
    quicktime movie in QT PRO and export to FLV
    format - then use any of the flash playback components for
    FLV files - best bet is to read the help
    docs on this subject and go to the devnet section of
    adobe.com where there are several in-depth
    articles about implementing flash video into your site.
    --> **Adobe Certified Expert**
    --> www.mudbubble.com
    --> www.keyframer.com
    rhian wrote:
    > Hi,
    > Thanks for your reply. I am using Flash 8. I've been
    looking into streaming
    > and it's very expensive with quicktime movies, however
    I've found a company
    > that will stream flash movies much more cheaply which is
    why I want to convert
    > it to a flash movie.
    >
    > Sorry are you say that Quicktime Pro allows you convert
    files into flash
    > formats?
    > Rhian
    >

Maybe you are looking for

  • Is there a way to recover photos from an iphone that is not working?

    It fell about 20 feet and shattered, won't turn on.  Anyway someone or some program can access the photos from the hard drive?

  • Weblogic 10.0 MP1 Deployment sometimes hangs

    I have noticed that if the weblogic server has not been restarted for a while, deploying/redeploying applications from the console or from a command line hangs with no errors in either the admin log or the managed server log. Once I restart both serv

  • XI - R/3 Server Proxy

    Hi all, I have created a server proxy from an inbound interface declared in XI. I am trying to test it but I'm suffering the next error: 404 Resource not found Partner not reached Error: -20 Version: 6040 Component: ICM Date/Time: Mon Oct 8 13:32:43

  • Can I delete "förhandsvisning" in iCloud?

    If I open my iCloud account I can see that it is almost full. There is one folder called "förhandsvisning" (not sure the name of that program in english "preview" maybe. The program that opens PDF, pictures etc). Can I delete this folder? Will it be

  • Format Text Boxes

    Can you format multiple text boxes at once-over 100?  I need to format many text boxes to "number"  with .00