Creating a discussion board/forum using Flash

Ok I checked the WWW and used search here but I keep ending up with dead ends or inactive sites. 
Is it possible to create a forum using Flash?
If yes, does anyone know a resource I can use or examples I can see?

Ok so I'm still stuck on this issue now.  I have tried several forums flashkit.com all I got was a snotty response back:
"Might the worst idea ever."
Any help on whether or not message boards can be done?  IF so, what aspects of the design should I be aware of? Also, are there any resources??6

Similar Messages

  • How do I create a message board/forum using forms in Dreamweaver?

    I want to create a forum or messageboard using the form in Dreamweaver but I don't know how to do it. Is there any guidance on how I could create a message board or forum on Dreamweaver?

    I don't think it can be done with just dreamweaver,
    You will have to download something like PHPBB,
    If you have a host with fantastico deluxe you can easily set up a forum
    with it.
    Daniel

  • Access Denied Error on replying to a discussion board Post using anonymous access in sharepoint 2013 .

    Hi ,
    We are facing issue while replying to a post in Discussion board using Anonymous access users in Sharepoint 2013.
    WE are able to post a discussion using anonymous acess but not able to reply to the discussion post.
    Steps Performed  - :
    1. Enabled Anonymous access at Web application Level .
    2. In SiteCollection > Site Permissions > Anonymous Acess > Enable for List and Libraries .
    3.  Disable ViewFormPAgeLock Feature .
    4 .Go to Discussion board List >Permissions > Break Inheritence .
    5 . Given Add ,Edit and View item permission to anonymous users .
    6 . "Create and edit all items " Discussion Board Library Advanced Settigs  .Infact ,Neither option is working .
    Please suggest if we are missing soming .Please help
    Thanks
    Mayank

    Hi,
    According to your post, my understanding is that when you went to the Discussion List and selected the thread then view the list in “Flat” view, the Spelling ICON was greyed out.
    By design in SharePoint, when you view the list in “Flat” view, the ribbon would be as below:
    Only when you add a reply and move the mouse to the content, the Spelling ICON will appear.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Creating a backlit log without using Flash

    I've posted this in the Adobe Edge forum as I am not quite sure what program I need to use (or learn how to use) to create this effect:
    http://activeden.net/item/xml-text-effect-back-light/47739?WT.oss_phrase=bitfade&WT.oss_ra nk=5&WT.z_author=bitfade&WT.ac=search_list
    to my logo that I created in Adobe Photoshop.  The logo/banner can be viewed at this link:
    Home
    I have exported the various layers as png files into AE but don't see where or how to add this type of effect.  So far I have only figured out how to fade the logo in.  Am I using the wrong program?  If so, what should i be using.  If not, is there a tutorial available to show me how to add lighting effects?
    This is a whole new world to me, so any help is greatly appreciated.

    I'm rather a Luddite so I tend toward low-tech solutions.
    Have you considered a simple gif animation?
    For example I did this Streamside logo with only 19 frames.
    About Us :: Kards by Karen :: Handcrafted Greeting Cards
    Here's another on today's Google search page

  • Creating a file on server, using Flash AS3 + PHP

    I have a very simple PHP script that creates a new file on my server using a random number for the file name (e.g., 412561.txt).  When I load the script directly from a browser, it works.  But when I load the script from a very simple Flash (AS3) script, it does not work (i.e., doesn't create a file).  The Flash script and PHP script are both in the same directory.  Permissions on the directory and its content are 755.  Temporarily setting those permissions to 777 does not solve the problem (i.e., PHP still doesn't create file when called via Flash).
    Here is my phpinfo.
    Here is the PHP file.
    The contents of the PHP file are:
    <?php
    error_reporting(E_ALL);
    ini_set("display_errors", 1);
    $RandomNumber = rand(1,1000000);
    $filename = "$RandomNumber" . ".txt";
    $filecontent = "This is the content of the file.";
    if(file_exists($filename))
              {$myTextFileHandler = fopen($filename,"r+"); }
    else
              {$myTextFileHandler = fopen($filename,"w"); }
    if($myTextFileHandler)
              {$writeInTxtFile = @fwrite($myTextFileHandler,"$filecontent");}     
    fclose($myTextFileHandler);   
    ?>
    Here is the html container for the Flash script.  The Flash script features a single button which calls the PHP script when pressed.  In case it helps, here is the raw Flash file itself.  The code of the Flash script is as follows:
    stop();
    var varLoader:URLLoader = new URLLoader;
    var varURL:URLRequest = new URLRequest("http://www.jasonfinley.com/research/testing/TestingSaveData.php");
    btnSave.addEventListener(MouseEvent.CLICK,fxnSave);
    function fxnSave(event:MouseEvent):void{
              btnSave.enabled=false;
              varLoader.load(varURL);
    Directory listing is enabled at the parent directory here, so you can see there when a new text file is created or not.  (Um, if this is a security disaster, please let me know!)
    Can anyone please help me understand why this isn't working and how I can fix it?  Thank you
    ~jason

    #1, Yes that is a security risk, please disable directory index viewing.
    #2, Always validate. I see no issue with the code you're using but clearly it's not working. The way you find out is your trusty errors.
    Make a new document (or paste this into your existing) where a button with the instance name btnSave is on screen:
    // import required libs
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    import flash.events.IOErrorEvent;
    import flash.events.MouseEvent;
    import flash.events.SecurityErrorEvent;
    import flash.text.TextField;
    // assign handler
    btnSave.addEventListener(MouseEvent.CLICK, fxnSave);
    // make a textfield to display status
    var tf:TextField = new TextField();
    addChild(tf);
    tf.width = stage.stageWidth;
    tf.height = 300;
    tf.multiline = true;
    tf.wordWrap = true;
    tf.selectable = false;
    tf.text = "Loading...\n";
    // just making sure the textfield is below the button
    this.swapChildren(tf,btnSave);
    function fxnSave(event:MouseEvent):void
        // disable button
        event.currentTarget.enabled = false;
        // new loader
        var varLoader:URLLoader = new URLLoader();
        // listen for load success
        varLoader.addEventListener(Event.COMPLETE, _onCompleteHandler);
        // listen for general errors
        varLoader.addEventListener(IOErrorEvent.IO_ERROR, _onErrorHandler);
        // listen for security / cross-domain errors
        varLoader.addEventListener(SecurityErrorEvent.SECURITY_ERROR, _onErrorHandler);
        // perform load
        varLoader.load(new URLRequest("http://www.jasonfinley.com/research/testing/TestingSaveData.php"));
    // complete handler
    function _onCompleteHandler(e:Event):void
        tf.appendText("Load complete: " + e);
    // error handler
    function _onErrorHandler(e:Event)
        if (e.type == SecurityErrorEvent.SECURITY_ERROR)
            tf.appendText("Load failed, Security error: " + e + " type[" + e.type + "]");
        else if (e.type == IOErrorEvent.IO_ERROR)
            tf.appendText("Load failed, IO error: " + e + " type[" + e.type + "]");
    I get a Event.COMPLETE for mine, so the PHP script is definitely firing. Change the URL to something invalid and you'll see the IOErrorEvent fire off right away.
    That leaves you to diagnose the PHP script. Check your error_log and see what is going wrong. You're suppressing errors on your file write which doesn't help you locate the issue saving the file. If you want to handle errors yourself you should do the usual try/catch and handle the error yourself (write a debug log file, anything).

  • Read SharePoint Discussion Boards using ClientObjectModel

    Hi Team,
    I would like to know how to read discussion board list items using SharePoint Client Object model.
    Can we read using webservices(asmx) or restservices(svc).
    Please let me know is there any way to get the info.
    Thanks in advance.
    Krishnasandeep

    Hi
    Krishnasandeep,
    Please refer - http://blogs.microsoft.co.il/itaysk/2010/05/08/working-with-sharepoints-discussion-lists-programmatically-part-3/ 
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/a0b89ce4-932c-4171-a5c2-e748cdbb28c4/how-to-read-replies-in-discussion-board-item-using-client-object-model?forum=sharepointdevelopmentlegacy 
    Let us know if this helps, thanks
    Regards,
    Pratik Vyas | SharePoint Consultant |
    http://sharepointpratik.blogspot.com
    Posting is provided AS IS with no warranties, and confers no rights
    Please remember to click Mark As Answer if a post solves your problem or
    Vote As Helpful if it was useful.

  • Forum- discussion board

    hi,
    there was a discussion board- forum portlet on knowledge exchange. but its no longer available,
    if you have that portlet can you send it to me please, to
    [email protected]
    it will really help me.
    Regards.

    er, I think that should be:
    "The "Oracle Application Server Discussion Forum Portlet" is now available from this link :-
    http://www.oracle.com/technology/products/ias/portal/point_downloads.html"
    There are several links contain on the page relating to portal.

  • SharePoint 2013 Discussion Board lists wrong name in Reply

    Using a basic SharePoint 2013 Discussion Board with Content Approval enabled.  Because of Content Approval, all posts/replies must be approved before they are visible.  The problem is that SharePoint references the "Modified By" column
    in the Flat.aspx view when viewing a discussion thread.
    For example, let's assume we have three employees:
    Jaclyn - User who replied to main discussion thread
    Ryan - User who replied to Jaclyn's reply
    Brian - Admin w/ Approver rights to moderate comments
    In the screenshot below, Ryan clicked "Reply" on Jaclyn's comment. Once Brian approved it, SharePoint displays the note "In response to Brian's post" instead of "In response to Jaclyn's post". It seems to be referencing the
    Modified By column which updates to Brian's name once he approves it. 
    Is it possible to have SharePoint reference the correct name?  This is causing confusion in our organization since Brian is not involved in the discussion topic at all.  Thank you.

    Hi ,
    I could produce this issue based on your description.
    And I also created another Discussion Board without Content Approval, and created a new discussion, then:
    UserA replied to the main discussion thread.
    Admin replied to UserA’s reply.
    In Admin’s reply, it displayed “In response to UserA's post”.
    Administrator edited the UserA’s reply.
    UserB replied to UserA’s reply after Administrator edited.
    In UserB’s reply, it displayed “In response to Administrator's post”.
    By design, the ReplyToLink references the Modified By column of the reply when a user replys a existing reply.
    When we enable Content Approval and the approver approves the reply, by default, the approver has changed the item, and the Modified By is changed to the approver. So, for your issue, it is normal.
    Best Regards,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • How to change the Discussion board view to facebook posting type view

    hi friends..
    i want to change the discussion board view to facebook posting type.Where multiple discussions and comments on single page as well as all the comments should be in a threaded view and also i want to find a new discussion
    link in same page.
    can any one help me...

    Hi,
    As I understand, you would like to improve discussion board to display all posts on a single page with comments.
    There is no OOB option to customize discussion board. However, there are workarounds:
    You could create a site with Blog site template, and it could meet your requirement. More information about Blog site:
    http://office.microsoft.com/en-in/sharepoint-foundation-help/create-a-blog-HA010378201.aspx
    You could use Note Board web part instead, and customize it to allow reply:
    http://social.technet.microsoft.com/Forums/en-US/f7e466ee-ab53-47c5-9dd9-232e295bca6f/sharepoint-2010-note-board-web-part?forum=sharepointgeneralprevious
    You could customize Discussion Board directly using Content Query Web Part and XSL:
    http://sharepointsolutions.com/sharepoint-help/blog/2013/04/custom-discussion-board-rollup-using-content-query-web-part-and-xsl/
    Regards,
    Rebecca Tu
    TechNet Community Support

  • "One or more field types are not installed properly" when I try to add a second discussion board web part to a page

    I have a SharePoint 2010 site with two discussion boards. I added one additional field to each of the boards: a lookup to another list to link the discussions to individual projects. I need 2 different boards because they have different posting permissions
    (one is open to all for comments, and one is open only to the project team to post but everyone can read).
    When I go to the pages for each of the discussion boards, they work fine.
    But I'm putting together a page for individual projects, and want to have web parts for both discussion boards on the same page, showing the discussions related to the selected project.
    I am able to add one of the discussion boards to a web part in the page, but when I add the second discussion board to the page, the new web part contains:
    One or more field types are not installed properly. Go to the list settings page to delete these fields.
    Correlation ID: blah blah blah
    I've searched for similar postings, but mostly I see this error message related to migration from 2007 to 2010 -- this is not the case here: I created both discussion boards, and the whole site, in SP 2010. I've also found this message related
    to coding errors using SPQuery. I am not doing any coding here, just using the built-in SharePoint 2010 Edit Page -> add a web part -> select the discussion list.  I tried doing it from SPD with the same result. 

    I figured it out. I was using ?FilterField1=fieldname&FilterValue1=value on the URL to the page to pick out one project number. The web part I was trying to add was for a list that did not have that particular fieldname. I didn't realize that would matter
    since I was using the Connections -> Get Filter Values From to get my filter values from the main web part, which does have that fieldname.
    I added a field with that fieldname to the other list and set a workflow to copy the lookup value of the project number lookup field into the new field. Now all is working fine.  Sorry for the wild geese in my original question.

  • Discussion Board item not displaying in web part page

    Hi, I am using SharePoint 2013 on-premise. I created new Discussion Board name as "Discuss" and displayed in
    Management View as shown below.
    The list item showing properly without any issues.
    But when i am adding this web-part into web part page with Management
    view. The items are not displaying.
    What is the issue.? How to display the items here.?
    Thanks in advance.

    Hi Ismaiel,
    The Discussion Board is in same site.
    If displaying the web-part page with Subject view the items are visible.
    But when i am changing the view to Management the items are hidden.

  • Problem with NetConnection in Adobe AIR(Flex) using Flash Media Server.

    Hi
    I am creating a small chat application using Flash Media server. I have already created all my user interface components in Flex(Adobe AIR).In this application rather than sending text messages user can also  send  file to another user in his friend list.
    problem what i am facing is, when i am sending file through FMS most of time it send successfully but for some files while sending  application loss netconnection.
    so i would like to know, rather than closing application what are other condition when FMS loses network connection?
    Any help would be appreciated .
    Thanks.

    Hi. It looks like your code is not finding the mp3. At least,
    I can reproduce your error code by removing the mp3 from the
    directory, or renaming it.
    Btw, if you test with FF instead of IE, you'd see the error:
    Error #2044: Unhandled IOErrorEvent:. text=Error #2032:
    Stream Error.
    at KZFlash_fla::Sound_2/KZFlash_fla::frame1()
    Hope that helps.

  • Photo editing software using Flash Lite

    Hi all, I had been searching for an answer to this question
    for quite some time and did not find any. Please help. Is it
    possible to create a photo editing software using Flash Lite for
    Nokia devices? Am expecting features such as brightness, contrast,
    cropping, save and load function, etc... I am not expecting to
    create it myself, but outsourcing the development.
    If you know of any good development house, please let me
    know.

    I've used GIMP for years, which is a powerful photo editing program.

  • DVD Creation Using Flash

    Hi, is it possible to create an interactive DVD/CD using
    Flash? I want to be able to insert a DVD/CD into a machine (MAC or
    PC), double click the icon and launch a mini program with buttons
    such as play, next, etc. Can this be done using Flash only or do I
    require different software?
    Any help would be greatly appreciated!
    Thanks.

    Create your working FLASH file as an AIR type...otherwise it
    would require a
    browser to see the flash file. Also, for PC users you would
    probably want
    a .ini file to launch it.
    "the saved" <[email protected]> wrote in
    message
    news:go6c0n$evq$[email protected]..
    > Hi, is it possible to create an interactive DVD/CD using
    Flash? I want to
    > be
    > able to insert a DVD/CD into a machine (MAC or PC),
    double click the icon
    > and
    > launch a mini program with buttons such as play, next,
    etc. Can this be
    > done
    > using Flash only or do I require different software?
    >
    > Any help would be greatly appreciated!
    >
    > Thanks.
    >

  • Private Discussion boards

    Hello, I am setting up a discussion board in my intranet homepage, so all users can see all discussions. so far so good. But now i wanted to be able to make new discussions but with the option to invite some ppl and that discussion would only be avaiable
    and visible to me and the people i added (Kind of a private discussion). how can i do it? is it possible?

    Create a Discussion Board, add a People Picker column and call it Contributors, make it a multiple select people picker and a required field.  Now build a workflow that runs when a new item is created that is an impersonisation step workflow that
    alters the permissions of the current item as you require, i.e. give everyone listed in the contributors field contribute permission and the user who created the current item full control, etc.
    Regards
    Sergio Giusti
    http://sergioblogs.blog.co.uk/
    Whenever you see a reply and if you think is helpful, click " Vote As Helpful". And whenever you see a reply being an answer to the question of the thread, click "
    Mark As Answer".

Maybe you are looking for

  • Domain file does not open my iWeb websites after upgrading to Mavericks

    I just upgraded to mavericks so i could use Media Composer to edit my new movie. I backed up my computer and saved my domain file (which is over 1 gig large, as it has several websites I manage) I went back to my original CD of iLife and re-installed

  • Apps taking up too much space on my computer harddrive?

    Hi guys, Whenever I hook my iPad & iPhone up to iTunes it automatically starts to upload all of the apps from both devices onto my computer. This wouldn't be such a problem, but between the iPhone and the iPad, it takes up around 40 GB of space from

  • Connection to oracle database from sap R/3

    Hello SAP Masters, I do have two querries. 1) I want to download the data into oracle. so is it possible in sap? 2)please explain me how in details? 3) I tried with DBCON . 4) But when I wrote program stating the name of the connection it is giving d

  • Playing DVD problem's SKIPPING

    I just tried to play a DVD I get allot of skipping. Do any of you have this problem? There is nothing wrong with the DVD it is store bought not a copy and plays well in my other computer (P4 pavilion). Any ideas

  • Spry/Slide Show problems from new host

    Recently I moved my site from TDS to godaddy.  Everything worked well on TDS, now people get 4 error merssages before the site loads through Godaddy.  These are:1) SpryPannelSet.js requires SpryWidget.js! Then 2) SpryFadingPanel.js requires SpryPanne