IWeb08 "Add Comments" and Format Problems

Morning!
I've been having problems with getting "Add Comments" to appear when publishing my site. I've read that iWeb08 folks get problems when publishing a non-Mobile Me site. All of the solutions I've googled seem to be outdated, such as signing up for "Haloscan," which seems to not exist anymore. I was wondering if anyone had any remedies?
Also, for whatever reason the spacing seems to get slightly messed up upon publishing. Notice on this post: http://healthydayfitness.com/Blog/Entries/2011/2/14FirstPost.html that the title and date are "scrunched up" with the text.
This post: http://healthydayfitness.com/Blog/Entries/2011/2/14Cleveland_Clients_%26_We_Run_ThisCity.html cuts the email address off of the bottom.
I've double checked my iWeb work, and it looks perfect there. I've tried deleting and re-uploading several times to no avail.
Any help would be greatly appreciated.
Cheers!
Joe B

Joe ~ If you're not publishing to MobileMe, an alternative to Haloscan is suggested here:
http://iwebfaq.org/site/iWebFeedbackComments.html
But as problems with iWeb's blog are a constant theme on these forums, it's often recommended to use a dedicated blogging platform instead of iWeb's, e.g.
http://posterous.com
http://wordpress.com

Similar Messages

  • Comment and markup problems

    I work on two computers. On the first, if i select comment and markup toolbar, I get an actual toolbar at the top of the screen. On the second PC, when I do the same I get a midget versio of the toolbar that says Comments but with the rest of the toolbar cut off.
    Similarly, on PC #1 when I select Show comments list, I get a list at the bottom of the screen. on PC #2, I get a cramped, small version of the list floating in the middle of my screen -- much harder to work with.
    How can I make PC #2 act like PC #1? Both have Adobe Reader 9.#1 is Adobe Reader 9.1.0; I just realized that I don't know what version the other is, other than 9.
    thanks for your help.
    Shoshana

    I was searching for an answer FOREVER and finally found it (at least for me). If you have PDFlyer, that is the source of the problem. Easy fix:
    Launch Adobe X.
    Click Tools on the right side of the screen.
    Click on PDFlyer.
    Click Set Options.
    Click Start up.
    Unclick Restore standard toolbars on start up.
    Close Adobe X and reopen.
    Hope that helps!

  • Trying to add Comment and Markup Toolbar

    I am the author of a PDF document that I have opened in Adobe Reader 9. I am trying to make a Captivate demo movie on how to annotate a PDF using Reader 9, but the Comment toolbar won't come up. I keep checking it, but the toolbar just won't appear. I viewed my Security settings, but it looks like commenting isn't allowed. How do I change this? All that Adobe has is instructions for Reader 8, but those are outdated.

    (Yes, what I assuming that security properties could have been orginally set in Reader 9 by the originator, on pdf with no security; but of course this  can't be done.)
    Nevertheless I think I have it figured out...
    1) the app by default generates pdfs with
         "no security"
         "comments: not allowed"
         (e.g., these are the MS Word defaults)
    2) "no security" means Acrobat can add comments
    3) "comments: not allowed" means Reader can't.
    Is that is?
    I know, rtfm.  I have no doubt it is behaving as documented.

  • Quickfix and format problem

    I am reading from the book "Implementing DSL with xtext and xtend" it says that formatter is invoked when of course the Format from the context menu is used or the shortcut for it "Ctrl + Shift + F" is used. It also says that "If you provide a custom formatter this will be used not only when the format menu is invoked but also when xtext needs to update the editor contents after a manual modification of the AST model( for example a quickfix performing a semantic modification".
    With that said I am having a problem that when my quickfix is invoked the formatter doesn't get invoked resulting in a terrible looking text.
    Example:
    ----1-----
    ---Text before quickfix---
    entity myentity {
    FooBar s;
    } entity second{}
    ----2-----
    ---Quickfix add unimplemented entity---
    entity myentity {
    FooBar s;
    } entity FooBar {
    } entity second{}
    ----3-----
    ---invoking the formatter MANUALLY(How it should look like)---
    entity myentity {
    FooBar s;
    entity FooBar {
    entity second {
    QuickFix implementation:
    @Fix(Diagnostic::LINKING_DIAGNOSTIC)
    def CreateMissingEntity(Issue issue, IssueResolutionAcceptor acceptor)
    acceptor.accept(issue,"Create missing entity.","Create missing entity.", "" ,
    [element, context |
    val currentEntity = element.getContainerOfType(typeof(Entity))
    val model = currentEntity.eContainer as Model
    model.entities.add(model.entities.indexOf(currentEntity)+1, EntitiesFactory::eINSTANCE.createEntity() => [name = context.xtextDocument.get(issue.offset,issue.length)])
    Formatter implementation:
    @Inject extension EntitiesGrammarAccess g
    override protected void configureFormatting(FormattingConfig c) {
    // It's usually a good idea to activate the following three statements.
    // They will add and preserve newlines around comments
    //entitites
    val e = g.entityAccess
    // indentation between {}
    c.setIndentation(e.leftCurlyBracketKeyword_3,e.rightCurlyBracketKeyword_5)
    // newline after {
    c.setLinewrap.after(e.leftCurlyBracketKeyword_3)
    // newlines after }
    c.setLinewrap(2).after(e.rightCurlyBracketKeyword_5)
    //attributes
    val a = g.attributeAccess
    // newline after ;
    c.setLinewrap.after(a.semicolonKeyword_2)
    // remove spaces before ;
    c.setNoSpace.before(a.semicolonKeyword_2)
    c.setLinewrap(0, 1, 2).before(SL_COMMENTRule)
    c.setLinewrap(0, 1, 2).before(ML_COMMENTRule)
    c.setLinewrap(0, 1, 1).after(ML_COMMENTRule)
    I have been searching a lot if the formatter is actually invoked as the book says after a quickfix but found nothing. Is this real? and if not how can I invoke the formatter programmatically from the quickfix code.

    On 16/06/2015 16:09, ayman salah wrote:
    > I am reading from the book "Implementing DSL with xtext and xtend" it
    > says that formatter is invoked when of course the Format from the
    > context menu is used or the shortcut for it "Ctrl + Shift + F" is used.
    > It also says that "If you provide a custom formatter this will be used
    > not only when the format menu is invoked but also when xtext needs to
    > update the editor contents after a manual modification of the AST model(
    > for example a quickfix performing a semantic modification".
    >
    > With that said I am having a problem that when my quickfix is invoked
    > the formatter doesn't get invoked resulting in a terrible looking text.
    > Example:
    >
    > ----1-----
    > ---Text before quickfix---
    >
    > entity myentity {
    > FooBar s;
    > } entity second{}
    >
    > ----2-----
    > ---Quickfix add unimplemented entity---
    >
    > entity myentity {
    > FooBar s;
    > } entity FooBar {
    > } entity second{}
    >
    > ----3-----
    > ---invoking the formatter MANUALLY(How it should look like)---
    > entity myentity {
    > FooBar s;
    > }
    >
    > entity FooBar {
    > }
    >
    > entity second {
    > }
    >
    > QuickFix implementation:
    > @Fix(Diagnostic::LINKING_DIAGNOSTIC)
    > def CreateMissingEntity(Issue issue, IssueResolutionAcceptor acceptor)
    > {
    > acceptor.accept(issue,"Create missing entity.","Create missing
    > entity.", "" ,
    > [element, context | val currentEntity =
    > element.getContainerOfType(typeof(Entity))
    > val model = currentEntity.eContainer as Model
    >
    > model.entities.add(model.entities.indexOf(currentEntity)+1,
    > EntitiesFactory::eINSTANCE.createEntity() => [name =
    > context.xtextDocument.get(issue.offset,issue.length)])
    > ]
    > );
    > }
    Hi there
    If I remember correctly that behavior changed a few Xtext versions ago,
    I'm afraid. At the time of writing the book it used to work like that :)
    Please, also note that since Xtext 2.8 a new formatting mechanism has
    been introduced that's completely different (and better :); that's
    specified in the ERRATA of the book in the github repository.
    cheers
    Lorenzo
    Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
    HOME: http://www.lorenzobettini.it
    Xtext Book:
    http://www.packtpub.com/implementing-domain-specific-languages-with-xtext-and-xtend/book

  • How do colleagues add comments and review .psd files in Acrobat?

    i work in Photoshop, would like to be able to collaborate with assistants and clients online - like, i believe, Adobe Live used to do...
    thx,
    c.

    Hi Bonus Studio,
    If you'd like folks to comment on your files in Acrobat, you'll need to first save your .psd files as PDFs. Then, your assistants and clients can open the PDFs in either Adobe Reader or Acrobat and use the commenting tools to add their comments.
    Best,
    Sara

  • Creative Zen 4 Gb Rebuilding and Format Problem

    i have creative zen 4 gb mp3 player. eveytime when i was opening the device, it is rebuilding player and then it opens. Also i tried to format all my player in recovery mode and it is formatted.After format when i was opening device again, it was rebuilding and then everything is come back. i cant copy new files to my device. only i can listen what was in it.
    Please help my problem, what should i do?

    Please try formatting your player using the Creative Media Explorer software.
    . Connect your player to your computer's USB port using the supplied USB cable.
    2. Double-click the My Computer icon on your desktop.
    3. Click the ZEN Media Explorer icon.
    4. Click the Settings and Information button and click the Tools tab.
    5. Click the Format button.
    If it's still not working, you probably need to contact Customer Support for further assistance.

  • Creative sound blaster Z Khz and Format problems giving no more sound

    Hi there.
    First off let me say that i know little to none about audio, so i'm not a audiofile.
    Second i have some qeustions/problems with mij Creative z soundblaster and hoped someone else has tackeld these problems and is willing to teach how to setup this sound blaster.
    I'm using a Creative soudblaster z that is hooked up thourgh a toshlink cable to mij Logitech speaker set (z550) and till today al was working just fine!
    But i recently read something about the (i hope i say this right) Sample rates or KHZ that can improve mij Sound quality, so i read thath the blaser z can handle up to 128 Khz or something... so i thought let's give that a try!
    So in windows when right click on the speaker icon i got to playback devices and there i find 2 icons a SPDIF- Out and the Speakers icon of the creative z sound blaster.
    So i went to Speakers and changed the Default format( default is 24bit, 48000) to 24 Bit, 96000 (Hz studio quality).
    After this change i rebooted the computer and after the reboot al sounds where working!
    So after that i decided to got The Spdif-out and go to the Supported formats page, here i unchecked the 48.0 Khz box and checked the 96.0 Khz box.
    Also under Advance i changed the default format to 2 channel, 24 Bit, 96000 HZ.
    Now when i pres the test button EVERYTHING WORKS, when i run the windows speaker setup thiny al 5.1 speakers react the way they supposed to react.
    But when playing music or video there is no sound!
    Everytime i reboot windows and start up Aimp to listen to some music, the music wil play but there is no sound! When aimp is playing and i w8 for like 5 to 10 minuts the Decoder light on mij speaker console will light up and then i will hear sound!
    Normaly when i reboot windows the decoder light starts glowing imediatly now i either must w8 (this might tak hours somethime) or i go the sounds configuration and after pressing let's say 20x time the test souns button the sound start working for no reason!
    So is there anyon who has these problems (oh yeah deinstalled and reinstalled driver 4 time by now so it aint the driver or mij speaker because mij ps3 aswel as mij ps4 work properly and do give me sound) or better yet know how to resolve this isseu!
    Or did i not configurate the sound settings well ? please inform how i need to set them.
    And oh yeah Like i said i'm no audiofile, but as far as i understand the BOX the creative z comes in, it tells me i can go up to 128 KHZ so... the 98khz Should not be the problem, the sound card should be able to do this ? right !?
    So for everyone who read tis post Thank you for tanking the time to read it!
    For those who replyed even more thanks
    ooh yeah before i forget, if the post is a bit unclear for you pls don't hessitate to contact me or sent me mail for a more or better explenation of the problem, if you need aditional info PLS say so and i will post it

    Set your SPDIF to default settings. The Logitech speakers will be doing all of the work DECODING what you are outputting to it with your sound card. The SPDIF is strictly digital. The setting in your "speaker" option sets up the Analog to digital conversion bit depth and sample rates. With dolby digital and DTS connect though those will output at 16 bit, 48 khz. If you were connecting to your logitech speakers with the three analog cables (green-front left and right, Black-rear left and right, and yellow-center and surround) then your setting choices in the 'speakers" applet of control panel, sounds would have an effect on downsampling, upsampling, and output quality.
    Lastly, make sure to right click on the Speakers icon in the sound control panel applet and choose "set as default."

  • How to add "Comments" and attach files onto a form?

    My server is LiveCycle ES 2.5, trial version, Turnkey install / Express mode  with  Reader Extensions.
    Client side has IE8 and Reader X 10.1.2.
    User interface is the standard out-of-the-box WorkSpace ES.
    I have an application that routes a PDF form through a Workflow,
    the input/output of the User Tasks is a Document variable that points to the PDF form.
    I know that in the WorkSpace, ther's a built-in Attachment "tab" where the user can attach files and get them routed along with the form.
    But how about Reader's "attach file" (the paper clip) and annotations (the yellow sticker)?  how to allow users to use those features?
    I tried it in the WorkSpace, and when the form is loaded in the IE window, those features were disabled.
    How to enable them?
    Do I need to modify the standard Render service? and add 'Apply Usgae Rights' or something?
    is there an easier way that I missed?
    thanks

    Attachments are lost if your form submits as XDP. If you change the submit type to PDF then server that same PDF back to the next user, the attachments will be there. If you decide for other reasons, you still want to submit as an XDP, take a look at this: http://forums.adobe.com/message/4316578#4316578

  • Exporting and format problems

    On my pc, I downloaded the trail version of adobe audition. I have been unable to successfully export my creation onto a cd.
    I have tried everything. It simply wont allow me to export it from audition. The button doesn't work. Also, when I save it in a different format, the audio is not there.
    Thanks for the help...

    Perhaps you could tell us a bit more about exactly how you're trying to burn the CD and what (if any) error messages you get.  One quick thing to mention is that Audition only does audio CDs (not data CDs) and therefore will only burn if your files are 16 bit/44.1kHz sampling/Stereo files.
    Similarly, when you say "the audio is not there" what exactly do you mean?  Is there a waveform displayed that you don't hear, or is there sound but no waveform display...or just nothing?
    Finally, some details of what you're using (Mac/Windows, what sound card, etc.) is always useful.

  • Create a report from scratch, add Table and Datasource Problem

    Hi,
    I'm using the latest Crystal Reports Runtime supplied for eclipse.
    I want to create a report from scratch, add a Table and then add a ArrayList of Pojos as the Datasource.
    But unfortunately depending on the ConnectionInfo I supply to the Table I get different errors.
    I looked through the samples and see that I have to supply properties
    like
      "Database DLL", "crdb_javabeans.dll" and ConnectionInfo.setUserName("");
         ConnectionInfo.setPassword(null)
    I looked through the forums and find different set of properties.
    Actually because I am just working with Pojos I would have thougth that something like the following
    would be sufficient:
    ReportClientDocument  doc = new ReportClientDocument();
                doc.setReportAppServer(ReportClientDocument.inprocConnectionString);
                doc.newDocument();
    Table table = new Table();
    table.setAlias("reportTable");
    table.setName("reportTable");
    doc.getDatabaseController().addTable(oTable, null);
    doc.getDatabaseController().setDataSource(myCoolection, myClass, "reportTable", "reportTable");
    So could someone tell me the right/minimum Set of  Properties to make a Table get connected to Pojos?
    Edited by: jack mann on Aug 31, 2010 3:25 PM

    With XI Release 2, you can come quite close to creating from scratch:
    http://technicalsupport.businessobjects.com/KanisaSupportSite
    /search.do?cmd=displayKC&docType=kc&externalId=5074668
    You need Service Pack 2:
    http://support.businessobjects.com/downloads
    /service_packs/crystal_reports_en.asp
    Sincerely,
    Ted Ueda

  • Add comments, documents to cell

    Hi!
    Can I add comments and documents to cell in BPC?
    I need to attach word, excel documents to amount in cell.

    Hey KEU,
    actually yes, you can add comments and you can add documents in your reports,  but documents not with the standard of BOPC. I did it with a trick for one of our customers. In the first cell I use VBA to let the user add a document. The path to the document will be written as comment in the DB. In the second cell I get the comment (path) from the DB again and change the format of the link to hyperlink. If you click to the hyperlink, the added document will open.
    Hope, that helps you at least a bit
    Karsten

  • Adobe X Pro: Not able to add Comments/Attachments via comments only in certain pdfs

    Adobe X Pro: I am Not able to add Comments and Attachments  in some PDF.
    In the PDF i can't add - I can select the comment icon and attachment icon on the pdf,
    but it the icon on the pdf is white and no popup's for Attachments or comments entry open.Its like on double clicks, nothing happens
    In the Comments Options Menu- i see a lot of values disabled(screenshot below)
    But in one another document i am able to add them.In that pdf i can see all e optons enabled.

    The form may have security set, or it may have been Reader Extended in such a way that comments are locked out. Check security under File > Properties.

  • My comments and signatures automatically flatten in Reader 11.0.09.  How do I prevent that?

    This has been driving me crazy for months.  I have received PDF documents from others with their comment still editable but as soon as I save, it makes them permanent and I can't change anything.  Is there any way to keep the comments open on reader?

    Yes, it's the only pdf viewer I have.  I can open it and add comments and signatures but I can't edit them once I save the document.

  • [svn] 4308: Now that ASdoc processes MXML files, add comments to RichTextEditor.mxml, DefaultListEffect.mxml, and DefaultTileListEffect.mxml files.

    Revision: 4308
    Author: [email protected]
    Date: 2008-12-15 12:25:20 -0800 (Mon, 15 Dec 2008)
    Log Message:
    Now that ASdoc processes MXML files, add comments to RichTextEditor.mxml, DefaultListEffect.mxml, and DefaultTileListEffect.mxml files.
    QE Notes: None
    Doc Notes: None
    Bugs: -
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/RichTextEditor.mxml
    flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/DefaultListEffect.mxml
    flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/DefaultTileListEffect.mxml

    I'm also having this problem. I'm using Flash Builder 4.6, AIR 3.4 and I've made a DLL (e.g. ExtensionDll.dll) which needs to call functions in another DLL (e.g. DllUsedByExtensionDll.dll) . I've made sure my ANE is working with the ExtensionDll.dll already, so there are no issues with my actionscript code or my ANE packaging or my DLL compilation. However, once I start calling functions from the other DLL, it starts throwing me Error #3500. Even if I call this function (e.g. abc()) in ExtensionDll.dll, but I never actually use the function from actionscript, and I call another function (e.g. def()) from actionscript, the Error #3500 still appears, so it does not seem to depened on the whether the code is used or not.
    It's similar to this problem.
    http://stackoverflow.com/questions/9823504/how-to-use-external-dll-in-air-native-extension
    Does anyone have a solution or at least a way to debug this?

  • New blog entries experience "error updating .Mac", and no "add comments"

    Blog always worked fine. Now new blog entries get error updating .Mac message. New post does appear online, but there is no Add Comments option, despite it being selected in the inspector. Also, the blog main page doesn't show a title in the title bar at top. Might this have something to do with the new Mobile Me features (which I haven't tried or signed up for). When I delete the new posting and publish, it publishes fine. This error even happens with the template pg, so it's not anything to do with my formatting. Thanks for your help.

    I have not tried publishing a new Blog entry since the new "me" thing, but I did try just a text edit on an existing Entry and republished the Entry. It seemed to function normally.
    However, all of my Comments are missing from all my Blog entries - although the hit counts are still there.
    And my Slide Shows won;t work and thumbnails won't enlarge on my photo pages.
    Everything was working perfectly before this big "improvement" we just got.
    I sure hope this is temporary or I just might throw a fit. There was a lot of valuable stuff in those comments, and if there won;t be a Comments function at all, I won't be able to keep my blog at mac. com or me whatever.
    Why fix what isn't broken?
    jessica

Maybe you are looking for

  • Mail hang and is not responding in activity monitor after mavericks update

    I click on the mail icon in my dock it just hangs and wont open. The activity monitor says it is just not responding. Any suggestions?

  • Offline search engine based on Oracle Text and XML SDK?

    Hi, I am pretty new to Oracle Text, so I am not shure if the question is correct. We have an intranet, with lots of MS Word, PDF and HTML files. The site is starting to get out of hand, there is to many information distributed all over it. We would n

  • Outlook 2007 entryid error

    Hello, After the last from my iPhone to my laptop PC, all the contacts I had created on the iphone returned an error in contact list making outlook being stuck into an infinite loop when sending an email using these new contacts. After an edition of

  • Premiere Pro CS3 Crashes when I right click the timeline

    I have Premiere Pro CS3, and it runs fine most of the time. But as soon as I right click on one of the video clips on the timeline, it crashes and gives me an error: "A serious error has occured that requires Adobe Premiere Pro to shut down." This ha

  • Elements have moved when opening vi with f3 patch

    Many of the elements on the front panel when I open the vi with the LabVIEW 2009 f3 patch installed.  Is there any way to prevent this?  If not there's a lot of rework that will be required so things line up again... Solved! Go to Solution.