Quantcast
Channel: Adobe Community : Popular Discussions - Using Flash Builder
Viewing all 70427 articles
Browse latest View live

Parsing a string variable as baseURL

$
0
0

I want to use a httpService request to read an XML file which retreives data from the xml file which is the path i want to parse to the Super_Sample1 Class / Function rather than having it as a hard coded path.

 

I can read the XML file and display the path in a text field.

 

Once the XML file resoonse is received it then triggers the HTTPService to receive the data using the path from the XLM file.

 

I get an error when ever I modify the hard coded path to a variable like the {mypath.lastResult} which is where the XML path is returned to.

 

I hope I explained this clear enough.

 

Any suggestions on parsing this path to the Function shown below?

 

 

package services.sample1

{

import com.adobe.fiber.core.model_internal;

import com.adobe.fiber.services.wrapper.HTTPServiceWrapper;

import mx.rpc.AbstractOperation;

import mx.rpc.AsyncToken;

import mx.rpc.http.HTTPMultiService;

import mx.rpc.http.Operation;

 

[ExcludeClass]

internal class _Super_Sample1 extends com.adobe.fiber.services.wrapper.HTTPServiceWrapper

{

 

 

    // Constructor

    public function _Super_Sample1()

    {

        // initialize service control

        _serviceControl = new mx.rpc.http.HTTPMultiService("http://ibm/sample01-debug/"); <<<<<< This is what I want to replace with a string variable

         var operations:Array = new Array();

         var operation:mx.rpc.http.Operation;

         var argsArray:Array;

 

 

         operation = new mx.rpc.http.Operation(null, "Operation");

         operation.url = "mytest.php";

         operation.method = "GET";

         operation.resultType = Object;

         operations.push(operation);

 

         _serviceControl.operationList = operations; 

 

         preInitializeService();

         model_internal::initialize();

    }

   

    //init initialization routine here, child class to override

    protected function preInitializeService():void

    {

     

    }

   

    /**

      * This method is a generated wrapper used to call the 'Operation' operation. It returns an mx.rpc.AsyncToken whose

      * result property will be populated with the result of the operation when the server response is received.

      * To use this result from MXML code, define a CallResponder component and assign its token property to this method's return value.

      * You can then bind to CallResponder.lastResult or listen for the CallResponder.result or fault events.

      *

      * @see mx.rpc.AsyncToken

      * @see mx.rpc.CallResponder

      *

      * @return an mx.rpc.AsyncToken whose result property will be populated with the result of the operation when the server response is received.

      */

    public function Operation() : mx.rpc.AsyncToken

    {

        var _internal_operation:mx.rpc.AbstractOperation = _serviceControl.getOperation("Operation");

                    var _internal_token:mx.rpc.AsyncToken = _internal_operation.send() ;

        return _internal_token;

    }

    

}

 

 

}


Flash Builder improvements, Syntax coloring, Custom format, Auto close

$
0
0

Hello,

 

I'm trying Flash Builder 4.7 but I see there is missing features in the Softaware.

 

I didn't found this important features in the preferences and I think you could add this new features in the new version of FB:

 

  • Syntax coloring like Flash Professional: Coloring the AS3 keywords properties and methods like (addChild, x, y, width, height, etc.)
  • Custom format code. In FB 4.7 there no way to custom the format code in AS3 but you can do it for Java.
  • AutoClose : Inserts matching bracket, paren, brace or quote
  • A list of color themes

 

I hope it will help to improve this software.

 

Cheers.

FlashBuilder 4.7 wont publish to Samsung Galaxy Note 10.1 but will publish to Samsung Galaxy S4

$
0
0

OS: WIndows 7 x64

Hardware: ATI Radion 65xxx series HD, 12GB DDR3, Galaxy Note 10.1 & Galaxy S4

Android 4.1.2 is on the Tablet and 4.2.2 is on the mobile.

Software: Adobe CC (Full) - FlashBuilder 4.7 - AIR for android on both devices 4.x installed

Flashbuilder modification 1: APACHE FLEX Latest downloaded and installed into SDK directory

Flashbuilder modification 2: AIR 4.0 SDK downloaded and installed into eclipse plugins flash compiler directory

 

 

Dev test 1: (success)

Built test application to test some Away3D 4.x programming and interaction on AIR.

Result: Flash Player opened SWF and all appeard fine.

 

 

Dev test 2: (success)

Created new project - Flash Mobile - merged dev test 1 code into project and compiled on Galaxy S4

Result: FlashBuilder recognised device, installed apk and ran it just fine (AIR 4.x is already installed on device)

 

 

Dev test 2b: (failure)

Still using project dev test 2, I unplugged the Galaxy S4 and pluggined in the Galaxy Note 10.1. Pressed debug.

