hci:tools:axure
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
hci:tools:axure [2014/03/30 22:41] – skipidar | hci:tools:axure [2023/11/01 07:15] (current) – ↷ Page moved from camunda:hci:tools:axure to hci:tools:axure skipidar | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ==== AXURE ==== | ||
+ | |||
+ | === Libs === | ||
+ | ^Lib ^ Link^ | ||
+ | |Lib for Desktop Widgets | http:// | ||
+ | |Many Differend libs |http:// | ||
+ | |Android 4 | http:// | ||
+ | |||
+ | === Summary === | ||
+ | A Prototyping Tool. | ||
+ | |||
+ | * It is good, to ptototype some app with a distinct, simple logic. \\ | ||
+ | |||
+ | * It is not suitable, to prototype apps with **dynamic layout**. Complicated sliding, dragging is a pain to implement.\\ | ||
+ | * It is not suitable, to prototype using **mass data**, like arrays. \\ Said I have 10 Objects which I click on. On the next screen the objects which I have ever clicked on - should be disabled. | ||
+ | |||
+ | |||
+ | == Nested If == | ||
+ | |||
+ | Simulate nested ifs with dynamic Panels. For each case an own Panel: | ||
+ | <sxh java> | ||
+ | \\nested if | ||
+ | if (ticketNotValidated){ | ||
+ | if ticket(networkConnectionPresent){ | ||
+ | // Popup A | ||
+ | | ||
+ | // Popup C | ||
+ | } | ||
+ | }else{ | ||
+ | // Popup D | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | |||