Is this training still valid for Flash Builder 4.7?

Flash Builder 4 and Flex 4 Essential Training with David Gassner
Watch the Online Video Course Flash Builder 4 and Flex 4 Essential Training
this was made in 2010 I am interested in learning about Flash Builder but I know that you want to be current, does anybody with experience with the language think it is still a good choice? David Gassner is an excellent teacher.Thanks

Well Flash Builder 4.7 came out in 2012, and it also dropped the Design Mode View. So those tutorials may go over stuff that you wouldn't have. That being said. 4.6 still has the design view and then it could possible be some use. Still AIR has changed a lot since 2010, there are better ways of doing things that can both be optimized for mobile... for example Starling/Feathers or MadComponents. Plus now Apache is in charge of Flex, and they have continued on a lot of progress.
Apache Flex®
Feathers - Open Source User Interface Components for Starling Framework
MobileAppDev | Mobile Application Development

Similar Messages

  • Is this script still valid for setting up Drill through between HFM and FDM

    Guys hoping some one can shed a light.
    I am running hfm and fdm realese 11.1.1.3.000
    I am having issues setting up the SSO authentication (all the other steps have been done, and HFM is aware that I have uploaded information that can drill back). I am using an SSO script that was part of an Oracle presentation, but don't know if that script is still relevant.
    Here is a copy of the script (Visual Basic Script SSO Authentication) :
    Function AuthenticateSSO(token, applicationName)
    ' Place your single sign-on authentication script here
    ' To signify an authentication failure, you should
    ' raise an error by calling the following method:
    ' Err.Raise [error number over 1000], [source], [description]
    ' Applicationname = FDMApplication in URL
    Const strProcSig = "AuthenticateSSO"
    Dim strUsername
    Dim strDomain
    Dim objHFMSSO
    Dim strClusterName ' HFM cluster name
    Dim strAppName ' HFM application name
    Set objHFMSSO = CreateObject("upsIntBlockFM40C.clsHypeWindowFM")
    If Not objHFMSSO Is Nothing Then
    strClustername = "<xxxxxxxx>"
    Select Case ApplicationName
    Case "<xxxxxxxx>"
    strAppName = "<xxxxxxxx>"
    End Select
    strUsername = objHFMSSO.Connection.GetUsernameFromToken(CStr(Token), strClustername, strAppName)
    If Trim(strUsername & "") = "" Then
    ' Blank user name means the token is invalid.
    Set objHFMSSO = Nothing
    Err.Raise 2655, strProcSig, "The Single Sign-on token is invalid."
    Else
    ' Return the user name from the authenticated token.
    AuthenticateSSO = strUsername
    End If
    End If
    Set objHFMSSO = Nothing
    End Function
    After I input all the information requested, I always get the error Server Error in '/' Application. The resource cannot be found.
    Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
    Requested URL: /HyperionFDM/AuthorizedPages/IntersectionSummaryByLocation.aspx
    I did saw a note about this error that suggested that I needed to re-register and deploy again FDM. Did, but still have the same issue. So the only thing that I don't control is the script and that is why I am asking if this script is still active and usable?

    I have done all of that but I still get an error when trying to drill back. I am using the Admin ID which exist on both FDM and HFM but I am always getting the
    Server Error in '/' Application.
    The resource cannot be found.
    Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
    Requested URL: /HyperionFDM/AuthorizedPages/IntersectionSummaryByLocation.aspx
    So the only thing that I hadn't tried at the time was the SSO script. Which was what I did.

  • Flash Panels for Flash Builder?

    Hi,
    It would be great if Flex Developers can create their own Flash Panels for Flash Builder. Photoshop and Flash CS4 has this feature, why not Flash Builder?
    Mariush T.
    http://mariusht.com/blog/

    Andre:
    Hi. I'm trying to do the same thing (create custom xmp panels) and I'm having miserable luck following the XMP Fileinfo SDK.
    I've installed Flash Builder 4. I've installed Apache Ant. Dumped the appropriate .jar file in the plugins section. Downloaded the AntView plugin and installed that and then created the MySample example.
    It runs fine as a web application from FB and it appears to publish correctly (creating a .swf file in the target bin and writing it all out to the proper location in the Adobe xmp custom panels folder) but when I access the File Info screen in an Adobe product, I get a tab with MySample but the dc field doesn't show up.
    I assumed it was a Flash trust file issue and created one, but it still doesn't work. I'm getting no errors and I've tried this a dozen times with the same results.
    Was there some step that I missed that you see by any chance?
    Thanks.
    --jon

  • Need help for flash builder

    i need help for flash builder 4 and papervison 3d. I need to create a slider with it ranges of value from 10 to 50 to adjust the camera values for the camera.fov and also need to create it for the yaw of the object from 0 to 360. I try to look for any slider event and classes in this program but cant find any, btw, i need to use the AS only project file.
    here is my codes:
    can you please tell me how i should modify the codes?
    package
        import flash.display.BitmapData;
        import flash.display.Sprite;
        import flash.events.Event;
        import org.papervision3d.materials.BitmapFileMaterial;
        import org.papervision3d.materials.BitmapMaterial;
        import org.papervision3d.objects.primitives.Sphere;
        import org.papervision3d.view.BasicView;
        [SWF (width="800", height="600", backgroundColor="0x000000",frameRate="30")]
        public class EarthBitmap extends BasicView
            private var sphere:Sphere;
            public function EarthBitmap()
                super(800 , 600);
                var earthmaterial:BitmapFileMaterial = new BitmapFileMaterial("../assets/Earth.jpg");
                sphere = new Sphere(earthmaterial,100,20,18);
                camera.fov = 25;
                scene.addChild(sphere);
                addEventListener(Event.ENTER_FRAME,rotateSphere);
            public function rotateSphere(evt:Event):void
                sphere.yaw(0.2);
                singleRender();

    Turn the click handler into a full on separate function. Then store all the views in an array and use Math.rand() to randomly choose one.
    Something like this:
    <fx:Script>
         <![CDATA[
              var questionsArray:Array = {question2,question3,question5,questionRed,questionGeography};
              function buttonClickHandler(event:MouseEvent){
                   var randomProblem:int = Math.floor(Math.random()*(questionsArray.length));     //generates a random integer between 0 and the total number of questions in the array (arrays are 0-based)
                   navigator.pushView(questionsArray[randomProblem]);
         ]]>
    </fx:Script>
    <s:Button id="randomProblemButton" label="Next Problem" click="buttonClickHandler(event)" />
    Haven't tested that, but something along that line should work

  • Offline Documentation for Flash Builder 4?

    Is there a way for me to have an offline documentation for Flash Builder 4? The reason is because I'm not constantly online and bewing new to Flex and Flash Builder altogether, I'm always at a loss whenever I'm trying to achieve something which is why an offline documentation would come really really handy! Note that the unit where I develop with Flash Builder doesn't have an internet connection so I can't update the local documentation via the internet.
    Thanks much for those who'd answer...

    Hi,
    I can help answer. There are a couple of ways to get the Flash Builder 4 docs for offline use:
    The Community Help app downloads the Help packages to your desktop, and provides an option to view them offline. Go to Edit > Preferences, and set Display Local Help Content Only to Yes. Note that you need to be connected to the Internet once to completely download the Help packages. And, any new updates to the doc will not be available unless you go online again.
    You can download a PDF copy of the Using Flash Builder book from: http://help.adobe.com/en_US/flashbuilder/using/flashbuilder_4_help.pdf
    and the Accessing Data with Adobe Flex 4 book from: http://help.adobe.com/en_US/Flex/4.0/AccessingData/flex_4_accessingdata.pdf
    You can also download the entire Flex 4 and FB 4 documentation as a ZIP file from: http://www.adobe.com/go/learn_flex4_alldocumentation_en
    Hope this helps,
    Mallika
    Flex doc team

  • Overlay AIR 3.3 sdk for Flash Builder on Snow Leopard

    The AIR 3.3 sdk is now a DMG, used to be a .tbz2 zip file, and there is no merge capabilities with Snow Leopard..
    How can I overlay AIR 3.3 sdk for Flash Builder 4.6 on Snow Leopard 10.6.8?
    Also I may have Lion soon so can you provide steps for FB overlay of the DMG on OSX 10.7?
    Many thanks.
    PS.I am dumbfounded there is no documentation on this by Adobe release after release? For OSX users there is an old Adobe KB article that I can't find anymore, there is a youtube video (http://www.youtube.com/watch?v=S118mZjln3I) I recommend, and a post most mac/FB users use (http://jeffwinder.blogspot.com.au/2011/09/installing-adobe-air-3-sdk-in-flash.html) and none of them remind you to use sudo before the terminal command..

    Thanks eran1976 here is the OSX 10.6.8 process that worked for me:
    1. open the 3.3 sdk DMG and copy all the files into a new emty folder called say AIR33SDK or whatever in your sdks directory
    2. asuming your current Flash Builder sdk with air3.2 or older is called 4.6.0, open terminal and run:
    3. sudo cp -Rp /Applications/Adobe\ Flash\ Builder\ 4.6/sdks/AIR33SDK/ /Applications/Adobe\ Flash\ Builder\ 4.6/sdks/4.6.0/
    4. you can now delete AIR33SDK folder if you wish
    5. open Flash Builder and change any existing project xml application files to 3.3
    5. remember to backup your 4.6.0 folder first

  • Is hotfix KB2275950 still valid for win7 sp1 64bit?

    Hi All:
    We tried to install Windows6.1-KB2275950-x64.msu on my win7 desktop (win7 sp1 64bit) to fix some DCOM/TLS issue,
    We followed the instruction as below:
    To use one of the hotfixes in this package, you must create a registry subkey. To do this, follow these steps:
    Start Registry Editor.
    Locate the following subkey in the registry:
    HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\LDAP
    Create a new REG_DWORD value that is named UseHostnameAsAlias, and set the value to anything other than zero.
    Exit Registry Editor, and then restart the computer.
    however after restart pc, we failed to install this hotfix.
    The error message is "The update is not applicable to your computer".
    The error in setup of event viewer as below:
    Windows update  could not be installed because of error 2149842967 "" (Command line: ""C:\Windows\system32\wusa.exe" "C:\Downloads\Windows6.1-KB2275950-x64.msu"        ")
    is this hotfix still valid to windows 7 sp1 64bit?
    thanks in advance.
    fight for future!

    Hi Mulder2008,
    This Hotfix is only applied to Windows 7 Enterprise, Windows 7 Professional and Windows 7 Ultimate without Serveice pack 1.
    Therefore it's indeed not valid to Windows 7 SP1.
    Karen Hu
    TechNet Community Support

  • Problem while installing LiveCycle Mosaic ES2 Plugin for Flash Builder 4

    I am trying to work on Live Cycle Mosaic 9.5 and I have downloaded FlashBuilder 4 and trying to configure the mosaic plugin "LiveCycle Mosaic ES2 Plugin for Flash Builder 4" in Flash Builder as per following directions given on adobe site:
         "Add the following two update sites via Window > Preferences > Install/Update > Available Software Sites (names below are suggested/optional):
    Name: Galileo Location: http://download.eclipse.org/releases/galileo/
    Name: RIA Tooling Location: select the LiveCycle Mosaic ES2 Plugin for Flash Builder 4 ZIP file.
    Install RIA Tooling Feature: In Help > Install New Software, choose ("Work with") RIA Tooling Site.
    Select and install Adobe LiveCycle RIA Tooling."
    But I am getting the following error:
    "Cannot complete the install because one or more required items could not be found.
      Software being installed: Mosaic Tooling Feature 9.5.0.0-20100629-2-241916 (com.adobe.livecycle.ria.tooling.feature.feature.group 9.5.0.0-20100629-2-241916)
      Missing requirement: Adobe LiveCycle RIA Tooling Mosaic Core_UI 9.5.0.0-20100629-2-241916 (com.adobe.livecycle.ria.tooling.mosaic.core_ui 9.5.0.0-20100629-2-241916) requires 'bundle org.eclipse.wst.sse.ui 1.1.0' but it could not be found
      Cannot satisfy dependency:
        From: Mosaic Tooling Feature 9.5.0.0-20100629-2-241916 (com.adobe.livecycle.ria.tooling.feature.feature.group 9.5.0.0-20100629-2-241916)
        To: com.adobe.livecycle.ria.tooling.mosaic.core_ui [9.5.0.0-20100629-2-241916]"
    Please, suggest me how can I solve this problem to configure mosaic plugin on flash builder 4.

    I think that in addition to adding the dependency on the galileo HTTP location the instructions should also advise you to 'check for updates'.

  • Need granite ds plug in for flash builder

    Need granite ds plug in for flash builder

    I'm not getting granite ds plug in for flash builder, can someone give me path of that?
    I also want flash builder plug in for eclipse , I'm also not getting this.
    I'm using eclipse galilio

  • Is there any release plan for Flash Builder?

    Hi,
    does anybody know when Adobe plans to release Flash Builder 4 (at least aproximately)? Should it be this year 2010?
    Thanx,
    pyso

    Adobe wrote:
    Adobe is not yet disclosing the final release date for Flash Builder 4
    Wikipedia wrote:
     Adobe has announced that Flex 4.0 (code named Gumbo) will be released in early 2010.

  • Data Model plugin for Flash Builder 4

    Hello there!
    I've just watched a video tut on Youtube (http://www.youtube.com/watch?v=U1aWeoTV63M) on how to work with Flash Bulder + LC Data Services and he mentions a plug-in to add this option (Data Model) to Flash Builder.
    I looked around on Adobe's website and found two download links, both for Eclipse, with lots of jar files.
    Sorry, I don't get it!
    Please, where do I get the right plug-in file and how do I install it in Flash Builder?
    Thank you!
    Marcos

    Same here.  Modeler plugin for Helios, Eclipse 3.6, Flash Builder 4.5 would be great.

  • VSS Plugin for Flash Builder 4?

    Hello,
    Does anyone know which VSS Plugin is available for Flash Builder 4?
    I tried googling, but in vain.
    Please help!
    Thanks,
    Tanu

    Finally found the elusive JDT from Galileo Repository - http://download.eclipse.org/releases/galileo/
    Installation steps below:
    Installing Visual SourceSafe plug-in for Eclipse:
    1) Download the Eclipse VSS plugin from: http://sourceforge.net/projects/vssplugin/
    2) Extract the zip file. Watch out for the duplicate folder (folder-within-folder) when you extract, you do not want this.
    3) Copy the folder “org.vssplugin_1.6.2″ to your Flash Builder 4 plugin folder [“C:\Program Files\Adobe\Adobe Flash Builder 4\plugins”].
    This needs the Java Development Tools. Get it from Galileo:
    1) Open Flash Builder 4 (works for Premium too!)
    2) Help > Install New Software…
    3) At the top of the dialog, click “Add…” to add an update site URL
    4) Specify any name and this URL http://download.eclipse.org/releases/galileo/ and press OK.
    5) In the table of features, expand “Web, XML and Java EE Development” and select “Eclipse Java EE Developer Tools” [Eclipse Java EE Developer Tools    3.1.1.v200908101600-7_7EGrjFQRwRb4P511ebObS5XZhq]
    6) Finish the wizard
    7) Restart FB4
    8) Now right click your project in Package Explorer > Team > Share, you will be able to see “VSS Configuration Wizard”.
    Regards,
    Shiyaz

  • Can I install Coldfusion Builder as a plugin for Flash Builder?

    I already have a licensed copy of Flash Builder 4.x installed, trying to install ColdFusion Builder as a plugin for Flash Builder. When I installed CFB, I selected install as a eclipse plugin and entered the path to the FB directory. Now I can't figure out how to invoke/add the CFB plugin in FB..
    Thanks in advance

    You should have uninstalled rather than simply deleting CFB 2 plugins manually .
    Please do the following  to fix it now. (If you have used Uninstaller to uninstall that would have cleaned all these things ):
    Take a backup and delete the file: /Library/Application Support/Adobe/Uninstall/{b8c666c3-1efd-11b2-bf3c-e04be4b2b610}.db
    And you will be able to install CFB as plugin to Eclipse now.
    Thanks,
    Krishna

  • This Certificate not valid for the selected purpose

    I have installed on my Windows 7 (64 bit Professional w/SP1)
    a Self-Signed CA (IDS_MstrCert)  that has been accepted by the system certificate "store".  via mmc & certmgr
    I generated this CA on my Redhat Linux 7 server using the openssl utilities. 
    It shows: This certificate is intended for the following purpose(s):
    All issuance policies
    All application policies
    It is enabled for ALL purposes (However I did not generate with ALL purpose set)
    Under Certification Path:
    Certificate Status: This Certificate is OK
    I have also installed a Client Certificate (winxclient) (also generated by my Redhat Linux 7 server)
    That has been "signed" by my CA (IDS_MstrCert)
    I added it successfully to the system certificate "store" via mmc & certmgr.
    However when I open the certificate I see the following message: This Certificate not valid for the selected purpose
    When I view the Certificate path I see the following:
    IDS_CA                          (friendly name for the CA)
        |-----> VPNIKEv2cli     (friendly name for the client certificate)   
        Certificate Status: This certificate is OK
    In the Intended Purposes field: ServerAuthentication, ClientAuthentication
    How do I resolve this problem ?   This Certificate not valid for the selected purpose
    When I attempt my vpn/ikev2 connection (using machine certificates) I get the 13806 error.
    Best Regards
    Guy Rich

    Hi,
    In my opinion, this is not Windows system problem. You need to make troubleshoot with the Certificate.
    I made a research with this error message, the link below might be helpful:
    http://support.persits.com/show.asp?code=PS030304105
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Excel 2007 throws "this action is valid for the products which are currently installed" while i try to open .txt file format.

    Hello,
    We have Windows 2008 r2 TS, on which we have MS office 2007 Standard installed. There are almost 50 users on this particular machine.
    The problem is we get an error message when we try to open a .txt file in Excel (Right click on .txt file--> Open with --> Excel). Error message is as follows  "this action is valid for the products which are currently installed".
    Previously this was faced by all users so we completely reinstalled it, which worked, except for 1 user.  Currently i have recreated the profile for that particular user but that also didn't helped.
    A drag-drop approach works but user don't want it that way.  
    Now am clueless in terms of where should i look into. Any help would really be helpful.
    Thanks,
    Amol S

    Hi Amol S,
    As per the description, I understand that you are trying to register .dll files in your computer now.
    I suggest you to go through the following article to know more about registering .dll file.
    Refer to the Link:
    https://support2.microsoft.com/kb/844592?wa=wsignin1.0
    Unregister or Register DLL or OCX files:
    The Regsvr32 tool is a command-line utility that can be used for registering and un-registering OLE controls like DLL and ActiveX (OCX) controls in the Windows operating system. If you find
    that some of your Windows functions are note working properly, you may need to register your
    dll files.
    Register dll file
    To register a dll or
    ocx file, open a command prompt windows as an administrator, type the following and hit Enter:
    regsvr32 “path & filename of dllor
    ocx
    Unregister dll file
    To un-register a dll or
    ocx file, open a command prompt windows as an administrator, type the following and hit Enter:
    regsvr32 /u “path & filename of dllor
    ocx“
    Note: This will register or unregister the
    dll file.
    Hope this information is helpful. Please do let us know if you need further assistance, I’ll be glad to assist you.
    Regard,