Result: Flashbuilder didn't get any further than displaying the message "Launching: Determining the device on which to install the application..."

 

 

Dev test 2c: (failure)

Closed FlashBuilder, unplugged device, CTRL + ALT + DEL then end tasked all ADB processes. Re-opened FlashBuilder, plugged Tablet back in and pressed debug again.

Result: Sat on "Launching: Installing application on device" heard windows noise for unplugged usb device sound?!!??  Waited.. and waited and eventually got the message "Launching 'Away3DIsometricBlockBuilder' has encountered a problem. Error occurred while installing the application: rm failed for /data/local/tmp/Away3DIsometricBlockBuilder.apk, No such file or directory

 

protocol failure

 

- waiting for device -"

 

http://www.allforthecode.co.uk/fun/error_01.jpg

 

 

Dev test 2d: (success)

Unplugged device, end tasked all ADB.exe instances and plugged in galaxy s4 and pressed debug.
Result: Success!



Dev test 2e: (failure)
Unplugged all devices, end tasked all ADB.exe instances and shut down flashbuilder. Opened a command prompt window and adb version = 1.0.31. Downloaded Goolge Android SDK x64 and removed existing android installation folder I had already and extracted files there. Opened SDK Manager and installed the latest Android 4.4 SDK  and some other tools etc. Now I went looking for where adb exists. Found the ones relevant to FlashBuilder 4.7 and checked which version they were. SDK used version was 1.0.31 and the AIR eclipse plugins ADB version was also 1.0.31. Checked fresh installed adb version from Google Android SDK and it was also v 1.0.31. Tried a manual install on the device of the apk. Re-opened FlashBuilder re-connected device (tablet) and pressed debug.
Result: Got to Launching 57%, windows made usb disconnection sound and it got no further and popped up the error window which was detailed in "Dev test 2c" above. Device shows connected windows explorer no longer shows device.

 

 

Dev test 2f: (failure)

Unplugged device, end tasked all adb.exe instances. Plugged device back in.
Check 1: Windows shows android device plugged in GT-N80810
Check 2: Opened admin rights dos window and typed in adp devices - found 1 at some address
Check 3: adb version = 1.0.31

Check 4: apk file exists

Execute manual install: adp install -r package_name.apk

Result:

-- in dos window --

protocol failure

- waiting for device -

rm failed for /data/local/tmp/apkname.apk, No such file or directory

 

 

Dev test 3: (failure)

Created a new flashbuilder 4.7 ActionScript Mobile AIR Project

Name: TabletTest01

Permissions: Internet, Write external storage, wake lock, access network

Auto reorient: yes

Full screen: yes

Added code: trace("hello world");

Pressed debug

Set launch method: on device

Build target = device

Click apply then debug

Result: Same as error shows in 2c

 


Dev test 3b: (success)

Rebooted pc, rebooted device plugged back in after flashbuilder was running and pressed debug.

Result: sucess traced out "hello world" to console!

 

 

Dev test 3c: (failure)

Added code: trace("YYYYYYYYYYYYYYYYYYEEEEEEEEESSSSS!");

Pressed debug.

Result: FAILURE! Same as error shows in 2c

 

 

 

Adobe or anyone know how to fix this issue? or even what is going on?!

 

 

 

 

I'm tempted to flash the Galaxy Note with Android 4.2.2 or 4.4 google stock rom, to see if it fixes any problems...
However it wouldn't be a true Galaxy Note 10.1 test device anymore, which was the point in buying the thing.

 

The only things which stand out in all this to me are:


1. The tablet disconnects mid way through the debug publish process, but sometimes the galaxy s4 does also but it doesn't stop it from working?! Timing issue with compiler and data transfer timings? Missing apk file in data temp directory?


2. Android 4.1.2 is on the Tablet and 4.2.2 is on the mobile, could it be an issue with the AIR SDK not correctly handling 4.1.2 where as it is fine with 4.2.2?

 

 

Maybe I should have gone the way of the virtual machine... :\

 

 

My next tests will be to root the device (odin) and see if I can copy over APK files for installation via the file browser on the device as at the moment APK file transfer is blocked (I don't have the apk copying issue on a non-rooted galaxy s4 however).

 

 

Anyone got anything?

 

D

 

 

 

PS. Adobe - Image upload doesn't work on this forum editor (chrome).

Unable to start Flash Builder 4.5

$
0
0

I am unable to start Flash Builder. Right at the splash screen I get an error saying to look in the log file, but I don't see where the problem is in the log file. Could anyone help me out. I'll post the log error file.

 

!SESSION 2011-06-30 09:03:22.543 -----------------------------------------------

eclipse.buildId=I20100608-0911

java.version=1.6.0_16

java.vendor=Sun Microsystems Inc.

BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US

Command-line arguments:  -os win32 -ws win32 -arch x86

 

!ENTRY org.eclipse.osgi 4 0 2011-06-30 09:03:28.440

!MESSAGE An unexpected runtime error has occurred.

!STACK 0

org.eclipse.swt.SWTError: No more handles

at org.eclipse.swt.SWT.error(SWT.java:4109)

at org.eclipse.swt.SWT.error(SWT.java:3998)

at org.eclipse.swt.SWT.error(SWT.java:3969)

at org.eclipse.swt.widgets.Widget.error(Widget.java:468)

at org.eclipse.swt.widgets.TaskBar.createHandle(TaskBar.java:99)

at org.eclipse.swt.widgets.TaskBar.<init>(TaskBar.java:92)

at org.eclipse.swt.widgets.Display.getSystemTaskBar(Display.java:2499)

at org.eclipse.ui.internal.Workbench$TaskBarDelegatingProgressMontior.getTaskItem(Workbench. java:300)

at org.eclipse.ui.internal.Workbench$TaskBarDelegatingProgressMontior.handleTaskBarProgressU pdated(Workbench.java:316)

at org.eclipse.ui.internal.Workbench$TaskBarDelegatingProgressMontior.worked(Workbench.java: 265)

at org.eclipse.ui.internal.Workbench$StartupProgressBundleListener.bundleChanged(Workbench.j ava:417)

at org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent(BundleContextImp l.java:919)

at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:227)

at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue. java:149)

at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEventPrivileged(Framework .java:1349)

at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEvent(Framework.java:1300 )

at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:380)

at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:284)

at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:417)

at org.eclipse.osgi.internal.loader.BundleLoader.setLazyTrigger(BundleLoader.java:265)

at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:106)

at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :453)

at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:216)

at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:393)

at org.eclipse.osgi.internal.loader.SingleSourcePackage.loadClass(SingleSourcePackage.java:3 3)

at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:466)

at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:422)

at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:410)

at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:107)

at java.lang.ClassLoader.loadClass(Unknown Source)

at java.lang.ClassLoader.loadClassInternal(Unknown Source)

at com.adobe.flexbuilder.standalone.FlashBuilderWorkbenchAdvisor.createWorkbenchWindowAdviso r(FlashBuilderWorkbenchAdvisor.java:56)

at org.eclipse.ui.internal.WorkbenchWindow.getWindowAdvisor(WorkbenchWindow.java:3483)

at org.eclipse.ui.internal.WorkbenchWindow.fireWindowOpening(WorkbenchWindow.java:1295)

at org.eclipse.ui.internal.WorkbenchWindow.<init>(WorkbenchWindow.java:408)

at org.eclipse.ui.internal.tweaklets.Workbench3xImplementation.createWorkbenchWindow(Workben ch3xImplementation.java:31)

at org.eclipse.ui.internal.Workbench.newWorkbenchWindow(Workbench.java:1881)

at org.eclipse.ui.internal.Workbench.access$14(Workbench.java:1879)

at org.eclipse.ui.internal.Workbench$21.runWithException(Workbench.java:1199)

at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)

at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)

at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)

at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041)

at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660)

at org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803)

at org.eclipse.ui.internal.Workbench$31.runWithException(Workbench.java:1567)

at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)

at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)

at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)

at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041)

at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660)

at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2548)

at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2438)

at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:671)

at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)

at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:664)

at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)

at com.adobe.flexbuilder.standalone.FlashBuilderApplication.start(FlashBuilderApplication.ja va:108)

at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)

at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)

at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)

at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)

at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)

at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)

at org.eclipse.equinox.launcher.Main.run(Main.java:1407)

 

!ENTRY org.eclipse.ui.workbench 4 0 2011-06-30 09:03:28.442

!MESSAGE

!STACK 0

org.eclipse.swt.SWTError: No more handles

at org.eclipse.swt.SWT.error(SWT.java:4109)

at org.eclipse.swt.SWT.error(SWT.java:3998)

at org.eclipse.swt.SWT.error(SWT.java:3969)

at org.eclipse.swt.widgets.Widget.error(Widget.java:468)

at org.eclipse.swt.widgets.TaskBar.createHandle(TaskBar.java:99)

at org.eclipse.swt.widgets.TaskBar.<init>(TaskBar.java:92)

at org.eclipse.swt.widgets.Display.getSystemTaskBar(Display.java:2499)

at org.eclipse.ui.internal.Workbench$TaskBarDelegatingProgressMontior.getTaskItem(Workbench. java:300)

at org.eclipse.ui.internal.Workbench$TaskBarDelegatingProgressMontior.handleTaskBarProgressU pdated(Workbench.java:316)

