Difficulties using Flex Builder plugin version

The strangest thing just happened. I want to look into Zend, so after reading a bit on the web I decided to uninstall Flex Builder 3 standalone version and install Eclipse 3.4 and then install the plugin version of Flex Builder 3.
But after I installed when I click on the Run button I get an error message:
'Launching cmd' has encountered a problem.
Variable references non-existant resource :
${workspace_loc:/Misc/src}
I assume this is because users need prior experience with using Eclipse, but I don't understand why the Adobe plugin version of Flex Builder cannot be such that it just works out of the box.
I have to say I am blown away by this and will immediately uninstall the plug-in version and re-install the standalone.
Any hints on what went wrong? I may try this again sometime but I want to get some work done tonight and I don't have time for this. Really amazed.

Hi Greg,
I am using the Flex Builder plug-in and I don't remember ever running over this. You said that you have uninstalled Flex Builder before installing Eclipse. I'm not sure ( this is only a guess ) but what if certain setting that you had in Flex Builder remained on your system ( like the path to your workspace that I think got deleted when you uninstalled it ) and when you installed Eclipse, then it was trying to access the information previously stored by Flex Builder.
I'm not sure if that's what the Error says but you might want to check if you workspace still exists and if it does, then does it contain a folder called "Misk/src". I really don't remember running over this error, the Plug-in worked just fine for me.
With best regards,
Barna Biro

Similar Messages

  • Getting the Flex Builder Plugin for Eclipse

    I may be a dope, but I can't tell you how long it took me to
    find the download for the Flex Builder plugin for an existing
    install of Eclipse. If you're looking for the plugin, go to the
    last line of the FlexBuilder standalone download page--and then, in
    the last line, you will see a link buried in the line--click on
    that, and you will get the download. Adobe, this is really, really
    stupid way to organize your downloads.

    Ha, I'm not alone ;)
    Thanks for pointing it out. It might seem obvious once you
    notice the link, but I totally missed it.
    The Adobe flex builder rips off numerous useful features that
    eclipse offers, such as the ability to search all files, and it is
    very inconvenient.

  • How to add interface to customlize MXML Component when use Flex Builder 3?

    How to add interface to customlize MXML Component when use
    Flex Builder 3?

    David,
    I don't believe you can add the interface via the creation
    dialog in FlexBuilder 3. You can always manually add the
    "implements" property to your MXML Component root tag. Something
    like this: <mx:VBox implements="com.mycorp.IMyInterface">
    If you want autogeneration of the interface, then create an
    ActionScript class with that interface and then copy the generated
    functions and setter/getters into the script block of your MXML
    component.

  • Eclipse + Flex Builder Plugin + RDS

    Hi All,
    I've got a strange problem with Eclipse and the Flex Builder
    and RDS plugins. I configure the RDS connection in
    Window->Preferences->RDS Settings however when I Test the
    connection I keep getting the error message "Unable to contact RDS
    server 'localhost'". I have the settings configured exactly the
    same as they are in HomeSite+. HomeSite+ can connect fine, but
    Eclipse cannot!
    Has anyone come across this issue or knows of a workaround?
    Do I have to install something in a particular order?
    Thanks for any help.

    Could you please let me know the CF version, install
    configuration and OS? CF versions 6.1 and prior are not supported
    by the RDS plugin.
    We had a similar issue in beta 1 that got fixed and it was
    related to the password. If the CF version is not the problem,
    please email me your RDS password directly at [email protected] I
    know you tried using no password - did you mean the server admin
    password or the RDS password (you cannot have a blank RDS
    password)?
    The order of installing plugins doesn't make a difference.
    Thanks,
    Farah

  • Calling WebServices using Flex Builder

    Hello,
    I want to use a WebService in the Flex Builder. I first defined the WebService:
    <mx:WebService id="test" wsdl="http://ld9030.wdf.sap.corp:50050/sap/bc/srt/rfc/sap/ZTP_TEST4?wsdl" result="log(event)" showBusyCursor="true">
    I have 2 importing parameters in the WebService (IText and IText2).
    But in the log-method, I cannot access these parameters:
        private function log(event:ResultEvent):void {
         var test1 = event.result.IText;
    Do you know, how I can access the import parameters?
    Please find attached the wsdl definition.
    Thanks,
    Thomas
      <?xml version="1.0" encoding="utf-8" ?>
    - <wsdl:definitions targetNamespace="urn:sap-com:document:sap:soap:functions:mc-style" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="urn:sap-com:document:sap:soap:functions:mc-style" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    - <wsdl:types>
    - <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="urn:sap-com:document:sap:soap:functions:mc-style" targetNamespace="urn:sap-com:document:sap:soap:functions:mc-style" elementFormDefault="unqualified" attributeFormDefault="qualified">
    - <xsd:element name="TpTest">
    - <xsd:complexType>
    - <xsd:sequence>
      <xsd:element name="IFlag" type="xsd:string" />
      <xsd:element name="IFlag2" type="xsd:string" />
      </xsd:sequence>
      </xsd:complexType>
      </xsd:element>
    - <xsd:element name="TpTestResponse">
    - <xsd:complexType>
    - <xsd:sequence>
      <xsd:element name="EText" type="xsd:string" />
      <xsd:element name="EText2" type="xsd:string" />
      </xsd:sequence>
      </xsd:complexType>
      </xsd:element>
      </xsd:schema>
      </wsdl:types>
    - <wsdl:message name="TpTest">
      <wsdl:part name="parameters" element="tns:TpTest" />
      </wsdl:message>
    - <wsdl:message name="TpTestResponse">
      <wsdl:part name="parameters" element="tns:TpTestResponse" />
      </wsdl:message>
    - <wsdl:portType name="ZTP_TEST4">
    - <wsdl:operation name="TpTest">
      <wsdl:input message="tns:TpTest" />
      <wsdl:output message="tns:TpTestResponse" />
      </wsdl:operation>
      </wsdl:portType>
    - <wsdl:binding name="ZTP_TEST4SoapBinding" type="tns:ZTP_TEST4">
      <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
    - <wsdl:operation name="TpTest">
      <soap:operation soapAction="" />
    - <wsdl:input>
      <soap:body use="literal" />
      </wsdl:input>
    - <wsdl:output>
      <soap:body use="literal" />
      </wsdl:output>
      </wsdl:operation>
      </wsdl:binding>
    - <wsdl:service name="ZTP_TEST4Service">
    - <wsdl:port name="ZTP_TEST4SoapBinding" binding="tns:ZTP_TEST4SoapBinding">
      <soap:address location="http://us4419.wdf.sap.corp:50050/sap/bc/srt/rfc/sap/ZTP_TEST4?sap-client=000" />
      </wsdl:port>
      </wsdl:service>
      </wsdl:definitions>

    You can try putting the URL in a var as the next example:
    private var wsdl:String = "http://sapbdo5.bdo-argentina.com:8002/sap/bc/srt/rfc/sap/ZVER_TABLA?wsdl=1.1";
    private var wsdl2:String = "http://sapbdo5.bdo-argentina.com:8002/sap/bc/srt/rfc/sap/ZVER_TABLA?sap-client=600&wsdl=1.1";
              [Bindable] private var datos:ArrayCollection;
              private function retrieve_data():void{
                   //ws.loadWSDL(wsdl);
                                                                    ws.loadWSDL(wsdl2);
                   ws.ZVER_TABLA(txt.text);
              private function handleError(ev:Event):void{
                   Alert.show("Se produjo un error");
              private function handleResult(ev:ResultEvent):void{
                   datos = ev.result.DATA;
         ]]>
    </mx:Script>
    <mx:WebService id="ws" showBusyCursor="true" makeObjectsBindable="true">
         <mx:operation name="ZVER_TABLA" fault="handleError(event)"
         result="handleResult(event)"/>
    </mx:WebService>
    <mx:TextInput id="txt" enter="retrieve_data()" x="10" y="10"/>
    <mx:Button label="Ver datos" click="retrieve_data()" x="178" y="10"/>
    <mx:DataGrid id="dtGrid" horizontalScrollPolicy="auto" dataProvider=""
    verticalScrollPolicy="auto" right="10" bottom="10" top="40" left="10"
    visible="false"/>

  • How to use Flex builder with blazeds and JBoss

    Following the instructions it is pretty easy to set up a project to work with the turnkey tomcat. However, I am having problems with JBoss because the app has to be deployed as a .war file. I can create a war file manually and depoly it no problem. How do I get flex builder to deploy to a war file? I want to be able to debug in flex builder and run at the click of a button.

    Hi,<br /> I am trying to configure BlazeDS with JBOSS Application Server.<br /> I have downloaded BlazeDS binary version - blazeds_bin_3-0-0-544.zip from Adobe. But in the installation steps, it says that copy blazeds.war, samples.war and console.war into <JBOSS_HOME>/server/default/deploy folder. But in this zip, it contains only blazeds.war file only. I have copied it to <JBOSS_HOME>/server/default/deploy folder.<br /><br />I have restarted JBoss. I didn't get any error. But when i give <br /> http://localhost:8080/blazeds ... i am always getting "Page not found 404" error.<br /><br />Please help me, if you have detailed steps to configure BlazeDS on JBoss.<br /><br />Thanks for your time.

  • Where do the Datavisualization files go when not using Flex Builder?

    My application has charting and I use the sdk and ant
    directly, not flex builder. I know where those files are under FB
    but where do I place the datavisualization swf, swc and swz files
    in the sdk in order to have charting without flex builder?
    Thanks!

    Hey lllaass,
    Thanks for your response.
    I basically got an email from a friend with a link to google drive, that link took me to drive n then there was a download bottom which popped when I clicked on the files icon, these are 3 audio files which are recorded on a computer n sent to me via drive..
    I too think it opened directly from drive.. Let me know though if u do come across some solution.
    Thanks

  • Fonts in Flex Builder Plugin

    Hi,
    I'm using Eclipse with Flash Builder plugin. It appears that there are only a handful of fonts in design mode. Is it possible to increase the selection? Thanks.

    This is a list of the most common device fonts present on all platforms, which is why it is short.
    If you want more choice, use embedded fonts:
    http://cookbooks.adobe.com/post_Using_rich_HTML_text_formatting_with_embedded_font-16974.h tml

  • Flex builder plugin for Eclipse

    Hi,
    I downloaded flash builder and tried some examples. flash builder is comercial one.
    For that reason i am trying to configure flex builder  as a eclipse plugin.
    Flex builder for eclipse plugin is open source/ it is also comercial?
    Please share me the knowledge for successful confiuration of Flexbuilder with Eclipse.
    Thanks in Advance.

    Hi,
    Please go through these links.
    1) http://www.darronschall.com/weblog/2005/08/setting-up-eclipse-for-flex.cfm
    2) http://www.seanhsmith.com/2010/03/29/flex-for-free-setting-up-the-flex-4-sdk-with-eclipse- ide/
    3) http://livedocs.adobe.com/flex/3/html/help.html?content=overview_4.html
    Thanks and Regards,
    Vibhuti Gosavi | [email protected] | www.infocepts.com

  • Can I use Flash Player plugin version 11.2.202.228 with my Firefox ESR 10.0.7 instead of the most current Flash Player plugin?

    I am trying the Tor web browser software pack and it comes with Firefox ESR 10.0.7.
    Right now, I'm trying to install a Flash Player plugin because it doesn't have one in this Firefox ESR 10.0.7 already, or this browser just doesn't see the slightly older Flash Player 11.2.202.228 plugin that I already have already installed on this machine.
    '''Is there a way to make this Firefox ESR 10.0.7 browser see the Flash Player plugin 11.2.202.228 that I already have installed on this machine without installing the newest, possibly problematic Flash Player plugin?'''
    I already have the Flash Player 11.2.202.228 plugin installed on this machine, a PC with Windows 7 ULT, because the most current versions of the Flash Player plugin had some problems and they wouldn't allow Flash content to play at all, so I reverted back to a slightly older version of the Flash Player that was reliable, crash free, and most importantly, it works.
    But when I try to play any Flash content in this Tor-Firefox ESR 10.0.7 browser it tells me I don't have a Flash Player on this machine, or installed as a browser plugin or add-on, and it wants me to install the most current Flash Player on this machine, which I DO NOT want to do for the reasons I stated above.
    My other Firefox browser, along with Google's newest Chrome browser and a newer version of the Safari browser for Windows, plus an older Internet Explorer 8, all WORK JUST FINE with the Flash Player 11.2.202.228 that I have installed on this computer and Google Chrome and Safari didn't even require having newer Flash Player plugins installed at all... they just see the Flash Player 11.2.202.228 plugin that I already have on this machine and they play all Flash content perfectly.
    So can I just make this Tor-Firefox ESR 10.0.7 browser see the existing Flash Player 11.2.202.228 plugin that I already have on this machine?... and if so, how do I do that?
    Thanks for any help.
    Also, I'm not able to find an actual community help forum for Tor, even via their "Torproject.org" website... is there one?
    Thanks,
    numetro

    You should actually be using Flash 10.3 (11.2 is insecure).[[Flash 11.3 doesn't load video in Firefox#w_solution-2-downgrade-flash|Solution 2: Downgrade Flash]].
    Also, is there a reason you are using Firefox ESR? It's mean for organizations, and doesn't include all the security and stability fixes that Firefox latest (15.0.1) has.

  • In the Flash Builder Plugin version, why did it install another "alternate Eclipse"?

    In the Flash Builder 4 Plug-in installer I just ran, why did it install whats seems to be another copy of Eclipse in my "C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in" folder, along with a shortcut called "Run Adobe Flash Builder 4 Plug-in with alternate Eclipse"?
    I was only expecting a plug-in in my current Eclipse installation. What is going on here?

    Hi Pup500,
    FB4 Plug-in comes bundled with the full Eclipse 3.4.2 (Ganymede) Package for Java Developers, and also supports linking FB4 to your own copy of eclipse 3.5 (Galileo) or 3.6 (Helios).
    We considered bundling one of the larger Packages (Eclipse for PHP Developers, etc.), but wanted to keep the footprint smaller, and the package for Java Developers was the smallest one that still includes the JDK.
    The shortcut for the "alternate" should point to your own copy of eclipse, and the default launcher shortcut should point to the bundled copy under the subfolder \eclipse-host-distro. The default shortcut will launch eclipse/FB4 using our bundled copy of the JRE, but the alternate shortcut assumes that you either have a compatible JRE installed system-wide, or that you have a valid JRE folder in your eclipse folder.
    Some of the reasons we started bundling eclipse with FB4 Plug-in were:
    - the custom configuration (ini file settings, memory allocation, etc.) provided in the bundled copy of eclipse can be used as a guide for optimizing your own eclipse configuration, for improved performance with FB4.
    - on Win, we bundle a compatibility-tested version of the JRE for use with the bundled copy of eclipse. This can come in handy on 64-bit Win, as we provide a 32-bit version of the JRE compatible with FB4. You can copy this same JRE folder into your own copy of 32-bit eclipse, if you wish to avoid installing a system-wide version of 32-bit java.
    - if you encounter any version or bundle conflicts with your own copy of eclipse, you can still run the bundled copy as a fallback, until any problems are resolved.
    Out of curiosity, which version and package of eclipse are you plugging into?
    -Chris

  • Flex Builder plugin for Windows Helios 32 bit + WTP

    I tried to create a Flex Project in Helios 32 bit on hitting Finish button I got following error:
    Errors were encountered while creating the project .Reason: One or more constraint have not been met.
    Below is my eclipse log:
    pls note last line in the logContains: Dynamic Web Module 3.0 requires Java 1.6 or newer.
    !SESSION 2010-08-04 08:44:58.743 -----------------------------------------------
    eclipse.buildId=I20100608-0911
    java.version=1.6.0_20
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Framework arguments: -product org.eclipse.epp.package.jee.product -product org.eclipse.epp.package.jee.product
    Command-line arguments: -os win32 -ws win32 -arch x86 -product org.eclipse.epp.package.jee.product -data D:\Projects\gf -product org.eclipse.epp.package.jee.product 
    !ENTRY com.adobe.flexbuilder.project 4 43 2010-08-04 08:56:46.608
    !MESSAGE Error on perform finish:
    !STACK 0
    java.lang.reflect.InvocationTargetException
    at com.adobe.flexbuilder.project.ui.wizards.AbstractFlexProject Wizard$FlexStrategy$2.run(AbstractFlexProjectWizard.java:807 )
    at org.eclipse.jface.operation.ModalContext$ModalContextThread. run(ModalContext.java:121)
    Caused by: org.eclipse.core.runtime.CoreException: One or more constraints have not been satisfied.
    at org.eclipse.wst.common.project.facet.core.internal.FacetedPr oject.modifyInternal(FacetedProject.java:364)
    at org.eclipse.wst.common.project.facet.core.internal.FacetedPr oject.mergeChangesInternal(FacetedProject.java:1182)
    at org.eclipse.wst.common.project.facet.core.internal.FacetedPr oject.access$2(FacetedProject.java:1118)
    at org.eclipse.wst.common.project.facet.core.internal.FacetedPr oject$1.run(FacetedProject.java:325)
    at org.eclipse.core.internal.resources.Workspace.run(Workspace. java:1975)
    at org.eclipse.wst.common.project.facet.core.internal.FacetedPr oject.modify(FacetedProject.java:340)
    at com.adobe.flexbuilder.project.ui.wizards.FlexProjectWtpHelpe r.addJ2eeFacets(FlexProjectWtpHelper.java:250)
    at com.adobe.flexbuilder.project.ui.wizards.FlexProjectWtpHelpe r.performFinish(FlexProjectWtpHelper.java:142)
    at com.adobe.flexbuilder.project.ui.wizards.AbstractFlexProject Wizard$FlexStrategy$2.run(AbstractFlexProjectWizard.java:805 )
    ... 1 more
    Root exception:
    org.eclipse.core.runtime.CoreException: One or more constraints have not been satisfied.
    at org.eclipse.wst.common.project.facet.core.internal.FacetedPr oject.modifyInternal(FacetedProject.java:364)
    at org.eclipse.wst.common.project.facet.core.internal.FacetedPr oject.mergeChangesInternal(FacetedProject.java:1182)
    at org.eclipse.wst.common.project.facet.core.internal.FacetedPr oject.access$2(FacetedProject.java:1118)
    at org.eclipse.wst.common.project.facet.core.internal.FacetedPr oject$1.run(FacetedProject.java:325)
    at org.eclipse.core.internal.resources.Workspace.run(Workspace. java:1975)
    at org.eclipse.wst.common.project.facet.core.internal.FacetedPr oject.modify(FacetedProject.java:340)
    at com.adobe.flexbuilder.project.ui.wizards.FlexProjectWtpHelpe r.addJ2eeFacets(FlexProjectWtpHelper.java:250)
    at com.adobe.flexbuilder.project.ui.wizards.FlexProjectWtpHelpe r.performFinish(FlexProjectWtpHelper.java:142)
    at com.adobe.flexbuilder.project.ui.wizards.AbstractFlexProject Wizard$FlexStrategy$2.run(AbstractFlexProjectWizard.java:805 )
    at org.eclipse.jface.operation.ModalContext$ModalContextThread. run(ModalContext.java:121)
    Contains: Dynamic Web Module 3.0 requires Java 1.6 or newer.
    Anyone can help me out? Thanks a lot

    I tried to create a Flex Project in Helios 32 bit on hitting Finish button I got following error:
    Errors were encountered while creating the project .Reason: One or more constraint have not been met.
    Below is my eclipse log:
    pls note last line in the logContains: Dynamic Web Module 3.0 requires Java 1.6 or newer.
    !SESSION 2010-08-04 08:44:58.743 -----------------------------------------------
    eclipse.buildId=I20100608-0911
    java.version=1.6.0_20
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Framework arguments: -product org.eclipse.epp.package.jee.product -product org.eclipse.epp.package.jee.product
    Command-line arguments: -os win32 -ws win32 -arch x86 -product org.eclipse.epp.package.jee.product -data D:\Projects\gf -product org.eclipse.epp.package.jee.product 
    !ENTRY com.adobe.flexbuilder.project 4 43 2010-08-04 08:56:46.608
    !MESSAGE Error on perform finish:
    !STACK 0
    java.lang.reflect.InvocationTargetException
    at com.adobe.flexbuilder.project.ui.wizards.AbstractFlexProject Wizard$FlexStrategy$2.run(AbstractFlexProjectWizard.java:807 )
    at org.eclipse.jface.operation.ModalContext$ModalContextThread. run(ModalContext.java:121)
    Caused by: org.eclipse.core.runtime.CoreException: One or more constraints have not been satisfied.
    at org.eclipse.wst.common.project.facet.core.internal.FacetedPr oject.modifyInternal(FacetedProject.java:364)
    at org.eclipse.wst.common.project.facet.core.internal.FacetedPr oject.mergeChangesInternal(FacetedProject.java:1182)
    at org.eclipse.wst.common.project.facet.core.internal.FacetedPr oject.access$2(FacetedProject.java:1118)
    at org.eclipse.wst.common.project.facet.core.internal.FacetedPr oject$1.run(FacetedProject.java:325)
    at org.eclipse.core.internal.resources.Workspace.run(Workspace. java:1975)
    at org.eclipse.wst.common.project.facet.core.internal.FacetedPr oject.modify(FacetedProject.java:340)
    at com.adobe.flexbuilder.project.ui.wizards.FlexProjectWtpHelpe r.addJ2eeFacets(FlexProjectWtpHelper.java:250)
    at com.adobe.flexbuilder.project.ui.wizards.FlexProjectWtpHelpe r.performFinish(FlexProjectWtpHelper.java:142)
    at com.adobe.flexbuilder.project.ui.wizards.AbstractFlexProject Wizard$FlexStrategy$2.run(AbstractFlexProjectWizard.java:805 )
    ... 1 more
    Root exception:
    org.eclipse.core.runtime.CoreException: One or more constraints have not been satisfied.
    at org.eclipse.wst.common.project.facet.core.internal.FacetedPr oject.modifyInternal(FacetedProject.java:364)
    at org.eclipse.wst.common.project.facet.core.internal.FacetedPr oject.mergeChangesInternal(FacetedProject.java:1182)
    at org.eclipse.wst.common.project.facet.core.internal.FacetedPr oject.access$2(FacetedProject.java:1118)
    at org.eclipse.wst.common.project.facet.core.internal.FacetedPr oject$1.run(FacetedProject.java:325)
    at org.eclipse.core.internal.resources.Workspace.run(Workspace. java:1975)
    at org.eclipse.wst.common.project.facet.core.internal.FacetedPr oject.modify(FacetedProject.java:340)
    at com.adobe.flexbuilder.project.ui.wizards.FlexProjectWtpHelpe r.addJ2eeFacets(FlexProjectWtpHelper.java:250)
    at com.adobe.flexbuilder.project.ui.wizards.FlexProjectWtpHelpe r.performFinish(FlexProjectWtpHelper.java:142)
    at com.adobe.flexbuilder.project.ui.wizards.AbstractFlexProject Wizard$FlexStrategy$2.run(AbstractFlexProjectWizard.java:805 )
    at org.eclipse.jface.operation.ModalContext$ModalContextThread. run(ModalContext.java:121)
    Contains: Dynamic Web Module 3.0 requires Java 1.6 or newer.
    Anyone can help me out? Thanks a lot

  • Hi there... I need a little help with buttons and their actions using flex builder 4.5

    I run a repo company and have zero experience in the developing applications and I could use some help from anybody that is willing to give it.... Here is a basic idea of what I need...  let's say there are 3 states... state 1 has a question that says "car you read this?" and a "yes" and a "no" button... when you select either answer, you go to slide 2.  Slide 2 with have a question like "Is the sky brown?" and a "yes" and a "no" button and when either button is selected, you are taken to Slide 3.  Slide 3 needs to be some sort of a text form that is created by the user selecting the buttons and the screen would say something like "yes, i can read this.  no, the sky is not brown", or "no, I can't read this.   yes, the sky is brown" .  I know how to get the buttons to take the user to the correct new slide, but I do not know how to get the buttons to insert specific text somewhere else when any button is selected.... Can anybody help me?  Youtube is only getting me so far, and my kids are driving me nuts while I'm trying to figure this monster out...  I've gotten several slides created and some screens have several buttons, I just need to see what I need to put in the code to get it to do this type of function 

    Also where can I read up on setting my .Xdefaults and xmonad.hs file? I ripped someones from this forum, and it works nice, but I want to make my onw, but cant find any decent documentation. Thanks.
    At the moment, the best source for configs are those posted in the screenshots thread (for both Xdefaults and xmonad.hs), the xmonad config archive (and the available docs from the root page on that site), and our own thread.  Unfortunately you'll have to sort of scrounge for good docs on the xmonad.hs at the moment, since most of the information was written for the 0.4 version of xmonad.  The configuration has since been made MUCH simpler.
    Hope that helps some.

  • How to add new room in LCCS for live streaming video  using flex builder

    Hi,
               I have created a video conferencing functionality  using LCCS. Now i want to create a room programatically.
    So that user can create his own room and invite his/her friends.I am looking for solution on this.
    Any guidance on  this

    Quick suggestion : the documentation has a whole section on this =) :
    http://learn.adobe.com/wiki/display/lccs/06DeployingApplications
      nigel

  • License not present.  With the trial version only limited replays are allowed -- Flex builder 4.5 Premium eclipse plugin with SDK 3.5

    Hi ,
    We are using Flex SDK 3.5 and using eclipse to build the war in order to make it automation compatible , Right now we tried with Premium version of Flex Builder 4.5 eclipse plugging to build and make application automation capable. But we are facing issues in terms of license , After deploying the automation compatible build we are getting error message "License not present.  With the trial version only limited replays are allowed".
    Previously we are using Flex Builder 4.0 and everything was working fine .
    Is Flex Builder 4.5 doesn't support SDK 3.5 ?
    Please help .
    Thanks in advance
    Thanks and Regards
    Sunil Kumar

    with trial version (FB basic) you can record/replay only 30
    script lines. You need to buy FB pro license to remove this
    restriction

Maybe you are looking for

  • Sender File FCC - Key Field Value not available in file

    Hi All, I am new to SAP PI. I am working on Sender FCC. Below is the source file structure. I need to handle multiple sub structures Header,1Data,*. I think I have to use Key.field Name and Value. But in the below format we don't have any indicator t

  • PO item Tax condition values

    Dear all, Where po line item Tax condition values are stored and how get the values(relation). in konv table total heade condtion values are stored but I need line item level. Thanks in advance.

  • Planning to buy a new Webcam

    I need to get a webcam. I had a look at the wiki link. Can someone tell me which webcam to get. Is linux-uvc supposedly better than the rest? I primarily use the webcam with Skype. The wiki says, uvc does not support V4L1 and AFAIK Skype still uses V

  • IForgot not sending an email for password reset

    I need to reset a password for my other AppleID.  I don't know what's wrong.  iForgot isn't sending an email and the authentication process isn't recognizing me.  What's next?

  • Swapping hard drives in MacBook Pro.

    I am planning to put a 1TB hard rive in to my MacBookPro 15". What is the easiest way to duplicate the original drive to the new one?  Could I use Time Machine after I formatted the drive and installed Mountain Lion on it?