Updating from Template help needed

When I make a change to my template them update the dependent
pages I get the message "Unbalanced InstanceBegin Tag". I can see
in the dependent pages where there is two InstanceBegining and
remove it, but as soon as I update the template the double Instance
is writen and the page isn't update. Help......Make it stop
Thanks for any Help !!!
JG

You can't use Flash's native format called .FLA to be loaded
on web server.
You need to export your work in Flash document to what is
called ".SWF" format, where you need to upload THAT .SWF file to
web server.
To work with Flash's native files, you need to have Flash app
installed on your machine. If you want to learn more about how to
work with Flash, you need to keep that topic related to Flash forum
- where you would get some better help in that forum for that
matter.
Good luck!

Similar Messages

  • My CS6 Production suite does not update from the help menu? The appilcation Manager says: "The updat

    My CS6 Production suite for Windows 8 does not update from the help menu? The appilcation Manager says: "The update server is not respondiing, the server might be offline temporarily..." I have registered correctly. I have turned off my AVG virus protection and tried to update my software, still the Application Manager gives the same response. When I login, I can see that my serial numbers are there, so it must have registered correctly.
    Help!

    If you don't want to download the updates manually, then you need to update your Application Manager.  The relevant links are here:
    Windows
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4773
    Mac
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4774
    Hope this helps.

  • Website template help needed

    Hello group,
    I am hoping someone is willing to take the time to help a new
    Flash user. I have a website template I need to customize and get
    rid of all the generic text and pictures but I am not sure the
    easiest way. I am sure I am going about it the hardest way possible
    without much luck. I have all the .fla files and the site works
    fine in it's generic form. I have figured out how to update just an
    ordinary picture but I can't figure out how to change the picture
    of a library bitmap when it has a background. I can replace the
    entire thing but I want to keep the background image the picture is
    on. It is a custom shape, color etc. designed just for this site. I
    looked for just an instance of the picture but it only appears in a
    bitmap combined with the background as far as I can tell. I do have
    the .PSD files and I am pretty sure I can do it that way but I am
    not sure if Photoshops "publish for web" will give me my flash site
    or just an HTML version. I am sure there is something I am
    overlooking. Any help for a newbie would be greatly
    appreciated.

    The photos are taken from a XML file. Open the XML file flashmo_247_photo_list' in dreamweaver and look at the code it'll be easy to fiqure out if you have ever done any sort of HTML coding.
    Just incase you have'nt look for Example below taken from the xml file which was provided with the .fla file
    "<photo>
      <thumbnail>s_photo_003.jpg</thumbnail> Change the image name for a thumbnail here  i.e. directoryname/imagename.png etc
    <filename>photo_003.jpg</filename> Change the image name for a the large image here  i.e. directoryname/imagename.png etc
      <tooltip>Photo Title 03</tooltip>  
    <description><![CDATA[<p class="subtitle">Photo Title 03 goes here</p><p>In velit urna, <u>convallis id</u>, pharetra in, iaculis sit amet, mi. Praesent consectetur imperdiet mauris. Suspendisse at pede vel lorem pulvinar laoreet. Etiam et neque. Donec dapibus viverra est.</p><p><span class="note">This text is dynamically loaded from the external XML file. This textfield supports HTML and CSS.</span></p>]]></description> Here you have the option to have a discription about the image i usually just have the name of the image.
    </photo>"

  • Image links aren't updating from template

    If I create a page from template, not all the image links are updating, more specifically, mouse over event links are not updating. Is there anything I need to change to get these links to change from the template? I'm using Dreamweaver CS6

    <img src="../images/robin_tour_n.png"                            
    onmouseover="this.src='../images/robin_tour_o.png'"
    onmouseout="this.src='../images/robin_tour_n.png'" />
    This part updates: <img src="../images/robin_tour_n.png"
    But this part doesn't:
    onmouseover="this.src='../images/robin_tour_o.png'"
    onmouseout="this.src='../images/robin_tour_n.png'" />

  • Elements 13 will not update from the help menu

    Hi, Just installed elements 13, updates does not work from the help menu, adobe application manager opens and the search for updates is continuous, just keeps searching.
    cheers
    Darryl

    Have you tried it on more than one date? Sometimes the site shuts down temporarily.
    Have you tried from both Premiere Elements and the Elements Organizer -- or even Photoshop Elements? It's all the same updates.
    Are you logged in with your Adobe ID?
    What operating system are you using?

  • I still can't get my child document to update from template.  What gives?

    Hello,
    Here is the document I'm trying to update: http://www.peterdanko.com/Eco-Eden.html
    Here is my template: http://peterdanko.com/Templates/
    Here is my stylesheet that is attached to the template: http://peterdanko.com/productpagecode.css
    What I want to do is change just a little thing...the rules for
    /**begin rules for the four link list**/ need to be changed to a three link list.  Ok, here is my problem.  No matter what I seem to do..and I have closely followed instructions from both the manual and Beth's suggestions and it is not working for me. I have tried many different settings and as far as I have gotten is to get this
    /**#three-pop-up-link li {
    margin-right: 20px;**/ to come up in the first list item, but it does not have an effect.
    Also, I want to delete the onload info for the document that I made the template from, and I am unable to do that as well.
    What am I doing wrong?
    Thanks for your help.
    Peter

    You are still clearly confused about how CSS relates to HTML.  Let's try again....
    This rule -
    a { color:green; }
    will make ALL links on the page, and all states of those links, turn green, including visited, hover, active, and focus.
    These rules, in this order -
    a { color:green; }
    a { color:red; }
    will make ALL links on the page, and all states of those links, turn red!  Why?  Because the later rule overrides the earlier one.  That's how the cascade works.
    These rules -
    a { color:green; text-decoration:overline;}
    a { color:red; }
    will make ALL links on the page, and all states of those links, turn red AND have an overline as text decoration!  Why?  Again, because the cascade of those rules adds the overline style from the first rule even though the color from that rule is overridden.
    I give you these examples to show how the cascade of CSS works, and to give you the sense that there is no relation between the order of the CSS, and the order of the HTML on the page.
    Now - this rule -
    #menu a { color:green; text-decoration:overline;}
    will apply to ALL links within a container with an ID of 'menu', but to NO OTHER LINKS ON THE PAGE.
    And this rule -
    a.menu { color:green; }
    will apply to all links that have been given a class of "menu" (e.g., <a class="menu"...), and only to those links.
    So if you have a group of four links, and you only want to style three of them in a certain way, you could do this -
    .no-center { text-align:left; }
    and then in your HTML you would have
    <a class="no-center"....
    for that link that you wanted NOT to be centered.
    Make sense?
    I feel like we have built your whole site for you....

  • Edit website flash template - help needed

    Hi! I am about to buy a website flash template. Before I buy the template I want to make sure, that I am good enough to edit to my needs.
    I downloaded a free flash template and I tried to edit it in my Flash CS5.
    I have had a lot of trouble editing it and I can't even figure out how I change the pictures or the text.
    Can anyone help me and maybe give me a little tutorial on how to change the template.
    Link to the template: http://www.flashmo.com/preview/flashmo_247_3d_touch_ring
    Thank you!

    The photos are taken from a XML file. Open the XML file flashmo_247_photo_list' in dreamweaver and look at the code it'll be easy to fiqure out if you have ever done any sort of HTML coding.
    Just incase you have'nt look for Example below taken from the xml file which was provided with the .fla file
    "<photo>
      <thumbnail>s_photo_003.jpg</thumbnail> Change the image name for a thumbnail here  i.e. directoryname/imagename.png etc
    <filename>photo_003.jpg</filename> Change the image name for a the large image here  i.e. directoryname/imagename.png etc
      <tooltip>Photo Title 03</tooltip>  
    <description><![CDATA[<p class="subtitle">Photo Title 03 goes here</p><p>In velit urna, <u>convallis id</u>, pharetra in, iaculis sit amet, mi. Praesent consectetur imperdiet mauris. Suspendisse at pede vel lorem pulvinar laoreet. Etiam et neque. Donec dapibus viverra est.</p><p><span class="note">This text is dynamically loaded from the external XML file. This textfield supports HTML and CSS.</span></p>]]></description> Here you have the option to have a discription about the image i usually just have the name of the image.
    </photo>"

  • Server will not boot after update !! Help needed fast !!

    I have a new (Aug 2005) XServe G5, running 4.3.
    Active Directory integrated, stores home folders (AFP), manages preferences and 5 print queues for 55 Mac OS X.4.3 clients and 200 users.
    It downloaded the 4.4 update, unchecked the OS 4.4 update (I think was my first mistake), restarted. Now, at boot up, about the moment the apple would appear (maybe it appears for a split second) all I get is the ugly not sign.
    -- Am able to boot to external firewire drive
    -- Drive shows as boot option
    -- Disk repair reported no problems to fix
    -- Can not find any log entries after last shut down. No service ever starts for any entries to be made.
    -- Applied the 4.4 update successfully while booted from external fw drive, no effect. Startup disk reports system to be OS X Server 4.4 and lists as a boot option.
    -- Drive behaves same when transferred to my G5 tower: big not sign.
    What other steps can I do to troubleshoot this boot problem? If I don't get this server up this weekend, I'll get roasted by an angry mob.
    Any suggestions are welcomed and greatly appreciated.

    Eeh...
    Always clone the existing system prior to updating it. Do so when the server is not in use, shut off services where possible (you want it to be as quiescent as possible).
    Mike Bombich (at Apple) describes how you can do this via the command-line, which I prefer for this purpose (you can stagger the process):
    http://www.bombich.com/mactips/image.html
    Now then:
    Have you booted from the install CD and used Disk Utility to run Repair Permissions ? That should be your first step.
    It may change nothing, but can you boot into Safe mode ? Hold down the Shift key at powerup and keep holding it until you see: "Safe boot"
    If you CAN get it booted in that state, then run the 10.4.4 COMBO updater
    you need to run the combo updater at this point. After doing so, use Disk Utility to run repair permissions on the boot drive itself, and then reboot.
    Otherwise, start it in Target Disk Mode as you did before, connect it to a unit running 10.4.4, and run the /combo/ 10.4.4 Server updator (NOT client, of course) onto the server's mounted hard drive.
    I'm not sure you can do this while running 10.4.x client. You may need to do a quick install of 10.4 server (say onto a Firewire drive), boot your spare Mac from it, and -then- mount the server via Firewire target mode, and apply the 10.4.4 server combo updater.
    Good luck !

  • Problem to pass through firmware update... help needed !

    Hi there !
    having trust in Apple has run software update on blind date basis, ie, just pressed the button to update everything what was proposed .
    i did not have a look, what was proposed to update, unfortunately ...
    apparently, some firmware update have been loaded and started by default...  my lovely mac book pro restarted with grey screen and progress bar
    which looks as  usually available only while it's updating firmaware .   It took one try, did not work out, tried once again and then just switched mac down.
    i've tried to restart it once again, unfortunately it always the same story, ie two tries and then shot down.
    i was trying to look on the net for some information , what sort of firmware update Apple proposed recently, and what kind of trouble i could run into,
    but no information related to my case available.
    can anybody help me, how can i fix the problem ??  any shortcuts, to stop this update and return back to onld firmware ??
    i just can't boot my computer normally, cause its bump into this update once and once again and fails to go through it..
    thank you in advance,
    Vladimir

    Vladimir Kutash wrote:
    its  Macbook Pro 17", 2,4GHz , 4GB RAM, 750GB HD,   bought in 2008
    what sort of firmware update Apple proposed recently
    Software Update/Preferences/Installed Software - will show a list of everything you installed from SU.
    return back to onld firmware ??
    No
    http://support.apple.com/kb/HT1557

  • Loading content from XML help needed, please.

    Hey All,
    So here's my deal- I have a custom-built FLV Playback
    component (with captions) and need to load the following items from
    an XML file named "xml_doc.xml":
    <?xml version="1.0" encoding="UTF-8"?>
    <playlist id="Here's The Video" >
    <vid desc="Introduction to Biological Terrorism Agents"
    src="Intro.flv"
    thumb="Intro.jpg"
    caption="Intro.xml"
    </playlist>
    On the stage, here's what things are named:
    -my FLVPlayback Component is named myVideo
    -my thumbnail/preview image (empty movie clip) is named
    myPoster
    -my FLVPlaybackCaptioning Component is named captioning
    So how do I get these things to all get read from the XML
    document? It's easy to do it all through the FLA and hard-code the
    paths, but I can't seem to figure out how to pull from the external
    XML doc.
    Any help would be greatly appreciated.
    Joe

    You'll need to instantiate a few classes to help with this.
    The first is URLRequest:
    --var myXMLRequest:URLRequest = new
    URLRequest("xml_doc.xml");
    The URLRequest gets loaded by a URLLoader:
    --var myXMLLoader:URLLoader = new URLLoader();
    Then use the .load() method of the URLLoader:
    --myXMLLoader.load(myXMLRequest)
    Then add an event listener to your URLLoader
    --myXMLLoader.addEventListener(Event.COMPLETE, dataLoaded);
    Finally create the function to work with your data
    --function dataLoaded(e:Event):void {
    --var myXML:XML = new XML(e.target.data);
    --trace(myXML);
    Looks like:
    --var myXMLRequest:URLRequest = new
    URLRequest("xml_doc.xml");
    --var myXMLLoader:URLLoader = new URLLoader();
    --myXMLLoader.load(myXMLRequest)
    --myXMLLoader.addEventListener(Event.COMPLETE, dataLoaded);
    --function dataLoaded(e:Event):void {
    --var myXML:XML = new XML(e.target.data);
    --trace(myXML);
    (remove dashses, they're for readability)

  • Burn from .dvdproj help needed!

    I have a movie on idvd which creates a .dvdproj file and it comes up with an error message - encoding issue when i try and burn the dvd. I have read other people having the same problem here and that saving as a disk image is the key but I have the same encoding issue when trying to do this even! . It seems to go all the way through rendering the movie and then at the end it says there was a problem encoding the movie. I'm completely stuck and desperately need the dvd this evening.
    Can anyone help?

    Have you edited the movie since adding it to the iDVD project?  If so that encounters a known bug with iDVD and you will be best served creating a new project and adding the movie again.
    How did you add the movie to the iDVD project in the first place?  If from iMovie it should be via the Share ➙ Media Browser menu option (if that version of iMovie has that option) and not the Share  ➙ iDVD option.
    If you have the movie as a file then try creating a new project and start over from scratch.  Follow this workflow to help assure the best qualty video DVD:
    Once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image  menu option. This will separate the encoding process from the burn process.
    To check the encoding mount the disk image, launch DVD Player and play it.  If it plays OK with DVD Player the encoding is good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    This post by Bengt Wärleby describes things that can cause encoding issues: Multiplexing Error

  • Flash CS4 Quiz Template: Help Needed

    My organization uses the Flash CS4 quiz template that is included within the eLearning suite.  Everything works great.  The quiz loads on the LMS, it gives learners' their scores, etc.  The issue we're having is after the score is recorded within the LMS.
    If a user fails the quiz, the LMS marks the quiz as 'Completed/Failed'.  The LMS (Inquisic EX), then, moves the failed quiz into the 'Completed Courses' tab.  I understand why it does this because the 'Completed' mark given refers to the learner having gone through all of the pages within the quiz; however, the learner failed the quiz.  If the learner goes back into the quiz and passes it the second time around, the LMS continues to state 'Completed/Failed'.
    Does anyone know why this would happen?  Are there SCORM settings we ought to change within the source code provided by Adobe?
    I really appreciate your help!!

    I think this is what I'm having trouble with, did you figure
    it out? I need help making checkbox text have multiple
    lines.

  • Invoking SQL Loader from linux - Help Needed

    Hi All,
    When i tried to invoke the sql loader from linux by using following command
    sqlldr username@server/password control=loader.ctl
    But its always throws this message
    Message 2100 not found; No message file for product=RDBMS, facility=ULMessage 2100 not found; No message file for product=RDBMS, facility=UL
    Can somebody help me to fix this issue?

    You may need to set your Oracle environment, try this ($ is the command prompt):
    $ export ORACLE_SID=orcl
    $ . /usr/local/bin/oraenv
    $ sqlldr username@server/password control=loader.ctl:p

  • Itunes update and automatic update of ipod help needed

    i just upgraded to the newest version of itunes (6.4?), and i deleted some songs out of my library and it gave me a message to the effect that next those files would be removed from my ipod next time i connected it.
    i know in the previous version of itunes that i had, i had shut off the option that automatically updates your ipod when you plug it in, so i tried to find that option on here and was unable to, i think it might show up after i plug in my ipod, but obviously i dont want to plug in my ipod until i know it isnt going to get erased, anyone know if i can connect my ipod safely of if i need to change something, and if i need to change something where i would find that control. thanks in advance for any help

    You can use a keyboard command to prevent your iPod auto-syncing with iTunes. While connecting the iPod to the computer hold down the Shift + Ctrl keys (on a Mac hold down the Option and Command (⌥ and ⌘) keys). This will stop the iPod from auto-syncing with iTunes and the iPod will appear in the source list. Wait until you are sure the iPod has mounted, and that it will not auto sync and then you can let the keys go. This may take between 3 and 30 seconds depending on your computer. Then go to Preferences>iPod and check the "Manually manage songs and playlists" box.
    If at any stage iTunes brings up a dialogue window asking whether you want to replace the songs on your iPod with the songs in iTunes, press *No*.

  • Can't update from template

    hi all,
    firstly, i am noob at dreamweaver.I encountered a problem
    applying my template in html code in my pages.After i add new links
    in template page ,dreamweaver warns me to update pages created
    before.i do ok but when i opened pages i see they arent updated
    with the new links or stuff.What is missing?Cant i update my pages
    created with a template(in html) after doing some actions?
    thank you for answers in advance.

    I don't understand your question. Can you give us a series of
    explicit
    steps that we can follow?
    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
    ==================
    "senjinfury" <[email protected]> wrote in
    message
    news:fc606q$9pf$[email protected]..
    > hi all,
    > firstly, i am noob at dreamweaver.I encountered a
    problem applying my
    > template
    > in html code in my pages.After i add new links in
    template page
    > ,dreamweaver
    > warns me to update pages created before.i do ok but when
    i opened pages i
    > see
    > they arent updated with the new links or stuff.What is
    missing?Cant i
    > update my
    > pages created with a template(in html) after doing some
    actions?
    > thank you for answers in advance.
    >

Maybe you are looking for

  • Movies and TV Shows Missing form iPod menu -- what's up with that?

    I purchased my fist movie and TV episode last night to see how well I will like them on my iPod classic. I am connecting to the most up to date version of iTunes on my IBM/Win XP computer. I watched the episode (Journeyman's first episode -- missed i

  • I can't find Java preferences also System preferences says i have Java 7 but Terminal says i have Java 6

    So i downloaded java 7 to run this program called Spigot and Bungeecord and when i ran them in terminal it said i had Java 6 so i called apple support and they said they couldnt help to ask oracle but this lady answered and she had no clue and told m

  • Flattening a PDF with Siganture Field

    Hi, I have dynamic XML form, which has 2 signature fields. In my process I flatten the document using transformPDF. But if one of the signature fields are signed then, the PDF cannot be viewed in Acrobat. I logged the PDF properties of both below. Si

  • SAPGUI on Macs under Bootcamp

    Hi, There are quite a few messages on this forum telling me that SAPGUI for java will not run on the MacBook Pro yet. Can anybody tell me if the Windows SAPGUI will run on a MacBook Pro running Bootcamp? Cheers,

  • Grainy photos in iOS8

    Since downloading iOS8 (big mistake) onto my iPad the photos taken with the camera are terrible quality, very grainy.  With iOS7 they were lovely and clear.  Having most of the problems everyone else is having also.