at org.eclipse.ui.internal.Workbench$TaskBarDelegatingProgressMontior.worked(Workbench.java: 265)

at org.eclipse.ui.internal.Workbench$StartupProgressBundleListener.bundleChanged(Workbench.j ava:417)

at org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent(BundleContextImp l.java:919)

at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:227)

at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue. java:149)

at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEventPrivileged(Framework .java:1349)

at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEvent(Framework.java:1300 )

at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:380)

at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:284)

at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:417)

at org.eclipse.osgi.internal.loader.BundleLoader.setLazyTrigger(BundleLoader.java:265)

at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:106)

at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :453)

at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:216)

at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:393)

at org.eclipse.osgi.internal.loader.SingleSourcePackage.loadClass(SingleSourcePackage.java:3 3)

at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:466)

at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:422)

at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:410)

at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:107)

at java.lang.ClassLoader.loadClass(Unknown Source)

at java.lang.ClassLoader.loadClassInternal(Unknown Source)

at com.adobe.flexbuilder.standalone.FlashBuilderWorkbenchAdvisor.createWorkbenchWindowAdviso r(FlashBuilderWorkbenchAdvisor.java:56)

at org.eclipse.ui.internal.WorkbenchWindow.getWindowAdvisor(WorkbenchWindow.java:3483)

at org.eclipse.ui.internal.WorkbenchWindow.fireWindowOpening(WorkbenchWindow.java:1295)

at org.eclipse.ui.internal.WorkbenchWindow.<init>(WorkbenchWindow.java:408)

at org.eclipse.ui.internal.tweaklets.Workbench3xImplementation.createWorkbenchWindow(Workben ch3xImplementation.java:31)

at org.eclipse.ui.internal.Workbench.newWorkbenchWindow(Workbench.java:1881)

at org.eclipse.ui.internal.Workbench.access$14(Workbench.java:1879)

at org.eclipse.ui.internal.Workbench$21.runWithException(Workbench.java:1199)

at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)

at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)

at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)

at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041)

at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660)

at org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803)

at org.eclipse.ui.internal.Workbench$31.runWithException(Workbench.java:1567)

at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)

at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)

at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)

at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041)

at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660)

at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2548)

at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2438)

at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:671)

at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)

at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:664)

at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)

at com.adobe.flexbuilder.standalone.FlashBuilderApplication.start(FlashBuilderApplication.ja va:108)

at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)

at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)

at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)

at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)

at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)

at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)

at org.eclipse.equinox.launcher.Main.run(Main.java:1407)

 

!ENTRY org.eclipse.osgi 4 0 2011-06-30 09:03:28.447

!MESSAGE An unexpected runtime error has occurred.

!STACK 0

org.eclipse.swt.SWTError: No more handles

at org.eclipse.swt.SWT.error(SWT.java:4109)

at org.eclipse.swt.SWT.error(SWT.java:3998)

at org.eclipse.swt.SWT.error(SWT.java:3969)

at org.eclipse.swt.widgets.Widget.error(Widget.java:468)

at org.eclipse.swt.widgets.TaskBar.createHandle(TaskBar.java:99)

at org.eclipse.swt.widgets.TaskBar.<init>(TaskBar.java:92)

at org.eclipse.swt.widgets.Display.getSystemTaskBar(Display.java:2499)

at org.eclipse.ui.internal.Workbench$TaskBarDelegatingProgressMontior.getTaskItem(Workbench. java:300)

at org.eclipse.ui.internal.Workbench$TaskBarDelegatingProgressMontior.handleTaskBarProgressU pdated(Workbench.java:316)

at org.eclipse.ui.internal.Workbench$TaskBarDelegatingProgressMontior.worked(Workbench.java: 265)

at org.eclipse.ui.internal.Workbench$StartupProgressBundleListener.bundleChanged(Workbench.j ava:417)

at org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent(BundleContextImp l.java:919)

at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:227)

at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue. java:149)

at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEventPrivileged(Framework .java:1349)

at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEvent(Framework.java:1300 )

at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:380)

at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:284)

at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:417)

at org.eclipse.osgi.internal.loader.BundleLoader.setLazyTrigger(BundleLoader.java:265)

at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:106)

at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :453)

at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:216)

at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:393)

at org.eclipse.osgi.internal.loader.SingleSourcePackage.loadClass(SingleSourcePackage.java:3 3)

at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:466)

at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:422)

at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:410)

at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:107)

at java.lang.ClassLoader.loadClass(Unknown Source)

at java.lang.ClassLoader.loadClassInternal(Unknown Source)

at com.adobe.flexbuilder.standalone.FlashBuilderWorkbenchAdvisor.createWorkbenchWindowAdviso r(FlashBuilderWorkbenchAdvisor.java:56)

