Any Flex based wiki's available?

I was wondering if there are any packages available in Flex
that add a Flex based interface to a Wiki. It seems like it's an
ideal environment for WYSIWYG wiki entries. It's difficult to
search Google for one. I get tons of Wiki's about Flex but nothing
about a Wiki written in Flex.

What I'm looking for is a way to edit Wiki entries using a
true WYSIWYG editor. I guess it doesn't really matter what the Wiki
is written in on the server side but it seems like you could do a
better job with the user interface if it used Flex. I know there
are a number of interfaces that use Ajax to do what I'm looking for
but I haven't had much luck getting them to work across web
browsers.

Similar Messages

  • Is there any 'configuration based' tool/api available for content purging in CQ 5.5?

    Hi All,
    I am looking for some api/tool which could be utilized for the content purging in CQ 5.5. It should be a configuration based api which would take content path hierarchy as an input to do the purging.
    Any help/ideas are appreciated.
    Thanks.

    For what it's worth, I had no problems migrating an authentication plugin from 4 to 5. This is really good, because otherwise I wouldn't be able to use 5.1.

  • Wanting to Embed gothicCentury into our Flex based web app

    First,  please excuse my ignorance as I don't have a lot of expereience with Emedding fonts into a web application.
    I am looking to embed a Gothic Century font into our Flex based application that will be used by our customers via web.   We also my possible use it as a Air application. 
    If I want to do this,  how do I go about it in the flex world.   The font is available in our Designer's tools but we need to be able to have it accessiable in Flex legally. 
    Any guidance here would be very much appreciated.
    Thanks in advance for your suggestions

    Thank you for the quick response.
    It is understood that SWF and its content is intended to be rendered client-side. However, we were wondering if anyone has had any success with wrapping flash-player (such as Adobe AIR) around a SWF in such a way that the player could be called by a script server-side to generate graphs/images, which are then saved to disk and returned via a regular web service.
    I gave embedding the image on the HTML page, but the specific use we are most interested in is embedding the static thematic map into a report in the Word document format.  Since much of our content can already be accessed interactively using a browser and a flash-plugin, we are investigating methods of leveraging our SWFs to generate images server-side for the purposes of automated report generation.

  • Flex-based podcast player sample

    I'm looking for sample code for working with sound in Flex 3.
    The Podcast Player example referred to in the docs and downloadable
    as the zip Programming_ActionScript3.0_samples.zip seems to be
    geared to flash and doesn't include the .mxml files and possibly
    other necessary files. Is there a complete Flex-based version of
    this sample available?
    Any pointers to other Flex sound coding samples would be
    great as well.

    Hi- In my AIR-in-FlexBuilder beta demo I write a little music
    player from scratch. My voiceover cuts out midway through but you
    can see how I write the code, including how to use Sound and
    SoundChannel. This is all applicable to web-based Flex apps as
    well, except for the local filesystem part.
    http://labs.adobe.com/technologies/flex/videos/airinbuilder
    Does that help?
    -Tom

  • Flex based Offline File Upload Application

    Hi,
    I am developing a flex based desktop client application,
    which provides capability for offline and online file upload.
    I want to achieve following functionality.
    It detects whether user is online or not, If not online then
    it saves data to somewhere on local file system folder
    and as soon as it detects that user is online, it uploads
    data from local file systm folder to HTTP based server.
    I explored FileReference object in flash.net API, Apparently
    it does not provide any capability to store content to local file
    system.
    Is above mentioned offline file upload possible using action
    script ?
    Pls. help.
    Regards
    Tarun

    hi,
    for all offline working applications you need an offline swf
    to exe maker. i use mdm zinc. it is fantastic for the type of
    problem you mentioned. visit www.multidmedia.com and download a
    trial version. it will provide you with the necessary tool.
    gaurav

  • Help!  Does anyone know the best framework for delivering an enterprise-quality Flex-based reporting system?

    Background
    We need to build a commercial-quality, Flex-based reporting system for the corporate customers who use our English learning system.  Ours is a multi-tenant web-based Saas solution.
    he solution must include:
    >  a slick, professional design, including Flex/Flash UI and charting and graphing
    >  a full suite of serverside functionality such as report management, scheduling, export and delivery
    >  strong security in a multi-tenant environment
    >  can be integrated seamlessly with our existing Flex/.NET application
    >  data sources are MS SQL Server database and/or OLAP cubes
    >  scalability/performance to serve tens of thousands of users
    >  no per-user license fees (we need to own this system)
    The initial focus is on "canned" reports with some parameter controls, while future releases will include more freeform report designer/builder capabilities.
    Do you know of a good example/approach?  Please reply here, or to [email protected]
    Thanks in advance!

    Hello,
    The recommended way is with JCA Connector.
    Adaptive RFC is included from NW7.1,
    See "Creating an Adaptive RFC2 Sample Application without using Web Dynpro"
    in the SAP HELP of NWCE7.1 or NWCE7.2.
    Seems to be based in JCo 3.0 and Java5 so it will not work in NW70.
    For older Versions like EP 5 there is also a JCo ClientService available.
    Regards
    Johannes

  • Flex based Wysiwyg Editor

    Hi there
    Im new to flex, but im coding with PHP/MySQL since 2001 and
    will try to create a wysywig editor based on flex to manage website
    content in a backend.
    The RichTextEditor given by Flex looks really pretty, but
    there are some functions missing i have to add. What i need is a
    file and image upload and browser to add also images and link files
    in the Editor. It would be also a good feature to add tables.
    The plan is, to make this work with PHP/MySQL for the data
    handling.
    My first tests had shown me that its easy possible to add
    html-code like images in the RichRextEditor, but once inserted i
    dont have the possibility to access this image to set properties
    like size, border or also just delete it from the textarea.
    Does anybody know if would be better to create such an editor
    without the RichTextEditor given by flex? Maybe just with a
    TextArea? Or does maybe one of you got such an editor or is working
    on it?
    Any ideas based on this idea from the community?
    Thank you for a short response.
    Mike

    So far I got something that is acceptable but still working on it.
    private function colorCodeText() : void {
         var tempHTML:String;
         tempHTML = rawXMLEditor.htmlText;
         var tagRegExp:RegExp;
         //tag all the single xml as blue
         tagRegExp = /(<\w*>)|(<\/\w*>)|(<\w*)|(\/>)|(>)/g;
         tempHTML = tempHTML.replace(tagRegExp,"<FONT COLOR=\"#0000FF\">$&</FONT>");
         //tag attribute values
         tagRegExp = /(\w*)(\s)*=(\s)*(&quot;)((\w| |#|,|&apos;)*)(&quot;)/g;
         tempHTML = tempHTML.replace(tagRegExp,"<FONT COLOR=\"#990000\">$&</FONT>");
         rawXMLEditor.htmlText = tempHTML;
    <RichTextEditor id="rawXMLEditor" width="100%" height="100%" creationComplete="colorCodeText()"  />

  • #2032 error observed while launching flex based application from the standalone machine.

    We trying to launch flex based application deployed on weblogic on RHEL 6.4 OS with flash version 15.0, found #2032 error on UI. Request help us on this scenario.

    hi all,
    UPDATE:
    i have some how managed to handle my error at both REQUEST MESSAGE peoplecode and at HANDLER peoplecode. Tested the webservice using SOAPUI tool. After passing all inputs required, the customer is not created and i am getting a blank response message which should contain the SETID and CUST_ID as response. Please help me out whether i am missing any Key part in creating a CUSTOMER. Note, i haven't written any Peoplecode for creation and i am also not aware how to do the same or where to write the logic for it.
    Kindly bare with me and do help me out as i m struck with it for long. Thanks in advance

  • Is there any type of HiFi Station available for the 2nd Gen. iPod shuffle?

    I was wondering if there is any type of HiFi Station available for the 2nd Gen. iPod shuffle.
    With HiFi Station I mean those docking stations which directly play the music from your iPod, so that you don´t need to connect to your Computer f.e.
    Does anybody know if something like this exist, or if it is only available for ALL other iPod models???
    Thanks already!
    Stefan

    YOu can use one of these with any other iPod "HiFi Station": http://www.griffintechnology.com/products/dockshuffle/
    Use your 2nd generation iPod shuffle in full-size Universal Dock devices.
    Your iPod shuffle is an incredible entertainment value in an incredibly small package. It delivers the music just like its full-size iPod cousins. But one thing it doesn't do is fit in the dock well in your made-for-iPod speaker system.
    That's why we made a Dock Adapter especially for 2nd generation iPod shuffle. The Dock Adapter is shaped just like the dock connector on the bottom of every full-size iPod. Plug it into your iPod shuffle's headphone jack, and suddenly the little guy fits in your iPod speakers just like the big guys.
    Take Griffin Dock Adapter with you, and you can play your iPod shuffle wherever there's a set of Universal Dock speakers.

  • Is there any table or report that available in SAP for any PR/STR

    HI All,
    Is there any table or report that available in SAP for any PR/STR that are remain opened after S/O canceled.
    Please advice at the earliest.
    Thanks
    Chandru

    Chandru,
    Of course.  The standard MD06 transaction will display ALL MRP generated exception messages, and will take you to the individual material to allow you to determine how you wish to respond to it.
    So, MD06>enter the plant.  Optionally, enter the controller if you wish to limit the results by planner.
    If you are interested in Sales order cancellations, then these exceptions would be categorized by SAP as belonging to the  "exceptions during Scheduling" or "exceptions during availability" groups.  On the Exceptions group tab, select these two items (6&7), deselect the rest. Enter.
    You are now presented with a list of all materials that contain one or more of these exceptions.  From the menu bar at the top, select Edit>Find.  If you get a 'statistics' popup, click through.  Select the 'Find Exceptions' tab.
    Message 26 "excess stock in individual segment" means that in a MTO environment, you have more supply than demand against given order/items (as you would have if a cust. cancelled his MTO order).  Select this message.
    Message 20 "Cancel Process" means that you have a supply element that has NO requirements (as you would have if a cust. cancelled his MTS order).  Select this messaege.
    Message 15 " Postpone process" means that you have supply elements that are scheduled to be received earlier that necessary (as you might have if a Cust cancelled his MTS order). Optionally select this message.
    Clik the green check.  You will now notice that certain rows on the listing are highlighted.  These are the ones that contain your problem children.  Hit the "glasses selected MRP list" button.
    This takes you to the first MD05 of the highlighted items.  Review the problem.  Decide what to do:  Cancel a supply element?  Push out a supply element? Leave it alone?  Call customer service to discuss which order was cancelled and why?  etc etc etc...
    Once you are done with the first material, clik on the 'next material' icon or hit Ctrl-F2.  Repeat.  Continue till all materials have been evaluated and resolved.
    This works for any other MRP message as well.
    Regards,
    DB49

  • Contract Job - Flex based S3 (Amazon service) Browser

    Greetings all,
    (My apologies ahead of time if this is the wrong forum.)
    I posted a while ago on some of Amazon's forums looking for
    Flex (Actionscript really) libraries for interacting with Amazon's
    S3 service, but unfortunately received no responses. Fortunately
    for someone else, however, supply and demand has kicked in and my
    company has now posted a job for a Flex based S3 Browser on Elance.
    If you're interested, take a look:
    http://www.elance.com/c/rfp/main/jobInfo.pl?jobid=12099197&catId=10216
    Though the end product is intended to be closed source, I'm
    working to open up as much of it as I can.
    -Sean

  • Flex Based AIR application & remote HTML

    The question is ....from a flex based AIR application do you
    always have full access to all of the HTML content loaded from a
    remote site via the DOM (htmlLoader.window.document), or is the
    'context' of what you can see limited to what the initial url
    requested can see - i.e. the context is as if it were javascript
    running in the page corresponding to the initial URL.
    As far as i can see if i request say the page
    http://www.abc.com/page1.htm
    and it has content along the lines of
    <IFRAME src="
    http://www.xyz.com/page3.htm"
    id="remoteframe" />
    <IFRAME src="
    http://www.abs.com/page2.htm"
    id="localframe" /?
    then using the htmlControl.htmlLoader.window.document i can
    successfully navigate the DOM for the initial page loaded and
    localframe, but
    not remoteframe.
    I've seen various comments about sandboxes, bridges and
    applicationdomains in the documentation but i don't see how this
    can help me.
    Can someone please shed some light on this? Can i from the
    AIR application access all of the DOM, or am i restricted to the
    initially loaded page and pages referenced from the same domain in
    the page?
    Thanks
    Jamie

    Hi,
    From your AIR application, you can only access "exposed
    properties" in remoteframe.
    You expose a property by using the sandbox bridge mechanism:
    http://livedocs.adobe.com/air/1/devappshtml/help.html?content=security_5.html#1092959

  • Adobe Flex 4 Plug-in for HP Quick Test Pro could not find  any Flex environment fields (TEAFlex*.xml

    Hello all,
    When compiling Flex project with QTP automation libraries included (Flash Builder version is 4.5. QTP is 11, Adobe Flex 4.5 Plugin for HP QuickTest Pro is installed) the message as below pops up
    Adobe Flex 4 Plug-in for HP Quick Test Pro
    Adobe Flex 4 Plug-in for HP Quick Test Pro could not find
    any Flex environment fields (TEAFlex*.xml).
    OK
    After accepting it there is Flex application shown in IE8.
    Trying to record actions in the application gives no effect while TEAPluginIE.dll and TEAPluginQTP.dll are loaded during that.
    What could it be providing that TEAFlex.xml is in the directory where the TEA* dlls reside?
    Have a nice day!

    Adobe's official exam guide outlines exactly what you need to know:
    http://www.adobe.com/devnet/flex/pdfs/ace_exam_guide_flex4.pdf
    I took the Flex 3 ACE recently and found that the guide represents the exam content very well. It looks like there aren't a whole lot of changes in the Flex 4 ACE guidelines.
    To answer your questions:
    LCDS is not on the exam.
    What they expect you to know about the AIR library is very basic. It amounts to simple operation of an AIR app, file system operations, customizing the native window, drag-and-drop, and security. I've never developed an AIR app and got by just fine.
    Before taking the exam, I was already quite comfortable with much of Flex. Along the way I learned a few things that I haven't had a reason to touch. I found the exam to be quite easy, but I'm also a computer science guy and has also just experience Java certification which is much more difficult.
    I breezed through the Training From The Source book and was happy with it. However, you will do just as well with the LiveDocs for free.

  • Flex based app to html

    I have a current Flex based application and my boss want it to transfer to html/css based.
    Is it possible to do that easily? I mean if there is a plug-in or tool can do this conversion quicker. Already google but could not find one.
    What do you think the level of effort estimate to make this conversion?
    I don't know how to report to my boss...if it can only be converted manually and it is huge...
    Thanks

    If the app is huge and your boss wants HTML/CSS, better suggest he gets his story straight with the accountant as to why he is spending all that money degrading a perfectly good application.
    There are no automated tools, just hard work ahead. Think of the overtime.

  • Windows 8 error "product key does not match any of the Windows images available for installation"

    Hi Experts
    My HP Pavilion laptop came with window 8. I made the USB recovery for windows 8 using hp recovery manager. My windows was corrupted, while I was trying to install windows 7 in dual boot.
    I used above USB recovery to restore factory default. But every time it is giving me error "HP Recovery Manager Failed error code = 0xefffff08"
    Then I downloaded the OEM ISO mage for windows 8 and tried to do the clean install but now installation process is giving me error "The product key entered does not match any of the Windows images available for installation. Enter a different product key" 
    Please help me. To whom I have to contact?

    Hi ghost-rider,
    Thank you for your query, I will do my best to assist you.
    I understand you tried to do a recovery and you received this error  "oxefffff08".
    First I would suggest you run a hardware diagnostics. Testing for Hardware Failures (Windows 8)
    If no hardware failures are located, you have ruled that possibility out.
    Here is a link to Troubleshooting HP System Recovery Problems (Windows 8) that may help.
    If you are still having an issue doing a recovery, I suggest contacting HP support and explain the issue you are having with doing a recovery. They may have another option available for you.
    Please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region  Technical Support Sitemap
    The clean install from an OEM image is looking for the product code as it does not match the one that came with the computer, You would need a new code.
    I hope this has helped.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

Maybe you are looking for

  • Exchange Email: Days to Sync

    What does the "Days to Sync" feature do on the iPhone? I understand that it tells it how many days of email to sync up, but what are the advantages/disadvantages to having it set as "no limit?" Is there a way to get it to display only x amount of mes

  • My phone wont let me add contacts HELP!!!

    as of this morning my phone will not let me add any new contacts i have a curve 8520,i have tried restarting my phone etc and nothing has worked. any ideas?

  • Error in cross company STO scenario

    Hi All, We have a cross company STO scenario. When I try to create the PO (document type NB) I get an error that "Customer XYZ does not exist (please change entry in plant ABCD)" I have rightly assigned the customer XYZ to the plant ABCD as required

  • Unable to save permission changes in templates in win 2012

    Hi, PKI set up of (2003 and 2008) based Sub CA and 2003 based AD ( with schema version supporting 2008) is running in the enviornment. Now CA is migrating to 2012 setup. When i try to create template and make permission changes, it says " unable to s

  • 6630 PC SUITE INSTALLATION PROBLEM

    Windows XP PROFESSIONAL edition, Version 2002, service pack 1 When downloading PC suit I get the following error message:- Error 1402.COULD NOT OPEN KEY: HKEY_LOCAL_MACHINE\software\classes\Msxml2.Domdocument.4.0\CLSID I tried several times to instal