How to edit website

hi,
I'm a total computer newbie and kinda slow with these sort of things, but here goes.
I made a website in flash and published it but haven't uploaded it to my website yet. If i do upload it, how do i edit it again, in Flash?
I do have a webhost, but I can't edit it there because I made the website myself therefore I have to edit it from my programs and then publish it again, correct?
How do i see my individual pages again and edit them and then upload them again.
hope i don't sound too stupid. thanks guys!

Yes, if you want to modify your Flash web site design you need to use Flash to edit the fla file and then publish a new swf file.  To get that revised swf file onto the server you just repeat whatever you did to get it on the server to begin with.

Similar Messages

  • How to edit website from another person

    Hi all!
    I have just inherited a website from another person, i want place ads in content, site is CMS WP, please help me.
    Thank!

    Log-in to your WordPress Admin Panel.
    http://find2sell.com/index.php/en/users/login/
    Edit Pages within WordPress:
    http://en.support.wordpress.com/pages/edit-pages-screen/
    Nancy O.

  • How to edit an old website?

    How to edit an older iWeb created published Website?

    Do you have the domain.sites file that was used by iWeb to create the site?  If you do then double click on it to open the site in iWeb where you can make the edits and republish.
    If you don't have the original domain file you will have to recreate the site from scratch. Chapter 2.3 on the iWeb FAQ.org site has tips on using some of the existing files, image, audio, video, etc., from the published site in the recreation of the site.
    OT

  • How to edit video using iMovie?

    Hi,
    I am new to iMovie. I am not familiar with its key tools. Can any one please tell me how to edit a video using the software? I need to put a video on Youtube displaying features of my website http://www.fundoofun.com
    Thanks in advance.
    K V Gautam

    Move the video between iPads using Dropbox or an App like Photo Transfer.

  • Edit websites in dreamweaver

    can anyone tell me how to use dreamweaver to edit websites that are not made in dreamweaver??....plz help.....

    Dreamweaver works on local files.  To edit any website (even those not made in DW - after all, it's all HTML), you would first need to have a DW site defined with a local root folder, then you'd need to get the files (and their dependent files) into that local root folder, and finally you can then edit those files using DW.  Ordinarily, this requires some FTP connection to the remote site so that you can not only GET the remote files but also PUT them back once you have edited them.  Dreamweaver has the ability to do this - when you define your site you also specify the FTP connection details.
    I suggest you also use DW's F1 Help to read about defining a site.

  • How to edit PPD List Illustrator CS3?

    Hi all,
    Recently updated a printer driver, which has resulted in a really long PPD list through which I have to scroll when I send something
 to print. I know in Quark there's a way that one can edit the list by turning off unwanted PPDs. Is this possible in Illustrator? a
nd how might I do it? 


    This is probably really simple, but I'm relatively new to CS3 so anyone who could enlighten me would be appreciated.
    Thanks, 
Siobhan.

    Mac OS X 10.4.11 
Illustrator CS3 13.0.2 


    Printer model: Printer: Konica Minolta bizhub pro C6500.
    Driver: Fiery X3eTYz 65-55C-KM PS 2.0eu


    You will have to teach your user how to edit the source in an
    external application.
    Make it possible:
    1. Edit, Administer websites
    2. Users and Roles, pick the proper role, Edit Role Settings
    3. go to Editing and check 'Allow users to edit source in
    external application'
    To adjust which application:
    1. Edit, Preferences
    2. File editors
    3. pick Web page Source
    4. adjust the setting as you like with the program you
    want

  • How to edit inbound idoc with data errors in multiple segments and reproces

    Hi friends,
    i have a requirement for error handling of inbound sales order(ORDERS04) without using WORKFLOW and WE19.
    i have seen some function modules like edic_* ..
    but my doubt is how to edit the error data(how can i identify the particular error fileds in the segments)and how to reprocess the same idoc.
    Please help me...
    Thanks in advance

    Hi Narasimh,
    Please find the following steps to edit IDOC segment after you find the error using WE02.
    The example codes can be found in website 
    http://www.sapgenie.com/sapedi/idoc_abap.htm
    STEP 1 - Open document to edit
    CALL FUNCTION 'EDI_DOCUMENT_OPEN_FOR_EDIT'
           EXPORTING
                document_number               = t_docnum
           IMPORTING
                idoc_control                  = itab_edidc
           TABLES
                idoc_data                     = itab_edidd
           EXCEPTIONS
                document_foreign_lock         = 1
                document_not_exist            = 2
                document_not_open             = 3
                status_is_unable_for_changing = 4
                OTHERS                        = 5.
    STEP 2 - Loop at itab_edidd and change data
    LOOP AT itab_edidd WHERE segnam = 'E1EDKA1'.
      e1edka1 = itab_edidd-sdata.
      IF e1edka1-parvw = 'LF'.
        e1edka1-partn = t_eikto.
        itab_edidd-sdata = e1edka1.
        MODIFY itab_edidd.
        EXIT.
      ENDIF.
    ENDLOOP.
    STEP 3 - Change data segments
    CALL FUNCTION 'EDI_CHANGE_DATA_SEGMENTS'
               TABLES
                    idoc_changed_data_range = itab_edidd
               EXCEPTIONS
                    idoc_not_open           = 1
                    data_record_not_exist   = 2
                     OTHERS                  = 3.
    STEP 3a - Change control record
    CALL FUNCTION 'EDI_CHANGE_CONTROL_RECORD'
           EXPORTING
                idoc_changed_control         = itab_edidc
           EXCEPTIONS
                idoc_not_open                = 1
                direction_change_not_allowed = 2
                OTHERS                       = 3.
    STEP 4 - Close Idoc
    Update IDoc status
    CLEAR t_itab_edids40.
      t_itab_edids40-docnum      = t_docnum.
      t_itab_edids40-status      = '51'.
      t_itab_edids40-repid       = sy-repid.
      t_itab_edids40-tabnam      = 'EDI_DS'.
      t_itab_edids40-mandt       = sy-mandt.
      t_itab_edids40-stamqu      = 'SAP'.
      t_itab_edids40-stamid      = 'B1'.
      t_itab_edids40-stamno      = '999'.
      t_itab_edids40-stapa1      = 'Sold to changed to '.
      t_itab_edids40-stapa2      = t_new_kunnr.
      t_itab_edids40-logdat      = sy-datum.
      t_itab_edids40-logtim      = sy-uzeit.
      APPEND t_itab_edids40.
      CALL FUNCTION 'EDI_DOCUMENT_CLOSE_EDIT'
           EXPORTING
                document_number  = t_docnum
                do_commit        = 'X'
                do_update        = 'X'
                write_all_status = 'X'
           TABLES
                status_records   = t_itab_edids40
           EXCEPTIONS
                idoc_not_open    = 1
                db_error         = 2
                OTHERS           = 3.
    Hope this will help.
    Regards,
    Ferry Lianto

  • 'how to edit site part 2'

    Hello,
    recently posted a thread, 'how to edit a site',
    received generous replies- however, it didnt hit the nail on the head and im still none the wiser, so im going to try again....
    does anyone have a step by step guide on how i am able to locate my site in which a web developer has edited for me (web developer has not replied my emails hence this post) in DW CS4 so that i can edit my site? Hope that makes sense,
    i found on one forum, it stated: open DW, click New site, etc- but i get options such as: use server technology? remote server folders?  and although i have tried many options it still hasnt worked!
    i have a good understanding of html/css and more but have never used DW until now and finding it incredibly hard just locate my site and edit it in DW,
    Look forward to hearing from any kind and clever people out their!
    Regards
    Becky

    I don't know if this is exactly what you are looking for.
    1) Locate the location where all your web stuff are (local or remote)
    2) Open DW4 and find the website tab (not file open or stuff like that)
    3) Create new site
    4) Default is the basic view, switch to complex.
    5) You technically only need to enter one information.  On the local information, website name... just give whatever.  The ONLY essential information is the local root folder (the blank just under the website name): this is where you put in the location you found in step 1.
    6) Click okay.
    All other information such as remote server or what not... those aren't necessary for your purpose RIGHT NOW.  They are HELPFUL for shortcuts, testing, etc..., but I am sure others can do a better job of explaining them than I can.
    (P.S. if your engineer left your website somewhere in the web, I suggest you retrieve it and store in local (put it in some folder) to make the above steps easier.  You can always upload your finished site later.)
    IF nothing seemed to happen, check your lower right corner to see if the webpages that are already created are there.  (there is a navigation window)  Double click on any of them will open them onto the main screen for editing.
    I hope my answer isn't too simple and doesn't fit your need.  Happy editing!

  • How to edit vocal waveforms to overcome sibilance and plosives

    I know there are some tricks to dealing with sibilance and plosives (there's a great article on this on EQ's website <http://www.eqmag.com/article/vocal-cords-removing/jan-08/33059>, but one thing I can't quite figure out is how to edit a waveform through GB. So far, I've not been able to do much other than slightly trim a bit of the beginning of the waveform, but I invariably cut too much off at the top of the "esses" so that it sounds like a "ts", which is not what I am going for at all.
    Any technical help on how to edit waveforms through GB? Or is this an impossible dream? I have both a Blue Snowball USB mic and an Audio-Technica M4000S, and my mic budget is already tapped out after getting a Line 6 USB interface (TonePort GX) and the mic adapters I needed to plug my mic into the interface. I also have a pop filter, which could help but I can't quite get the vocal presence I need if I sing from four inches away so it's basically no good regardless of which mic I use.

    The editing of the waveform is a good way to fix sibilance at times, but it's really hard to do in GB because the way the wave is rendered in the track. You can zoom in really close and try to do it using the volume automation, but the way the waveform is rendered in the editing window is much better, you can zoom in and find the point where the plosive is happening, but the problem is that you can't set the volume points in the editing window, you can only do that in the track. What you might want to try is editing the vocal track that needs fixing, by itself in an audio editor like Audacity(you can get it for free here: http://audacity.sourceforge.net/about/features )using the volume envelope in the sections where the plosives occur. Then drag that file back into your Garageband project. It's similar to riding the fader on a mix, a technique for adjusting the vocal to minimize popping in a recording. Of course it's always better to avoid them in the first place, and I usually position my pop filter as close as possible to the mic, maybe 1/2" away, and sing right up close to the pop filter, when I want a close-up vocal. But if you use an external editor with Garageband, you can fix tracks that have some popping you need to get out.

  • Problem while sign in to In-browser Editing website and encountered "The FTP operation is taking too long"

    I tried to sign in to my Muse website via Adobe® Muse™ CC In-Browser Editing to edit my website with In-browser editing. But it keeps show me
    I have done these steps:
    Installed fresh Muse CC 2014
    Verify enable "In-browser Editing" in site's properties.
    No warning while I upload my website to hosting
    The program tell me succeed in upload website to hosting
    I can access my website via common URL address
    I double checked my FTP account which is the same that I used to sign in to In Browser Editing.
    In your suggestion: "check with your hosting provider."
    The information is not specific and almost hosting provider don't know how to deal with this "Muse" things.
    Question is:
    What info I have to tell hosting provider? Should it be "My Muse website cannot be login by In-browser editing"?
    Is there anything I can check and tell you or my hosting provider to solve this problem?
    Is it possible that some server configuration prevent In-browser Editing website to access the remote Muse website?

    I tried to sign in to my Muse website via Adobe® Muse™ CC In-Browser Editing to edit my website with In-browser editing. But it keeps show me
    I have done these steps:
    Installed fresh Muse CC 2014
    Verify enable "In-browser Editing" in site's properties.
    No warning while I upload my website to hosting
    The program tell me succeed in upload website to hosting
    I can access my website via common URL address
    I double checked my FTP account which is the same that I used to sign in to In Browser Editing.
    In your suggestion: "check with your hosting provider."
    The information is not specific and almost hosting provider don't know how to deal with this "Muse" things.
    Question is:
    What info I have to tell hosting provider? Should it be "My Muse website cannot be login by In-browser editing"?
    Is there anything I can check and tell you or my hosting provider to solve this problem?
    Is it possible that some server configuration prevent In-browser Editing website to access the remote Muse website?

  • How to edit a PDF in Photoshop CS4

    Hi there,
    I'm having some real trouble trying to figure out how to edit a PDF in photoshop cs4. So i need to edit/change text, move things around, that type of thing.
    I work in Windows.
    Could someone give me a bit a low down on how this is done?
    Much appreciated,
    Victoria

    You can open them but you will totally rasterize everything.
    PDFs are not intended to be edited. They are a final format but as
    mentioned you can use Acrobat for some minor text edits or use it to
    extract the images to Photoshop for further editing.
    Bob

  • How to edit JVC/Panasonic/Canon .mod video in Windows Movie Maker then upload to YouTube for sharing

    Quick View:
    Part 1: How to import .mod video to Windows Movie Maker
    Part 2: How to edit the video with Windows Movie Maker
    Part 3: How to upload your video to YouTube
    Know More:
    1. Which Camcorders record video in .MOD type?
    2. What file types are supported by Windows Movie Maker?
    3. What file types are supported by YouTube? 
    Part 1: How to import .mod video to Windows Movie Maker
    Step 1: Load files
    First copy the MOD file from your video camera to your hard drive, then download, install and run MOD Converter, click the "Add Files" button to browse your computer hard disc and load the MOD/TOD video files you want to convert to the program. 
    Step 2: Output Setting
    In the bottom of the main interface, select an output format supported by Windows Movie Maker for each video file and specify a directory on your computer to save the output files. 
    Step 3: Start convert
    Click "Start" button on right bottom of the main interface, you are allowed to start conversion. 
    Step 4: Import converted video to Windows Movie Maker
    Click on "File". Then click on "Import". A window will appear. In the window, navigate to the video clip you converted just now. Then double click on the file. You'll see the icon for the file in your Windows Movie Maker "Collections". 
    Part 2: How to edit the video with Windows Movie Maker
    Step 1: Add transitions and special effects
    In the Movie Tasks pane, under Edit Movie, click View video transitions. 
     Preview transitions by double-clicking them and watching the Preview Monitor. Once you've found a transition you like, drag it from the Video Transitions pane, under Edit Movie pane to the box between two of your clips. This inserts the transition between the two clips. 
    Step 2: Add titles and credits
    If you want to add a title before, after, or on top of a clip, click the clip on the storyboard or timeline.
    In the Movie Tasks pane, under Edit Movie, click Make titles or credits. 
    Step 3: Add Music
    In the Movie Tasks pane in Movie Maker, under Capture Video, click Import audio or music. 
     In the Import File dialog box, click the name of the song you want to use in the background. Then click Import. This adds your song to your collection but does not add it to your video. Drag the song from the collection to the video clip where you want the music to start playing. 
    Step 4: Add narration
    If you have a desktop computer, connect a microphone. Microphones are available from most electronics stores. If you have a portable computer, you can use the built-in microphone. However, you will get a better-quality recording if you connect an external microphone. In Movie Maker, click the Tools menu, and then click Narrate Timeline. On the timeline, click the clip you want to narrate. You can narrate clips one at a time, or you can narrate the entire movie all at once. If you narrate individual clips, you can rearrange them later and keep your narration synchronized. If the narration is too loud or too soft in comparison to the movie, right-click the narration on your timeline, and then click Volume. 
    Step 5: To save your movie to your computer
    In the Movie Tasks pane, under Finish Movie, click Save to my computer. 
     The Save Movie Wizard appears. On the Save Movie File page, type a name for your movie. You can also choose a folder to save it in by clicking the Browse button, but My Videos (the default) is usually the best place to save your movie. Then click Next. On the Movie Setting page, click Next to accept the default setting of Best quality for playback on my computer.
    Movie Maker saves your movie, which might take several minutes. On the Completing the Save Movie Wizard page, click Finish. If Play movie when I click Finish was selected (it is selected by default), the movie will automatically play in Windows Media Player. Now you can watch your videos anytime by opening your My Videos folder and double-clicking your movie. 
    Part 3: How to upload my video to YouTube
    A video file should meet the following requirements so that it can be uploaded to YouTube site.
    1. In an acceptable format: WMV, MPEG4, MOV, AVI and MPEG.
    2. Video length is shorter 10 minutes.
    3. File size is smaller than 1GB. 
    Step 1: Sign up a YouTube account or Gmail account, then click the Upload button on any YouTube web page. See the figure below: 
    Step 2: Type in the information of your video file, including Title, Description, Category and tags. To increase the chances that your video can be easily found, you should put as much information as possible. 
    Step 3: Set this video to be public or private. 
    Step 4: Click the "Upload a video" button. When you see the next window, click the "Browse" button to select the video file you want to upload. Then click the "Upload Video" button to upload it. After the upload is finished, you will see the completion page. See the figure below: 
    Step 5: Click "My Videos" and you will see the video. 
    Know More:
    1. Which Camcorders record video in .MOD type?
    MOD is the video file type used on many digital camcorders, such as the JVC Everio, the Canon FS100 and the Panasonic D-Snap SD-card camcorders. Accompanying the MOD video file, there exists MOI file that stands for the index file for MOD. 
    2. What file types are supported by Windows Movie Maker?
    You can import files with the following file name extensions into Windows Movie Maker to use in your project:
    Video files: .avi, .wmv, .mpeg, .mpg., .asf, m1v, .mp2, .mp2v, .mpe, , .mpv2, and .wm.
    Audio files: .mp3, .wav, wma, .mp2, .aiff, .aif, .aifc,.asf, .au,.mpa, and .snd.
    Picture files:.jpeg, .jpg, .jpe, .png, .bmp, .dib, .emf, .gif, .jfif,.tif, .tiff, and .wmf 
    3. What file types are supported by YouTube?
    YouTube accepts a wide range of video file formats.The video files below are all accepted by YouTube. Some video formats work best and are most compatible with certain computers, software or devices. Windows Media Video (.WMV)
    .3GP (cell phones)
    .AVI (windows)
    .MOV (mac)
    .MP4 (ipod/psp)
    .MPEG
    .FLV (adobe flash)
    .SWF (shockwave flash)v
    .MKV (h.264) If you do not think your current video file format is recognized by YouTube, you may get the best uploading results from converting your file to MPEG4 video with MP3 audio.

    I prefer this
    iPad Manager software, with the assistance of iPad Manager, you can make iPhone ringtone, connect your PC to iPad to backup iPad files to Computer directly, import computer file or folder to iPad. 
    Furthermore, it's easy to convert DVD/video to iPad. 
    This versatile iPad Manager can help you transfer videos, songs, photos from computer to iPad and from iPad to PC in fastest speed. Have a try with this tool and manage your iPad, iPod, iPhone in a much easier way. 
    * Convert DVD/video to iPad
    * Backup iPad files to PC
    * Import computer file or folder to iPad 
    iPod Manager
    iPod Video Converter
    DVD to iPhone Converter
    iPod Mate

  • How to edit an animated GIF in CS6

    I've looked all over but have yet to find a good tutorial on how to edit an existing GIF I've found on the web. What is the best way to take an existing animated GIF and add text or images on it in CS6? BTW there are lots of tutorials on how to create a gif from scratch from a video but they don't help on editing an existing GIF.

    try this tutorials..
    " http://www.yvelledesigneye.com/2012/05/31/cs6-photoshop-tutorials-tips-tricks/ "
    " http://www.pxleyes.com/video-tutorial/photoshop/17095/Use-the-New-Timeline-in-CS6-to-Creat e-an-Animated-GIF-from-a-Video-.html "

  • How to edit a file

    Ok I probably realise that I've missed something in the literature on installing arch somewhere along the way, but I've spent the last 3 hours trying to find how get past this stage to no avail.
    I've managed to realise I have a dhcp connection.
    For DHCP IP
    For this option, you need the dhcpcd package (already available on most installations). To make use of it, edit /etc/rc.conf like this:
    eth0="dhcp"
    INTERFACES=(eth0)
    ROUTES=(!gateway)
    but when i type "edit /etc/rc.conf" I get a colon
    I presume I'm in some kind of editor, but I can't see what I'm supposed to change and what commands to use inside the editor.
    Any help gratefully received

    bzzzz Arch is for competent Linux users - not knowing how to edit a file suggests that you do not fall into this category. If you wish to persevere and use Arch as a learning tool, then you need to be aware that you will be required to do most of the work yourself.
    See the wiki: https://wiki.archlinux.org/index.php/FA … se_Arch.3F

  • How to edit the content.opf  file of a FXL EPUB?

    I'm exporting a fixed layout epub and I cannot find out where the content.opf file is and how to edit it.  I'm trying to do the same thing that was done here: Indesign CC 2014 Fixed Layout export
    Can anyone point me in the right direction? I've googled to no end!
    Thanks,

    Please follow these steps to edit your EPUB:
    1. Download Sigil https://code.google.com/p/sigil/downloads/list
    2. Open your EPUB in this editor.
    3. In the book browser view on your left, look up for content.opf file. Edit this file and save your EPUB.
    Regards,
    Pooja
    InDesign Engineering

Maybe you are looking for

  • BATCH STATUS REPEATING IN GRN PLD

    Dear Gurus, I have added a field in GRN PLD for Batch status (i.e RELEASED, REJECTED, LOCKED) but when i run the pld the print layout repeats the line items in numbers of thousand even. I want to know how can I remove this duplication. Please guide m

  • Report layout wrong

    HI, We have a problem with a custom report, the report has several horizontal lines, but depending on who or maybe the computer where this report is run, these lines are not aligned correctly. So for some users, the layout is ok, but for other users

  • Getting error in calling Java Script function in HTMLB page

    Hi   I am having a button in HTMLB page which calls the Java Script function for click event.I have included the Java Script in the script folder of the application. I am calling the function present in JS like this, <SCRIPT src="portalsdc.js"></SCRI

  • Get IP of terminal

    Hi, We use CITRIX to access SAPGUI and SAP systems. Is it possible to get the IP of terminal from where citrix is called using ABAP? Thanks, Prakash

  • X-FI Xtreme Gamer no surro

    Hey all. Not long bought myself an X-FI Xtreme gamer edition, I installed it and set up the drivers, plugged in the speakers and set them up and found there was something wrong. I can't get surround sound!? At first I thought it was my speakers, and