at org.eclipse.ui.internal.WorkbenchWindow.getWindowAdvisor(WorkbenchWindow.java:3483)

at org.eclipse.ui.internal.WorkbenchWindow.fireWindowOpening(WorkbenchWindow.java:1295)

at org.eclipse.ui.internal.WorkbenchWindow.<init>(WorkbenchWindow.java:408)

at org.eclipse.ui.internal.tweaklets.Workbench3xImplementation.createWorkbenchWindow(Workben ch3xImplementation.java:31)

at org.eclipse.ui.internal.Workbench.newWorkbenchWindow(Workbench.java:1881)

at org.eclipse.ui.internal.Workbench.access$14(Workbench.java:1879)

at org.eclipse.ui.internal.Workbench$21.runWithException(Workbench.java:1199)

at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)

at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)

at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)

at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041)

at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660)

at org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803)

at org.eclipse.ui.internal.Workbench$31.runWithException(Workbench.java:1567)

at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)

at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)

at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)

at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041)

at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660)

at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2548)

at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2438)

at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:671)

at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)

at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:664)

at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)

at com.adobe.flexbuilder.standalone.FlashBuilderApplication.start(FlashBuilderApplication.ja va:108)

at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)

at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)

at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)

at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)

at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)

at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)

at org.eclipse.equinox.launcher.Main.run(Main.java:1407)

 

!ENTRY org.eclipse.ui.workbench 4 0 2011-06-30 09:03:28.449

!MESSAGE

!STACK 0

org.eclipse.swt.SWTError: No more handles

at org.eclipse.swt.SWT.error(SWT.java:4109)

at org.eclipse.swt.SWT.error(SWT.java:3998)

at org.eclipse.swt.SWT.error(SWT.java:3969)

at org.eclipse.swt.widgets.Widget.error(Widget.java:468)

at org.eclipse.swt.widgets.TaskBar.createHandle(TaskBar.java:99)

at org.eclipse.swt.widgets.TaskBar.<init>(TaskBar.java:92)

at org.eclipse.swt.widgets.Display.getSystemTaskBar(Display.java:2499)

at org.eclipse.ui.internal.Workbench$TaskBarDelegatingProgressMontior.getTaskItem(Workbench. java:300)

at org.eclipse.ui.internal.Workbench$TaskBarDelegatingProgressMontior.handleTaskBarProgressU pdated(Workbench.java:316)

at org.eclipse.ui.internal.Workbench$TaskBarDelegatingProgressMontior.worked(Workbench.java: 265)

at org.eclipse.ui.internal.Workbench$StartupProgressBundleListener.bundleChanged(Workbench.j ava:417)

at org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent(BundleContextImp l.java:919)

at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:227)

at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue. java:149)

at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEventPrivileged(Framework .java:1349)

at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEvent(Framework.java:1300 )

at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:380)

at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:284)

at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:417)

at org.eclipse.osgi.internal.loader.BundleLoader.setLazyTrigger(BundleLoader.java:265)

at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:106)

at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :453)

at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:216)

at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:393)

at org.eclipse.osgi.internal.loader.SingleSourcePackage.loadClass(SingleSourcePackage.java:3 3)

at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:466)

at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:422)

at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:410)

at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:107)

at java.lang.ClassLoader.loadClass(Unknown Source)

at java.lang.ClassLoader.loadClassInternal(Unknown Source)

at com.adobe.flexbuilder.standalone.FlashBuilderWorkbenchAdvisor.createWorkbenchWindowAdviso r(FlashBuilderWorkbenchAdvisor.java:56)

at org.eclipse.ui.internal.WorkbenchWindow.getWindowAdvisor(WorkbenchWindow.java:3483)

at org.eclipse.ui.internal.WorkbenchWindow.fireWindowOpening(WorkbenchWindow.java:1295)

at org.eclipse.ui.internal.WorkbenchWindow.<init>(WorkbenchWindow.java:408)

at org.eclipse.ui.internal.tweaklets.Workbench3xImplementation.createWorkbenchWindow(Workben ch3xImplementation.java:31)

at org.eclipse.ui.internal.Workbench.newWorkbenchWindow(Workbench.java:1881)

at org.eclipse.ui.internal.Workbench.access$14(Workbench.java:1879)

at org.eclipse.ui.internal.Workbench$21.runWithException(Workbench.java:1199)

at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)

at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)

at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)

at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041)

at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660)

at org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803)

at org.eclipse.ui.internal.Workbench$31.runWithException(Workbench.java:1567)

at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)

at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)

at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)

at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041)

at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660)

at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2548)

at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2438)

at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:671)

at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)

at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:664)

at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)

at com.adobe.flexbuilder.standalone.FlashBuilderApplication.start(FlashBuilderApplication.ja va:108)

at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)

at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)