Maybe you are looking for

  • In adobe bridge cs6 i would like to pre build the thumb nails on an entire drive inc sub folders

    in adobe bridge i would like to build all the thumbnails for the drive so when i go to a sub folder all the iamges are ready to go.   i have tried select all and then build hq thumbnail but it only did the images in the root folder i was in.  not the

  • IWeb wont show MobileMe Gallery

    I have a website created in iWeb 08. The URL is hosted at my MobileMe account. The URL is registered elsewhere but hosted at my MobileMe site. All works well except when I add a Gallery page to the site. iWeb refuses to list any of the galleries I ha

  • Using the video out on an iMac...

    Can you disable the iMac's monitor?  I have the iMac connected to my TV, but I only want to use the TV as a monitor.  It looks weird having the TV and the iMac showing the same thing, and I'd rather turn off the iMac display.

  • Saving pdf type files

    I've downloaded tax forms from the IRS website but when I fill them out it won't save the filled in data on my Mac. When I go to open the filled out form I just get a blank form. However, on my PC it will save the data typed into the form. I have a f

  • Possible virus in Nano

    I have a nano 2nd generation, but when i connect it to itunes on my Windows XP, it tells me that nearly all the memory is used with 'Other'. I tried to restore it but got a message saying ipod cannot be restored as some files are being used by anothe