at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)

at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)

at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)

at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)

at org.eclipse.equinox.launcher.Main.run(Main.java:1407)

 

!ENTRY org.eclipse.osgi 4 0 2011-06-30 09:03:28.896

!MESSAGE Application error

!STACK 1

org.eclipse.swt.SWTError: No more handles

at org.eclipse.swt.SWT.error(SWT.java:4109)

at org.eclipse.swt.SWT.error(SWT.java:3998)

at org.eclipse.swt.SWT.error(SWT.java:3969)

at org.eclipse.swt.widgets.Widget.error(Widget.java:468)

at org.eclipse.swt.widgets.TaskBar.createHandle(TaskBar.java:99)

at org.eclipse.swt.widgets.TaskBar.<init>(TaskBar.java:92)

at org.eclipse.swt.widgets.Display.getSystemTaskBar(Display.java:2499)

at org.eclipse.ui.internal.WorkbenchWindow.createProgressIndicator(WorkbenchWindow.java:3325 )

at org.eclipse.ui.internal.WorkbenchWindow.createDefaultContents(WorkbenchWindow.java:1104)

at org.eclipse.ui.internal.WorkbenchWindowConfigurer.createDefaultContents(WorkbenchWindowCo nfigurer.java:623)

at org.eclipse.ui.application.WorkbenchWindowAdvisor.createWindowContents(WorkbenchWindowAdv isor.java:268)

at org.eclipse.ui.internal.WorkbenchWindow.createContents(WorkbenchWindow.java:1010)

at org.eclipse.jface.window.Window.create(Window.java:431)

at org.eclipse.ui.internal.Workbench$22.runWithException(Workbench.java:1208)

at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)

at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)

at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)

at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041)

at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660)

at org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803)

at org.eclipse.ui.internal.Workbench$31.runWithException(Workbench.java:1567)

at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)

at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)

at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)

at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041)

at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660)

at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2548)

at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2438)

at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:671)

at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)

at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:664)

at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)

at com.adobe.flexbuilder.standalone.FlashBuilderApplication.start(FlashBuilderApplication.ja va:108)

at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)

at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)

at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)

at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)

at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)

at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)

at org.eclipse.equinox.launcher.Main.run(Main.java:1407)

Thank you

No longer able to debug with iPad simulator

$
0
0

Running Flash Builder 4.7 on OS X Mavericks with Xcode 5.1.1

 

With the latest Xcode update, any debug session via the iOS simulator open up the iPhone simulator, even if iPad is chosen in the debug configuration. Changing the device within the simulator kills the debug session.

 

Anyone else experiencing this or have a workaround?

 

Thanks,

Parks

iOS icon missing from package? It's not!

$
0
0

FB 4.7 tells me that when I try to debug my app that:

 

Error occurred while packaging the application:

/Users/reidop/Documents/U of Florida/projects/mobile apps/Pill Reminder/bin-debug/AOT/MedsReminder-app.xml: error 303: Icon iOS_icons/icon-57@2x.png is missing from package

 

along with all the other icons.  Not only are the icons in the proper place, they have been explicitly included in the package:

Flash BuilderScreenSnapz001.png

Why does this error occur?  Anyone have any ideas?

 

And yes, my XML file has the icons tag correct:

<icon>        <image29x29>iOS_icons/icon-29.png</image29x29>        <image57x57>iOS_icons/icon-57.png</image57x57>        <image114x114>iOS_icons/icon-57@2x.png</image114x114>        <image512x512>iOS_icons/itunes.png</image512x512>        <image72x72>iOS_icons/icon-72.png</image72x72>        <image76x76>iOS_icons/icon-76.png</image76x76>        <image40x40>iOS_icons/icon-40.png</image40x40>        <image80x80>iOS_icons/icon-40@2x.png</image80x80>        <image50x50>iOS_icons/icon-50.png</image50x50>        <image100x100>iOS_icons/icon-50@2x.png</image100x100>        <image144x144>iOS_icons/icon-72@2x.png</image144x144>        <image152x152>iOS_icons/icon-76@2x.png</image152x152>        <image1024x1024>iOS_icons/itunes@2x.png</image1024x1024>        <image58x58>iOS_icons/icon-29@2x.png</image58x58>        <image120x120>iOS_icons/icon-120.png</image120x120>        <image48x48>iOS_icons/icon-48.png</image48x48></icon>

 

When I comment these lines in the XML file out, it works perfectly ... but without the proper icons!

 

Can anyone tell me what I'm leaving out?

 

Message was edited by: John Reid Perkins Buzo

Tutorial for stageWebView

$
0
0

Hi all,

Is there any good tutorials for how to use the stageWebView in a mobile project?

 

I would love to read a very basic tutorial for this function, but haven't been able to find one... Anyone know where I can find it?

A written tutorial or a sample package (like the mobile employee directory) would be great!

 

Thanks in advance!


Best regards from Camilla in Sweden

Spark DataGrid scrollToIndex?

$
0
0

In Flex I used to use the dataGrid.scrollToIndex(XX) to scroll down to a selected row.

 

I can't seem to get anything to work for the Spark DataGrid in FB4.5.  Searching around I tried to impliment this:

dataGrid.ensureCellIsVisible(selectedSlideIndex);

dataGrid.setSelectedIndex(selectedSlideIndex);

 

The selectedSlideIndex is set when a row is selected to store the int.

 

I can't get the DataGrid to scroll to the index, OR select the index..

 

So what is the Spark DataGrid version of the MX DataGrid.scrollToIndex?


flash builder 4.6 - send batch data to server (php connected)

$
0
0

Hi, I've recently downloaded flashbuilder 4.6 and started to develop my first mobile app.

Just to explain the sense of my problem/question,  I'd like to manage a local database offline (insert data to a table) and manually sincronize it to a server database (push a button -> add records batch to table in server).

Following tutorials I was able to manage a sqlite local database, I got the connection to server database (mySQL) with php and have Data/Services panel populated (services test works fine).

 

Unfortunately I'm not able to send local data, batch to server. A few lines of code below (debugging I got no errors and no results).

Something wrong on the code?

Or did I take a wrong way to solve my problem?

 

thanks in advance for interest

 

 

protected function button_clickHandler(event:MouseEvent):void

{

 

var LocalDatabase:ArrayCollection = ... <loaded from sqlite database>

 

var RecordToAdd: MydataTable;    //server data table to fill

 

for (var i:int= 0; i<LocalDatabase.length; i++)

{     

    RecordToAdd = new MydataTable;

    RecordToAdd.Field1= LocalDatabase[i].Field1;                                                  

    RecordToAdd.Field2 = LocalDatabase[i].Field2;

    ...                              

    createMydataTableResult.token = MydataTableService.createMydataTable(RecordToAdd);

    createMydataTableResult.token = MydataTableService.commit();

  }

}

Installing Flex SDK into Flash Builder 4.7 problems

$
0
0

Hi,

 

Im completely new to Flash Builder, today I have installed Flash Builder 4.7 & Flash CS6 from Creative Cloud for my son to start to learn game programming (with my help), I have used simple coding in web design however this terminology is new to me.

 

I bought my son the latest 'Foundation Game Design with ActionScript 3.0' book on recommendation but it was written when FB was version 4.5 so im guessing this might be the problem.

 

The book is very easy to follow but have hit problems at the beginning of the tutorials, the book talks about Flex SDK but it seems that FB 4.7 uses AIR SDK ?

 

So the first project called HelloWorld, we got up to:

Screen shot 2013-04-09 at 20.09.47.png

Got an exclamation mark which said

'The import flash.display.Sprite is not used

locally'

Continuing with the rest of the project the exclamation mark disappeared:

Screen shot 2013-04-09 at 20.08.19.png

However on selecting run- Debug we got a blank Flash Player window  ('generate HTML wrapper file' was deselected)

 

So either we've done something wrong, or the book and FB version are not compatible?

 

Any advice would be great!

 

Thank you

 

Latest ...

 

I thought that installing Flex SDK may solve the problem but after following instructions I have the error message, see image below. Really stumped now!

Screen shot 03.png

solved java.lang.nullpointerexception when using code assist / autocompletion

$
0
0

Hi,

 

 

Good news I found a way to get the content Assist working with flash bluider 4.7, you need only to ignore svn folders and files in the project properties

 

project>properties>Ressources>ressource filter>add>

 

check the following options :

exclude all

Folders

All childrens (recursive)

 

and then choose name *.svn*

 

validate and close windows try a cmd+space or ctrl+space I have no more java.lang.nullpointerexception !!

 

if you don't have any svn files in your project maybe your problem comes from some other source

Using iOS Simulator via Flash Builder on OS X 10.9 Mavericks

$
0
0

Hey Everyone,

 

You will find that if you have updated to OS X Mavericks (currently BETA 13/05/13) the iOS Simulator will not activate from the Flash Builder IDE. FB will prompt to saying you need to enable assistive devices but Mavericks has removed this option from the Universal Access option in the system preferences.


Here is the work around:

 

Activate System Events:

System Preferences > Security & Privacy > Privacy > Accessibility > Tick System Evenh

 

There is no need to restart Flash Builder the simulator should now just work fine.

 

 

Hope that helps prevent a lost few minutes on the old google machine.

How to obtain installed license key

$
0
0

Hi

 

I am trying to find out if there is a way to find my license key for Flash Builder 4 Premium?

 

I've googled around and see that there are registry programs that can locate it.


But is there an official way that I can see my license key? I am unsure what key I used, and my co-worker uses a Mac with a different key. We arent sure who has used what from our key list.

 

My boss is asking me which key I used and I am unsure.

 

Is it in my Adobe account, if I log in and look through my profile?

 

Any ideas?

Data/Services nested VO error

$
0
0

Hi,

 

I'm using Doctrine with Zend Amf and Flash Builder for PHP. It's working just great!

 

Today I ran into an issue I don't understand. I'm nesting a VO within another VO. A Kvitto is within a Booking. This usually works as expected. I've done this in other parts of the app I'm building but now I'm getting this.

 

Main Thread (Suspended: ReferenceError: Error #1065: Variable Kvitto is not defined.)
global/flash.utils::getDefinitionByName [no source]
com.adobe.serializers.utility::TypeUtility$/getArrayType
com.adobe.serializers.utility::TypeUtility$/assignProperty
com.adobe.serializers.utility::TypeUtility$/convertToStrongType
com.adobe.serializers.utility::TypeUtility$/convertListToStrongType
com.adobe.serializers.utility::TypeUtility$/convertResultHandler
mx.rpc.remoting::Operation/http://www.adobe.com/2006/flex/mx/internal::processResult
mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::resultHandler
mx.rpc::Responder/result
mx.rpc::AsyncRequest/acknowledge
NetConnectionMessageResponder/resultHandler
mx.messaging::MessageResponder/result

 

When I compare the results sent back from PHP with Charles it all looks ok. My VO's nested the way they should. But somehow the serializing doesn't work out...

 

Kvitto is the name of my Actionscript VO so I know that it is the VO thats not defined. The Kvitto VO is generated automatically using the Data/Services tab in Flash Builder. To be able to map the Booking with a nested Kvitto I've first created a service call for just a Kvitto that I used to create the VO. Then I did the same for Booking and setting Kvitto as the type for the nested VO.

 

I've also made sure to create a instance of the VO so that the class should be included.

 

Please, please help me with this. Any clues would be much appreciated.

 

//Morgan

'AIR App' failed to install via iTune sync with Flash Builder 4.6

$
0
0

Hi all,

 

After download and setup fresh installation of Flash Builder 4.6, I start to create a simple Mobile project and run it as Fast build configuration.

 

I got a IPA file, so I added it to iTune, plugged my iPad, and sync the app.

 

Surprisingly, after synchronization completed, iPad shows a pop up: 'App Name' failed to install. This also happen with iPod touch too.

 

IMG-20111201-00244.jpg

 

 

I use:

  • Mac OS X Lion 10.7.2
  • latest XCode version.
  • iOS certification and provision file that can be used in prerelease version of 4.6 and 4.5.1

 

I have to tell you that I don't do anything special in my project, just a button, photo, and a list.

 

Could you help me solve this? it might be a bug or may happen to the other.


Are there line numbers in Flash Builder?

$
0
0

It says error on line 34. It would be helpful if I could see line numbers. I looked through the preferences but could not find any.

 

Can someone help me with this thanks.

What kind of licensing is required for using Adobe Flex Builder IDE for building Flex Applications?

$
0
0

I am looking for an IDE to build Flex Applications. Can you suggest what IDE to be used for this and what are the licensing I should procure for the same? What kind of support will be available with that license?

'Finding occurrences' has encountered a problem

$
0
0

Hello,

 

I am getting constant errors with 'finding occurrences" while editing code in Flash Builder 4.7 beta. The errors occur while "mark occurrences" is turned on, but only affect certain variables in some classes. I haven't figured out a pattern to why this happens.

 

In details, the error given is

"An internal error occurred during: "Finding occurrences".

java.lang.NullPointerException"

 

I have no idea what started this problem; it seems like a bug. Anyone else experience this?

Flash Builder 4.5 can't start with Error 3

$
0
0

Flash Builder 4.5 can't start with error 3 occurred "Please uninstall and reinstall the product".

It is fine after those are done, but this problem occurred again and again after some days.

It is very annoying, please help!

Declaring Embed in actionscript breaks swf

$
0
0

I am compiling action-script project using Flex SDK 4.6 and when I declare following in my class file it compiles and generates swf file just fine . But where swf is embedded when I right click it shows "Movie Not Loaded" . I am not even using it yet in actionscript declaration itself breaks swf . What can be causing this ?

    publicclassTestEmbedextendsSprite{

     [Embed(source="swf_images/TestImage.png")]

      privatevar embeddedImage :Class; 


     publicfunctionTestEmbed(){

          var mBall1:Bitmap=new embeddedImage()asBitmap;

          addChild(mBall1);

          } 

     }

Viewing all 70427 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>